diff options
author | Borislav Petkov <bp@suse.de> | 2018-09-09 13:42:52 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2018-09-10 08:23:37 +0200 |
commit | 34e12b864e617ca7e4f6a3108460aa143bf20056 (patch) | |
tree | 29f9c8292f5c4e5fefe2ca4d10c5896f734c25a9 /kernel | |
parent | 11da3a7f84f19c26da6f86af878298694ede0804 (diff) | |
download | linux-stable-34e12b864e617ca7e4f6a3108460aa143bf20056.tar.gz linux-stable-34e12b864e617ca7e4f6a3108460aa143bf20056.tar.bz2 linux-stable-34e12b864e617ca7e4f6a3108460aa143bf20056.zip |
jump_label: Use static_key_linked() accessor
... instead of open-coding it, in static_key_mod().
No functional changes.
Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Jason Baron <jbaron@akamai.com>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Steven Rostedt (VMware) <rostedt@goodmis.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/20180909114252.17575-1-bp@alien8.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/jump_label.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/jump_label.c b/kernel/jump_label.c index 01ebdf1f9f40..61d1c0178731 100644 --- a/kernel/jump_label.c +++ b/kernel/jump_label.c @@ -455,7 +455,7 @@ struct static_key_mod { static inline struct static_key_mod *static_key_mod(struct static_key *key) { - WARN_ON_ONCE(!(key->type & JUMP_TYPE_LINKED)); + WARN_ON_ONCE(!static_key_linked(key)); return (struct static_key_mod *)(key->type & ~JUMP_TYPE_MASK); } |