blob: b46b541c67c49f78dd5705cda9c8386f05a8a882 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Jason Baronbf5438fc2010-09-17 11:09:00 -04002#ifndef _LINUX_JUMP_LABEL_H
3#define _LINUX_JUMP_LABEL_H
4
Peter Zijlstraefb30402012-01-26 13:32:15 +01005/*
6 * Jump label support
7 *
8 * Copyright (C) 2009-2012 Jason Baron <jbaron@redhat.com>
Peter Zijlstra90eec102015-11-16 11:08:45 +01009 * Copyright (C) 2011-2012 Red Hat, Inc., Peter Zijlstra
Peter Zijlstraefb30402012-01-26 13:32:15 +010010 *
Jason Baron412758c2015-07-30 03:59:48 +000011 * DEPRECATED API:
12 *
13 * The use of 'struct static_key' directly, is now DEPRECATED. In addition
14 * static_key_{true,false}() is also DEPRECATED. IE DO NOT use the following:
15 *
16 * struct static_key false = STATIC_KEY_INIT_FALSE;
17 * struct static_key true = STATIC_KEY_INIT_TRUE;
18 * static_key_true()
19 * static_key_false()
20 *
21 * The updated API replacements are:
22 *
23 * DEFINE_STATIC_KEY_TRUE(key);
24 * DEFINE_STATIC_KEY_FALSE(key);
Catalin Marinasef0da552016-09-05 18:25:47 +010025 * DEFINE_STATIC_KEY_ARRAY_TRUE(keys, count);
26 * DEFINE_STATIC_KEY_ARRAY_FALSE(keys, count);
Jonathan Corbet1975dbc2015-09-14 17:11:05 -060027 * static_branch_likely()
28 * static_branch_unlikely()
Jason Baron412758c2015-07-30 03:59:48 +000029 *
Peter Zijlstraefb30402012-01-26 13:32:15 +010030 * Jump labels provide an interface to generate dynamic branches using
Jason Baron412758c2015-07-30 03:59:48 +000031 * self-modifying code. Assuming toolchain and architecture support, if we
32 * define a "key" that is initially false via "DEFINE_STATIC_KEY_FALSE(key)",
33 * an "if (static_branch_unlikely(&key))" statement is an unconditional branch
34 * (which defaults to false - and the true block is placed out of line).
35 * Similarly, we can define an initially true key via
36 * "DEFINE_STATIC_KEY_TRUE(key)", and use it in the same
37 * "if (static_branch_unlikely(&key))", in which case we will generate an
38 * unconditional branch to the out-of-line true branch. Keys that are
39 * initially true or false can be using in both static_branch_unlikely()
40 * and static_branch_likely() statements.
Peter Zijlstraefb30402012-01-26 13:32:15 +010041 *
Jason Baron412758c2015-07-30 03:59:48 +000042 * At runtime we can change the branch target by setting the key
43 * to true via a call to static_branch_enable(), or false using
44 * static_branch_disable(). If the direction of the branch is switched by
45 * these calls then we run-time modify the branch target via a
46 * no-op -> jump or jump -> no-op conversion. For example, for an
47 * initially false key that is used in an "if (static_branch_unlikely(&key))"
48 * statement, setting the key to true requires us to patch in a jump
49 * to the out-of-line of true branch.
Peter Zijlstraefb30402012-01-26 13:32:15 +010050 *
Jonathan Corbet1975dbc2015-09-14 17:11:05 -060051 * In addition to static_branch_{enable,disable}, we can also reference count
Jason Baron412758c2015-07-30 03:59:48 +000052 * the key or branch direction via static_branch_{inc,dec}. Thus,
53 * static_branch_inc() can be thought of as a 'make more true' and
Jonathan Corbet1975dbc2015-09-14 17:11:05 -060054 * static_branch_dec() as a 'make more false'.
Jason Baron412758c2015-07-30 03:59:48 +000055 *
56 * Since this relies on modifying code, the branch modifying functions
Peter Zijlstraefb30402012-01-26 13:32:15 +010057 * must be considered absolute slow paths (machine wide synchronization etc.).
Ingo Molnarfd3cbdc2014-08-10 08:53:39 +020058 * OTOH, since the affected branches are unconditional, their runtime overhead
Peter Zijlstraefb30402012-01-26 13:32:15 +010059 * will be absolutely minimal, esp. in the default (off) case where the total
60 * effect is a single NOP of appropriate size. The on case will patch in a jump
61 * to the out-of-line block.
62 *
Ingo Molnarfd3cbdc2014-08-10 08:53:39 +020063 * When the control is directly exposed to userspace, it is prudent to delay the
Peter Zijlstraefb30402012-01-26 13:32:15 +010064 * decrement to avoid high frequency code modifications which can (and do)
Ingo Molnarc5905af2012-02-24 08:31:31 +010065 * cause significant performance degradation. Struct static_key_deferred and
66 * static_key_slow_dec_deferred() provide for this.
Peter Zijlstraefb30402012-01-26 13:32:15 +010067 *
Jason Baron412758c2015-07-30 03:59:48 +000068 * Lacking toolchain and or architecture support, static keys fall back to a
69 * simple conditional branch.
Ingo Molnarc5905af2012-02-24 08:31:31 +010070 *
Jason Baron412758c2015-07-30 03:59:48 +000071 * Additional babbling in: Documentation/static-keys.txt
Ingo Molnarfd3cbdc2014-08-10 08:53:39 +020072 */
Peter Zijlstraefb30402012-01-26 13:32:15 +010073
Anton Blanchardc0ccf6f2015-04-09 13:51:31 +100074#if defined(CC_HAVE_ASM_GOTO) && defined(CONFIG_JUMP_LABEL)
75# define HAVE_JUMP_LABEL
76#endif
77
78#ifndef __ASSEMBLY__
79
Jason Barond430d3d2011-03-16 17:29:47 -040080#include <linux/types.h>
81#include <linux/compiler.h>
Hannes Frederic Sowac4b2c0c2013-10-19 21:48:53 +020082
83extern bool static_key_initialized;
84
Borislav Petkov5cdda512017-10-18 17:24:28 +020085#define STATIC_KEY_CHECK_USE(key) WARN(!static_key_initialized, \
86 "%s(): static key '%pS' used before call to jump_label_init()", \
87 __func__, (key))
Jason Barond430d3d2011-03-16 17:29:47 -040088
Anton Blanchardc0ccf6f2015-04-09 13:51:31 +100089#ifdef HAVE_JUMP_LABEL
Jason Barond430d3d2011-03-16 17:29:47 -040090
Ingo Molnarc5905af2012-02-24 08:31:31 +010091struct static_key {
Jason Barond430d3d2011-03-16 17:29:47 -040092 atomic_t enabled;
Jason Baron3821fd32017-02-03 15:42:24 -050093/*
Steven Rostedt (VMware)b17ef2e2017-03-02 17:28:45 -050094 * Note:
95 * To make anonymous unions work with old compilers, the static
96 * initialization of them requires brackets. This creates a dependency
97 * on the order of the struct with the initializers. If any fields
98 * are added, STATIC_KEY_INIT_TRUE and STATIC_KEY_INIT_FALSE may need
99 * to be modified.
100 *
Jason Baron3821fd32017-02-03 15:42:24 -0500101 * bit 0 => 1 if key is initially true
102 * 0 if initially false
103 * bit 1 => 1 if points to struct static_key_mod
104 * 0 if points to struct jump_entry
105 */
106 union {
107 unsigned long type;
108 struct jump_entry *entries;
109 struct static_key_mod *next;
110 };
Jason Barond430d3d2011-03-16 17:29:47 -0400111};
112
Mel Gormanea5e9532014-06-04 16:10:07 -0700113#else
114struct static_key {
115 atomic_t enabled;
116};
Anton Blanchardc0ccf6f2015-04-09 13:51:31 +1000117#endif /* HAVE_JUMP_LABEL */
118#endif /* __ASSEMBLY__ */
119
120#ifdef HAVE_JUMP_LABEL
121#include <asm/jump_label.h>
122#endif
123
124#ifndef __ASSEMBLY__
Jason Baronbf5438fc2010-09-17 11:09:00 -0400125
126enum jump_label_type {
Peter Zijlstra76b235c2015-07-24 14:45:44 +0200127 JUMP_LABEL_NOP = 0,
128 JUMP_LABEL_JMP,
Jason Baronbf5438fc2010-09-17 11:09:00 -0400129};
130
131struct module;
132
Paolo Bonzini4c5ea0a2016-06-21 18:52:17 +0200133#ifdef HAVE_JUMP_LABEL
134
Jason Baron3821fd32017-02-03 15:42:24 -0500135#define JUMP_TYPE_FALSE 0UL
136#define JUMP_TYPE_TRUE 1UL
137#define JUMP_TYPE_LINKED 2UL
138#define JUMP_TYPE_MASK 3UL
Ingo Molnarc5905af2012-02-24 08:31:31 +0100139
140static __always_inline bool static_key_false(struct static_key *key)
141{
Peter Zijlstra11276d52015-07-24 15:09:55 +0200142 return arch_static_branch(key, false);
Ingo Molnarc5905af2012-02-24 08:31:31 +0100143}
144
145static __always_inline bool static_key_true(struct static_key *key)
146{
Peter Zijlstra11276d52015-07-24 15:09:55 +0200147 return !arch_static_branch(key, true);
Ingo Molnarc5905af2012-02-24 08:31:31 +0100148}
149
Jason Baronbf5438fc2010-09-17 11:09:00 -0400150extern struct jump_entry __start___jump_table[];
151extern struct jump_entry __stop___jump_table[];
152
Jeremy Fitzhardinge97ce2c82011-10-12 16:17:54 -0700153extern void jump_label_init(void);
Josh Poimboeuf578ae442018-03-19 13:18:57 -0500154extern void jump_label_invalidate_initmem(void);
Jason Baron91bad2f2010-10-01 17:23:48 -0400155extern void jump_label_lock(void);
156extern void jump_label_unlock(void);
Jason Baronbf5438fc2010-09-17 11:09:00 -0400157extern void arch_jump_label_transform(struct jump_entry *entry,
Jeremy Fitzhardinge37348802011-09-29 11:10:05 -0700158 enum jump_label_type type);
Jeremy Fitzhardinge20284aa2011-10-03 11:01:46 -0700159extern void arch_jump_label_transform_static(struct jump_entry *entry,
160 enum jump_label_type type);
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400161extern int jump_label_text_reserved(void *start, void *end);
Ingo Molnarc5905af2012-02-24 08:31:31 +0100162extern void static_key_slow_inc(struct static_key *key);
163extern void static_key_slow_dec(struct static_key *key);
Peter Zijlstrace48c1462018-01-22 22:53:28 +0100164extern void static_key_slow_inc_cpuslocked(struct static_key *key);
165extern void static_key_slow_dec_cpuslocked(struct static_key *key);
Jason Barond430d3d2011-03-16 17:29:47 -0400166extern void jump_label_apply_nops(struct module *mod);
Jason Baron1f69bf92016-08-03 13:46:36 -0700167extern int static_key_count(struct static_key *key);
168extern void static_key_enable(struct static_key *key);
169extern void static_key_disable(struct static_key *key);
Marc Zyngier5a405272017-08-01 09:02:56 +0100170extern void static_key_enable_cpuslocked(struct static_key *key);
171extern void static_key_disable_cpuslocked(struct static_key *key);
Ingo Molnarc5905af2012-02-24 08:31:31 +0100172
Jason Baron1f69bf92016-08-03 13:46:36 -0700173/*
174 * We should be using ATOMIC_INIT() for initializing .enabled, but
175 * the inclusion of atomic.h is problematic for inclusion of jump_label.h
176 * in 'low-level' headers. Thus, we are initializing .enabled with a
177 * raw value, but have added a BUILD_BUG_ON() to catch any issues in
178 * jump_label_init() see: kernel/jump_label.c.
179 */
Peter Zijlstra11276d52015-07-24 15:09:55 +0200180#define STATIC_KEY_INIT_TRUE \
Jason Baron1f69bf92016-08-03 13:46:36 -0700181 { .enabled = { 1 }, \
Boris Ostrovskycd8d8602017-02-28 11:32:22 -0500182 { .entries = (void *)JUMP_TYPE_TRUE } }
Peter Zijlstra11276d52015-07-24 15:09:55 +0200183#define STATIC_KEY_INIT_FALSE \
Jason Baron1f69bf92016-08-03 13:46:36 -0700184 { .enabled = { 0 }, \
Boris Ostrovskycd8d8602017-02-28 11:32:22 -0500185 { .entries = (void *)JUMP_TYPE_FALSE } }
Jason Baronbf5438fc2010-09-17 11:09:00 -0400186
Jeremy Fitzhardinge97ce2c82011-10-12 16:17:54 -0700187#else /* !HAVE_JUMP_LABEL */
Jason Baronbf5438fc2010-09-17 11:09:00 -0400188
Jason Baron1f69bf92016-08-03 13:46:36 -0700189#include <linux/atomic.h>
190#include <linux/bug.h>
191
Paolo Bonzini4c5ea0a2016-06-21 18:52:17 +0200192static inline int static_key_count(struct static_key *key)
193{
194 return atomic_read(&key->enabled);
195}
196
Jeremy Fitzhardinge97ce2c82011-10-12 16:17:54 -0700197static __always_inline void jump_label_init(void)
198{
Hannes Frederic Sowac4b2c0c2013-10-19 21:48:53 +0200199 static_key_initialized = true;
Jeremy Fitzhardinge97ce2c82011-10-12 16:17:54 -0700200}
201
Josh Poimboeuf578ae442018-03-19 13:18:57 -0500202static inline void jump_label_invalidate_initmem(void) {}
Josh Poimboeuf33352242018-02-20 11:37:51 -0600203
Ingo Molnarc5905af2012-02-24 08:31:31 +0100204static __always_inline bool static_key_false(struct static_key *key)
Jason Baronbf5438fc2010-09-17 11:09:00 -0400205{
Mel Gormanea5e9532014-06-04 16:10:07 -0700206 if (unlikely(static_key_count(key) > 0))
Jason Barond430d3d2011-03-16 17:29:47 -0400207 return true;
208 return false;
209}
210
Ingo Molnarc5905af2012-02-24 08:31:31 +0100211static __always_inline bool static_key_true(struct static_key *key)
212{
Mel Gormanea5e9532014-06-04 16:10:07 -0700213 if (likely(static_key_count(key) > 0))
Ingo Molnarc5905af2012-02-24 08:31:31 +0100214 return true;
215 return false;
216}
217
Ingo Molnarc5905af2012-02-24 08:31:31 +0100218static inline void static_key_slow_inc(struct static_key *key)
Jason Barond430d3d2011-03-16 17:29:47 -0400219{
Borislav Petkov5cdda512017-10-18 17:24:28 +0200220 STATIC_KEY_CHECK_USE(key);
Jason Barond430d3d2011-03-16 17:29:47 -0400221 atomic_inc(&key->enabled);
222}
223
Ingo Molnarc5905af2012-02-24 08:31:31 +0100224static inline void static_key_slow_dec(struct static_key *key)
Jason Barond430d3d2011-03-16 17:29:47 -0400225{
Borislav Petkov5cdda512017-10-18 17:24:28 +0200226 STATIC_KEY_CHECK_USE(key);
Jason Barond430d3d2011-03-16 17:29:47 -0400227 atomic_dec(&key->enabled);
Jason Baronbf5438fc2010-09-17 11:09:00 -0400228}
229
Peter Zijlstrace48c1462018-01-22 22:53:28 +0100230#define static_key_slow_inc_cpuslocked(key) static_key_slow_inc(key)
231#define static_key_slow_dec_cpuslocked(key) static_key_slow_dec(key)
232
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400233static inline int jump_label_text_reserved(void *start, void *end)
234{
235 return 0;
236}
237
Jason Baron91bad2f2010-10-01 17:23:48 -0400238static inline void jump_label_lock(void) {}
239static inline void jump_label_unlock(void) {}
240
Jason Barond430d3d2011-03-16 17:29:47 -0400241static inline int jump_label_apply_nops(struct module *mod)
242{
243 return 0;
244}
Gleb Natapovb2029522011-11-27 17:59:09 +0200245
Peter Zijlstrae33886b2015-07-24 15:03:40 +0200246static inline void static_key_enable(struct static_key *key)
247{
Borislav Petkov5cdda512017-10-18 17:24:28 +0200248 STATIC_KEY_CHECK_USE(key);
Peter Zijlstrae33886b2015-07-24 15:03:40 +0200249
Paolo Bonzini1dbb6702017-08-01 17:24:04 +0200250 if (atomic_read(&key->enabled) != 0) {
251 WARN_ON_ONCE(atomic_read(&key->enabled) != 1);
252 return;
253 }
254 atomic_set(&key->enabled, 1);
Peter Zijlstrae33886b2015-07-24 15:03:40 +0200255}
256
257static inline void static_key_disable(struct static_key *key)
258{
Borislav Petkov5cdda512017-10-18 17:24:28 +0200259 STATIC_KEY_CHECK_USE(key);
Peter Zijlstrae33886b2015-07-24 15:03:40 +0200260
Paolo Bonzini1dbb6702017-08-01 17:24:04 +0200261 if (atomic_read(&key->enabled) != 1) {
262 WARN_ON_ONCE(atomic_read(&key->enabled) != 0);
263 return;
264 }
265 atomic_set(&key->enabled, 0);
Peter Zijlstrae33886b2015-07-24 15:03:40 +0200266}
267
Marc Zyngier5a405272017-08-01 09:02:56 +0100268#define static_key_enable_cpuslocked(k) static_key_enable((k))
269#define static_key_disable_cpuslocked(k) static_key_disable((k))
270
Jason Baron1f69bf92016-08-03 13:46:36 -0700271#define STATIC_KEY_INIT_TRUE { .enabled = ATOMIC_INIT(1) }
272#define STATIC_KEY_INIT_FALSE { .enabled = ATOMIC_INIT(0) }
273
274#endif /* HAVE_JUMP_LABEL */
275
276#define STATIC_KEY_INIT STATIC_KEY_INIT_FALSE
277#define jump_label_enabled static_key_enabled
278
Peter Zijlstra11276d52015-07-24 15:09:55 +0200279/* -------------------------------------------------------------------------- */
280
281/*
282 * Two type wrappers around static_key, such that we can use compile time
283 * type differentiation to emit the right code.
284 *
285 * All the below code is macros in order to play type games.
286 */
287
288struct static_key_true {
289 struct static_key key;
290};
291
292struct static_key_false {
293 struct static_key key;
294};
295
296#define STATIC_KEY_TRUE_INIT (struct static_key_true) { .key = STATIC_KEY_INIT_TRUE, }
297#define STATIC_KEY_FALSE_INIT (struct static_key_false){ .key = STATIC_KEY_INIT_FALSE, }
298
299#define DEFINE_STATIC_KEY_TRUE(name) \
300 struct static_key_true name = STATIC_KEY_TRUE_INIT
301
Tony Luckb8fb0372016-09-01 11:39:33 -0700302#define DECLARE_STATIC_KEY_TRUE(name) \
303 extern struct static_key_true name
304
Peter Zijlstra11276d52015-07-24 15:09:55 +0200305#define DEFINE_STATIC_KEY_FALSE(name) \
306 struct static_key_false name = STATIC_KEY_FALSE_INIT
307
Tony Luckb8fb0372016-09-01 11:39:33 -0700308#define DECLARE_STATIC_KEY_FALSE(name) \
309 extern struct static_key_false name
310
Catalin Marinasef0da552016-09-05 18:25:47 +0100311#define DEFINE_STATIC_KEY_ARRAY_TRUE(name, count) \
312 struct static_key_true name[count] = { \
313 [0 ... (count) - 1] = STATIC_KEY_TRUE_INIT, \
314 }
315
316#define DEFINE_STATIC_KEY_ARRAY_FALSE(name, count) \
317 struct static_key_false name[count] = { \
318 [0 ... (count) - 1] = STATIC_KEY_FALSE_INIT, \
319 }
320
Tejun Heofa128fd2015-09-18 11:56:28 -0400321extern bool ____wrong_branch_error(void);
322
323#define static_key_enabled(x) \
324({ \
325 if (!__builtin_types_compatible_p(typeof(*x), struct static_key) && \
326 !__builtin_types_compatible_p(typeof(*x), struct static_key_true) &&\
327 !__builtin_types_compatible_p(typeof(*x), struct static_key_false)) \
328 ____wrong_branch_error(); \
329 static_key_count((struct static_key *)x) > 0; \
330})
331
Peter Zijlstra11276d52015-07-24 15:09:55 +0200332#ifdef HAVE_JUMP_LABEL
333
334/*
335 * Combine the right initial value (type) with the right branch order
336 * to generate the desired result.
337 *
338 *
339 * type\branch| likely (1) | unlikely (0)
340 * -----------+-----------------------+------------------
341 * | |
342 * true (1) | ... | ...
343 * | NOP | JMP L
344 * | <br-stmts> | 1: ...
345 * | L: ... |
346 * | |
347 * | | L: <br-stmts>
348 * | | jmp 1b
349 * | |
350 * -----------+-----------------------+------------------
351 * | |
352 * false (0) | ... | ...
353 * | JMP L | NOP
354 * | <br-stmts> | 1: ...
355 * | L: ... |
356 * | |
357 * | | L: <br-stmts>
358 * | | jmp 1b
359 * | |
360 * -----------+-----------------------+------------------
361 *
362 * The initial value is encoded in the LSB of static_key::entries,
363 * type: 0 = false, 1 = true.
364 *
365 * The branch type is encoded in the LSB of jump_entry::key,
366 * branch: 0 = unlikely, 1 = likely.
367 *
368 * This gives the following logic table:
369 *
370 * enabled type branch instuction
371 * -----------------------------+-----------
372 * 0 0 0 | NOP
373 * 0 0 1 | JMP
374 * 0 1 0 | NOP
375 * 0 1 1 | JMP
376 *
377 * 1 0 0 | JMP
378 * 1 0 1 | NOP
379 * 1 1 0 | JMP
380 * 1 1 1 | NOP
381 *
382 * Which gives the following functions:
383 *
384 * dynamic: instruction = enabled ^ branch
385 * static: instruction = type ^ branch
386 *
387 * See jump_label_type() / jump_label_init_type().
388 */
389
Peter Zijlstra11276d52015-07-24 15:09:55 +0200390#define static_branch_likely(x) \
391({ \
392 bool branch; \
393 if (__builtin_types_compatible_p(typeof(*x), struct static_key_true)) \
394 branch = !arch_static_branch(&(x)->key, true); \
395 else if (__builtin_types_compatible_p(typeof(*x), struct static_key_false)) \
396 branch = !arch_static_branch_jump(&(x)->key, true); \
397 else \
398 branch = ____wrong_branch_error(); \
Peter Zijlstra81dcf892018-01-18 14:38:11 +0100399 likely(branch); \
Peter Zijlstra11276d52015-07-24 15:09:55 +0200400})
401
402#define static_branch_unlikely(x) \
403({ \
404 bool branch; \
405 if (__builtin_types_compatible_p(typeof(*x), struct static_key_true)) \
406 branch = arch_static_branch_jump(&(x)->key, false); \
407 else if (__builtin_types_compatible_p(typeof(*x), struct static_key_false)) \
408 branch = arch_static_branch(&(x)->key, false); \
409 else \
410 branch = ____wrong_branch_error(); \
Peter Zijlstra81dcf892018-01-18 14:38:11 +0100411 unlikely(branch); \
Peter Zijlstra11276d52015-07-24 15:09:55 +0200412})
413
414#else /* !HAVE_JUMP_LABEL */
415
416#define static_branch_likely(x) likely(static_key_enabled(&(x)->key))
417#define static_branch_unlikely(x) unlikely(static_key_enabled(&(x)->key))
418
419#endif /* HAVE_JUMP_LABEL */
420
421/*
422 * Advanced usage; refcount, branch is enabled when: count != 0
423 */
424
425#define static_branch_inc(x) static_key_slow_inc(&(x)->key)
426#define static_branch_dec(x) static_key_slow_dec(&(x)->key)
Peter Zijlstrace48c1462018-01-22 22:53:28 +0100427#define static_branch_inc_cpuslocked(x) static_key_slow_inc_cpuslocked(&(x)->key)
428#define static_branch_dec_cpuslocked(x) static_key_slow_dec_cpuslocked(&(x)->key)
Peter Zijlstra11276d52015-07-24 15:09:55 +0200429
430/*
431 * Normal usage; boolean enable/disable.
432 */
433
Marc Zyngier5a405272017-08-01 09:02:56 +0100434#define static_branch_enable(x) static_key_enable(&(x)->key)
435#define static_branch_disable(x) static_key_disable(&(x)->key)
436#define static_branch_enable_cpuslocked(x) static_key_enable_cpuslocked(&(x)->key)
437#define static_branch_disable_cpuslocked(x) static_key_disable_cpuslocked(&(x)->key)
Peter Zijlstra11276d52015-07-24 15:09:55 +0200438
Anton Blanchardc0ccf6f2015-04-09 13:51:31 +1000439#endif /* __ASSEMBLY__ */
Luis R. Rodriguez85b36c92017-01-18 09:38:04 -0800440
441#endif /* _LINUX_JUMP_LABEL_H */