linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] jump_label_inc may return before the code is patched
@ 2011-10-18 17:55 Gleb Natapov
  2011-10-18 20:54 ` Jason Baron
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Gleb Natapov @ 2011-10-18 17:55 UTC (permalink / raw)
  To: linux-kernel; +Cc: Jason Baron, Peter Zijlstra, Steven Rostedt

If cpu A calls jump_label_inc() just after atomic_add_return() is
called by cpu B, atomic_inc_not_zero() will return value greater then
zero and jump_label_inc() will return to a caller before jump_label_update()
finishes its job on cpu B.

Signed-off-by: Gleb Natapov <gleb@redhat.com>
diff --git a/kernel/jump_label.c b/kernel/jump_label.c
index a8ce450..e6f1f24 100644
--- a/kernel/jump_label.c
+++ b/kernel/jump_label.c
@@ -66,8 +66,9 @@ void jump_label_inc(struct jump_label_key *key)
 		return;
 
 	jump_label_lock();
-	if (atomic_add_return(1, &key->enabled) == 1)
+	if (atomic_read(&key->enabled) == 0)
 		jump_label_update(key, JUMP_LABEL_ENABLE);
+	atomic_inc(&key->enabled);
 	jump_label_unlock();
 }
 
--
			Gleb.

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

end of thread, other threads:[~2011-12-06  6:27 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-18 17:55 [PATCH] jump_label_inc may return before the code is patched Gleb Natapov
2011-10-18 20:54 ` Jason Baron
2011-10-19  7:03   ` Gleb Natapov
2011-10-18 21:06 ` Steven Rostedt
2011-11-02 15:21   ` Gleb Natapov
2011-11-02 15:42     ` Steven Rostedt
2011-11-18 23:12 ` [tip:perf/core] jump_label: " tip-bot for Gleb Natapov
2011-12-06  6:27 ` tip-bot for Gleb Natapov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).