Browse Source

[PATCH] add cpu_relax to hrtimer_cancel

Add a cpu_relax() to the hand-coded spinwait in hrtimer_cancel().

Signed-off-by: Joe Korty <joe.korty@ccur.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Joe Korty 19 years ago
parent
commit
5ef37b1964
1 changed files with 1 additions and 0 deletions
  1. 1 0
      kernel/hrtimer.c

+ 1 - 0
kernel/hrtimer.c

@@ -501,6 +501,7 @@ int hrtimer_cancel(struct hrtimer *timer)
 
 
 		if (ret >= 0)
 		if (ret >= 0)
 			return ret;
 			return ret;
+		cpu_relax();
 	}
 	}
 }
 }