mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 1/5] hrtimer_nanosleep: use -EINTR, not -ERESTARTNOHAND
@ 2008-02-01 13:37 Oleg Nesterov
  2008-02-01 13:50 ` Thomas Gleixner
  0 siblings, 1 reply; 3+ messages in thread
From: Oleg Nesterov @ 2008-02-01 13:37 UTC (permalink / raw)
  To: Andrew Morton, Thomas Gleixner
  Cc: Alexey Dobriyan, Ingo Molnar, Pavel Emelyanov, Peter Zijlstra,
	linux-kernel

hrtimer_nanosleep:

	/* Absolute timers do not update the rmtp value and restart: */
	return -ERESTARTNOHAND;

This is not right, -ERESTARTNOHAND means we will do restart if there is no
in fact pending signal, and worse, this restart will use the same unchanged
"__user *rmtp" parameter.

Use -EINTR instead.

Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>

--- MM/kernel/hrtimer.c~HRT_RMTP~	2008-01-27 17:07:39.000000000 +0300
+++ MM/kernel/hrtimer.c~HRT_RMTP	2008-02-01 13:43:52.000000000 +0300
@@ -1359,7 +1359,7 @@ long hrtimer_nanosleep(struct timespec *
 
 	/* Absolute timers do not update the rmtp value and restart: */
 	if (mode == HRTIMER_MODE_ABS)
-		return -ERESTARTNOHAND;
+		return -EINTR;
 
 	if (rmtp) {
 		rem = ktime_sub(t.timer.expires, t.timer.base->get_time());


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-02-01 14:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-01 13:37 [PATCH 1/5] hrtimer_nanosleep: use -EINTR, not -ERESTARTNOHAND Oleg Nesterov
2008-02-01 13:50 ` Thomas Gleixner
2008-02-01 14:20   ` Oleg Nesterov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®