mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-06 14:31:46 +00:00
nanosleep: Use get_timespec64() and put_timespec64()
Usage of these apis and their compat versions makes the syscalls: clock_nanosleep and nanosleep and their compat implementations simpler. This is a preparatory patch to isolate data conversions to struct timespec64 at userspace boundaries. This helps contain the changes needed to transition to new y2038 safe types. Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
5c4994102f
commit
c0edd7c9ac
5 changed files with 26 additions and 38 deletions
|
@ -712,14 +712,14 @@ static int alarmtimer_do_nsleep(struct alarm *alarm, ktime_t absexp,
|
|||
alarmtimer_freezerset(absexp, type);
|
||||
restart = ¤t->restart_block;
|
||||
if (restart->nanosleep.type != TT_NONE) {
|
||||
struct timespec rmt;
|
||||
struct timespec64 rmt;
|
||||
ktime_t rem;
|
||||
|
||||
rem = ktime_sub(absexp, alarm_bases[type].gettime());
|
||||
|
||||
if (rem <= 0)
|
||||
return 0;
|
||||
rmt = ktime_to_timespec(rem);
|
||||
rmt = ktime_to_timespec64(rem);
|
||||
|
||||
return nanosleep_copyout(restart, &rmt);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue