All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -tip] x86: ftrace - simplify wait_for_nmi
@ 2009-01-26 15:28 Cyrill Gorcunov
  2009-01-26 15:41 ` Steven Rostedt
  0 siblings, 1 reply; 4+ messages in thread
From: Cyrill Gorcunov @ 2009-01-26 15:28 UTC (permalink / raw)
  To: Steven Rostedt, Ingo Molnar
  Cc: LKML, H. Peter Anvin, Thomas Gleixner, Frederic Weisbecker

Get rid of 'waited' stack variable.

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
---
 arch/x86/kernel/ftrace.c |   11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

Index: linux-2.6.git/arch/x86/kernel/ftrace.c
===================================================================
--- linux-2.6.git.orig/arch/x86/kernel/ftrace.c
+++ linux-2.6.git/arch/x86/kernel/ftrace.c
@@ -133,15 +133,14 @@ void ftrace_nmi_exit(void)
 
 static void wait_for_nmi(void)
 {
-	int waited = 0;
+	if (!atomic_read(&in_nmi))
+		return;
 
-	while (atomic_read(&in_nmi)) {
-		waited = 1;
+	do {
 		cpu_relax();
-	}
+	} while(atomic_read(&in_nmi));
 
-	if (waited)
-		nmi_wait_count++;
+	nmi_wait_count++;
 }
 
 static int

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

end of thread, other threads:[~2009-01-27 13:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-26 15:28 [PATCH -tip] x86: ftrace - simplify wait_for_nmi Cyrill Gorcunov
2009-01-26 15:41 ` Steven Rostedt
2009-01-27  5:38   ` Steven Rostedt
2009-01-27 13:31     ` Ingo Molnar

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.