diff options
| author | Peter Zijlstra <[email protected]> | 2019-11-07 11:07:58 +0100 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2019-11-13 11:09:49 +0100 |
| commit | cf25e24db61cc9df42c47485a2ec2bff4e9a3692 (patch) | |
| tree | d6573c7b9ca6f74e6cf7be1ce30c03b8db6767ea /kernel | |
| parent | 3bbc53f4ae1686b501d92d4a5fd400f4958c8a98 (diff) | |
time: Rename tsk->real_start_time to ->start_boottime
Since it stores CLOCK_BOOTTIME, not, as the name suggests,
CLOCK_REALTIME, let's rename ->real_start_time to ->start_bootime.
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: [email protected]
Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/fork.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/fork.c b/kernel/fork.c index bcdf53125210..1392ee8f4848 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -2130,7 +2130,7 @@ static __latent_entropy struct task_struct *copy_process( */ p->start_time = ktime_get_ns(); - p->real_start_time = ktime_get_boottime_ns(); + p->start_boottime = ktime_get_boottime_ns(); /* * Make it visible to the rest of the system, but dont wake it up yet. |