diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2006-01-09 23:52:36 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-10 11:01:38 -0500 |
commit | 6ba1b91213e81aa92b5cf7539f7d2a94ff54947c (patch) | |
tree | 0d461bf7c7f444a80d09f09501e9fb378a78220f /kernel/timer.c | |
parent | 10c94ec16dd187f8d8dfdbb088e98330c05bf03c (diff) |
[PATCH] hrtimer: switch sys_nanosleep to hrtimer
convert sys_nanosleep() to use hrtimer_nanosleep()
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/timer.c')
-rw-r--r-- | kernel/timer.c | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/kernel/timer.c b/kernel/timer.c index 80bf2acf6b08..4f1cb0ab5251 100644 --- a/kernel/timer.c +++ b/kernel/timer.c | |||
@@ -1120,62 +1120,6 @@ asmlinkage long sys_gettid(void) | |||
1120 | return current->pid; | 1120 | return current->pid; |
1121 | } | 1121 | } |
1122 | 1122 | ||
1123 | static long __sched nanosleep_restart(struct restart_block *restart) | ||
1124 | { | ||
1125 | unsigned long expire = restart->arg0, now = jiffies; | ||
1126 | struct timespec __user *rmtp = (struct timespec __user *) restart->arg1; | ||
1127 | long ret; | ||
1128 | |||
1129 | /* Did it expire while we handled signals? */ | ||
1130 | if (!time_after(expire, now)) | ||
1131 | return 0; | ||
1132 | |||
1133 | expire = schedule_timeout_interruptible(expire - now); | ||
1134 | |||
1135 | ret = 0; | ||
1136 | if (expire) { | ||
1137 | struct timespec t; | ||
1138 | jiffies_to_timespec(expire, &t); | ||
1139 | |||
1140 | ret = -ERESTART_RESTARTBLOCK; | ||
1141 | if (rmtp && copy_to_user(rmtp, &t, sizeof(t))) | ||
1142 | ret = -EFAULT; | ||
1143 | /* The 'restart' block is already filled in */ | ||
1144 | } | ||
1145 | return ret; | ||
1146 | } | ||
1147 | |||
1148 | asmlinkage long sys_nanosleep(struct timespec __user *rqtp, struct timespec __user *rmtp) | ||
1149 | { | ||
1150 | struct timespec t; | ||
1151 | unsigned long expire; | ||
1152 | long ret; | ||
1153 | |||
1154 | if (copy_from_user(&t, rqtp, sizeof(t))) | ||
1155 | return -EFAULT; | ||
1156 | |||
1157 | if ((t.tv_nsec >= 1000000000L) || (t.tv_nsec < 0) || (t.tv_sec < 0)) | ||
1158 | return -EINVAL; | ||
1159 | |||
1160 | expire = timespec_to_jiffies(&t) + (t.tv_sec || t.tv_nsec); | ||
1161 | expire = schedule_timeout_interruptible(expire); | ||
1162 | |||
1163 | ret = 0; | ||
1164 | if (expire) { | ||
1165 | struct restart_block *restart; | ||
1166 | jiffies_to_timespec(expire, &t); | ||
1167 | if (rmtp && copy_to_user(rmtp, &t, sizeof(t))) | ||
1168 | return -EFAULT; | ||
1169 | |||
1170 | restart = ¤t_thread_info()->restart_block; | ||
1171 | restart->fn = nanosleep_restart; | ||
1172 | restart->arg0 = jiffies + expire; | ||
1173 | restart->arg1 = (unsigned long) rmtp; | ||
1174 | ret = -ERESTART_RESTARTBLOCK; | ||
1175 | } | ||
1176 | return ret; | ||
1177 | } | ||
1178 | |||
1179 | /* | 1123 | /* |
1180 | * sys_sysinfo - fill in sysinfo struct | 1124 | * sys_sysinfo - fill in sysinfo struct |
1181 | */ | 1125 | */ |