blob: 85a2a0086c6773b027899031e190d93cb45f0e9a [file] [log] [blame]
Jason Baronbf5438fc2010-09-17 11:09:00 -04001/*
2 * jump label support
3 *
4 * Copyright (C) 2009 Jason Baron <jbaron@redhat.com>
Jason Barond430d3d2011-03-16 17:29:47 -04005 * Copyright (C) 2011 Peter Zijlstra <pzijlstr@redhat.com>
Jason Baronbf5438fc2010-09-17 11:09:00 -04006 *
7 */
Jason Baronbf5438fc2010-09-17 11:09:00 -04008#include <linux/memory.h>
9#include <linux/uaccess.h>
10#include <linux/module.h>
11#include <linux/list.h>
Jason Baronbf5438fc2010-09-17 11:09:00 -040012#include <linux/slab.h>
13#include <linux/sort.h>
14#include <linux/err.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +010015#include <linux/static_key.h>
Andrew Jones851cf6e2013-08-09 19:51:57 +053016#include <linux/jump_label_ratelimit.h>
Jason Baronbf5438fc2010-09-17 11:09:00 -040017
18#ifdef HAVE_JUMP_LABEL
19
Jason Baronbf5438fc2010-09-17 11:09:00 -040020/* mutex to protect coming/going of the the jump_label table */
21static DEFINE_MUTEX(jump_label_mutex);
22
Jason Baron91bad2f2010-10-01 17:23:48 -040023void jump_label_lock(void)
24{
25 mutex_lock(&jump_label_mutex);
26}
27
28void jump_label_unlock(void)
29{
30 mutex_unlock(&jump_label_mutex);
31}
32
Jason Baronbf5438fc2010-09-17 11:09:00 -040033static int jump_label_cmp(const void *a, const void *b)
34{
35 const struct jump_entry *jea = a;
36 const struct jump_entry *jeb = b;
37
38 if (jea->key < jeb->key)
39 return -1;
40
41 if (jea->key > jeb->key)
42 return 1;
43
44 return 0;
45}
46
47static void
Jason Barond430d3d2011-03-16 17:29:47 -040048jump_label_sort_entries(struct jump_entry *start, struct jump_entry *stop)
Jason Baronbf5438fc2010-09-17 11:09:00 -040049{
50 unsigned long size;
51
52 size = (((unsigned long)stop - (unsigned long)start)
53 / sizeof(struct jump_entry));
54 sort(start, size, sizeof(struct jump_entry), jump_label_cmp, NULL);
55}
56
Ingo Molnarc5905af2012-02-24 08:31:31 +010057static void jump_label_update(struct static_key *key, int enable);
Jason Barond430d3d2011-03-16 17:29:47 -040058
Peter Zijlstraa1efb012015-07-24 14:55:40 +020059static inline bool static_key_type(struct static_key *key)
60{
61 return (unsigned long)key->entries & JUMP_TYPE_MASK;
62}
63
Ingo Molnarc5905af2012-02-24 08:31:31 +010064void static_key_slow_inc(struct static_key *key)
Jason Baronbf5438fc2010-09-17 11:09:00 -040065{
Hannes Frederic Sowac4b2c0c2013-10-19 21:48:53 +020066 STATIC_KEY_CHECK_USE();
Jason Barond430d3d2011-03-16 17:29:47 -040067 if (atomic_inc_not_zero(&key->enabled))
68 return;
Jason Baronbf5438fc2010-09-17 11:09:00 -040069
Jason Baron91bad2f2010-10-01 17:23:48 -040070 jump_label_lock();
Ingo Molnarc5905af2012-02-24 08:31:31 +010071 if (atomic_read(&key->enabled) == 0) {
Peter Zijlstraa1efb012015-07-24 14:55:40 +020072 if (!static_key_type(key))
Peter Zijlstra76b235c2015-07-24 14:45:44 +020073 jump_label_update(key, JUMP_LABEL_JMP);
Ingo Molnarc5905af2012-02-24 08:31:31 +010074 else
Peter Zijlstra76b235c2015-07-24 14:45:44 +020075 jump_label_update(key, JUMP_LABEL_NOP);
Ingo Molnarc5905af2012-02-24 08:31:31 +010076 }
Gleb Natapovbbbf7af2011-10-18 19:55:51 +020077 atomic_inc(&key->enabled);
Jason Barond430d3d2011-03-16 17:29:47 -040078 jump_label_unlock();
79}
Ingo Molnarc5905af2012-02-24 08:31:31 +010080EXPORT_SYMBOL_GPL(static_key_slow_inc);
Jason Barond430d3d2011-03-16 17:29:47 -040081
Ingo Molnarc5905af2012-02-24 08:31:31 +010082static void __static_key_slow_dec(struct static_key *key,
Gleb Natapovb2029522011-11-27 17:59:09 +020083 unsigned long rate_limit, struct delayed_work *work)
Jason Barond430d3d2011-03-16 17:29:47 -040084{
Jason Baronfadf0462012-02-21 15:02:53 -050085 if (!atomic_dec_and_mutex_lock(&key->enabled, &jump_label_mutex)) {
86 WARN(atomic_read(&key->enabled) < 0,
87 "jump label: negative count!\n");
Jason Barond430d3d2011-03-16 17:29:47 -040088 return;
Jason Baronfadf0462012-02-21 15:02:53 -050089 }
Jason Barond430d3d2011-03-16 17:29:47 -040090
Gleb Natapovb2029522011-11-27 17:59:09 +020091 if (rate_limit) {
92 atomic_inc(&key->enabled);
93 schedule_delayed_work(work, rate_limit);
Ingo Molnarc5905af2012-02-24 08:31:31 +010094 } else {
Peter Zijlstraa1efb012015-07-24 14:55:40 +020095 if (!static_key_type(key))
Peter Zijlstra76b235c2015-07-24 14:45:44 +020096 jump_label_update(key, JUMP_LABEL_NOP);
Ingo Molnarc5905af2012-02-24 08:31:31 +010097 else
Peter Zijlstra76b235c2015-07-24 14:45:44 +020098 jump_label_update(key, JUMP_LABEL_JMP);
Ingo Molnarc5905af2012-02-24 08:31:31 +010099 }
Jason Baron91bad2f2010-10-01 17:23:48 -0400100 jump_label_unlock();
Jason Baronbf5438fc2010-09-17 11:09:00 -0400101}
102
Gleb Natapovb2029522011-11-27 17:59:09 +0200103static void jump_label_update_timeout(struct work_struct *work)
104{
Ingo Molnarc5905af2012-02-24 08:31:31 +0100105 struct static_key_deferred *key =
106 container_of(work, struct static_key_deferred, work.work);
107 __static_key_slow_dec(&key->key, 0, NULL);
Gleb Natapovb2029522011-11-27 17:59:09 +0200108}
109
Ingo Molnarc5905af2012-02-24 08:31:31 +0100110void static_key_slow_dec(struct static_key *key)
Gleb Natapovb2029522011-11-27 17:59:09 +0200111{
Hannes Frederic Sowac4b2c0c2013-10-19 21:48:53 +0200112 STATIC_KEY_CHECK_USE();
Ingo Molnarc5905af2012-02-24 08:31:31 +0100113 __static_key_slow_dec(key, 0, NULL);
Gleb Natapovb2029522011-11-27 17:59:09 +0200114}
Ingo Molnarc5905af2012-02-24 08:31:31 +0100115EXPORT_SYMBOL_GPL(static_key_slow_dec);
Gleb Natapovb2029522011-11-27 17:59:09 +0200116
Ingo Molnarc5905af2012-02-24 08:31:31 +0100117void static_key_slow_dec_deferred(struct static_key_deferred *key)
Gleb Natapovb2029522011-11-27 17:59:09 +0200118{
Hannes Frederic Sowac4b2c0c2013-10-19 21:48:53 +0200119 STATIC_KEY_CHECK_USE();
Ingo Molnarc5905af2012-02-24 08:31:31 +0100120 __static_key_slow_dec(&key->key, key->timeout, &key->work);
Gleb Natapovb2029522011-11-27 17:59:09 +0200121}
Ingo Molnarc5905af2012-02-24 08:31:31 +0100122EXPORT_SYMBOL_GPL(static_key_slow_dec_deferred);
Gleb Natapovb2029522011-11-27 17:59:09 +0200123
Ingo Molnarc5905af2012-02-24 08:31:31 +0100124void jump_label_rate_limit(struct static_key_deferred *key,
Gleb Natapovb2029522011-11-27 17:59:09 +0200125 unsigned long rl)
126{
Hannes Frederic Sowac4b2c0c2013-10-19 21:48:53 +0200127 STATIC_KEY_CHECK_USE();
Gleb Natapovb2029522011-11-27 17:59:09 +0200128 key->timeout = rl;
129 INIT_DELAYED_WORK(&key->work, jump_label_update_timeout);
130}
Gleb Natapova181dc12012-08-05 15:58:29 +0300131EXPORT_SYMBOL_GPL(jump_label_rate_limit);
Gleb Natapovb2029522011-11-27 17:59:09 +0200132
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400133static int addr_conflict(struct jump_entry *entry, void *start, void *end)
134{
135 if (entry->code <= (unsigned long)end &&
136 entry->code + JUMP_LABEL_NOP_SIZE > (unsigned long)start)
137 return 1;
138
139 return 0;
140}
141
Jason Barond430d3d2011-03-16 17:29:47 -0400142static int __jump_label_text_reserved(struct jump_entry *iter_start,
143 struct jump_entry *iter_stop, void *start, void *end)
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400144{
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400145 struct jump_entry *iter;
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400146
Jason Barond430d3d2011-03-16 17:29:47 -0400147 iter = iter_start;
148 while (iter < iter_stop) {
149 if (addr_conflict(iter, start, end))
150 return 1;
151 iter++;
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400152 }
Jason Barond430d3d2011-03-16 17:29:47 -0400153
154 return 0;
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400155}
156
Jeremy Fitzhardinge20284aa2011-10-03 11:01:46 -0700157/*
158 * Update code which is definitely not currently executing.
159 * Architectures which need heavyweight synchronization to modify
160 * running code can override this to make the non-live update case
161 * cheaper.
162 */
Peter Zijlstra9cdbe1c2011-12-06 17:27:29 +0100163void __weak __init_or_module arch_jump_label_transform_static(struct jump_entry *entry,
Jeremy Fitzhardinge20284aa2011-10-03 11:01:46 -0700164 enum jump_label_type type)
165{
166 arch_jump_label_transform(entry, type);
167}
168
Ingo Molnarc5905af2012-02-24 08:31:31 +0100169static void __jump_label_update(struct static_key *key,
Jiri Olsa7cbc5b82011-05-10 12:43:46 +0200170 struct jump_entry *entry,
171 struct jump_entry *stop, int enable)
Jason Barond430d3d2011-03-16 17:29:47 -0400172{
Jiri Olsa7cbc5b82011-05-10 12:43:46 +0200173 for (; (entry < stop) &&
174 (entry->key == (jump_label_t)(unsigned long)key);
175 entry++) {
Jason Barond430d3d2011-03-16 17:29:47 -0400176 /*
177 * entry->code set to 0 invalidates module init text sections
178 * kernel_text_address() verifies we are not in core kernel
179 * init code, see jump_label_invalidate_module_init().
180 */
181 if (entry->code && kernel_text_address(entry->code))
182 arch_jump_label_transform(entry, enable);
183 }
184}
185
Peter Zijlstraa1efb012015-07-24 14:55:40 +0200186static inline struct jump_entry *static_key_entries(struct static_key *key)
187{
188 return (struct jump_entry *)((unsigned long)key->entries & ~JUMP_TYPE_MASK);
189}
190
Ingo Molnarc5905af2012-02-24 08:31:31 +0100191static enum jump_label_type jump_label_type(struct static_key *key)
192{
Peter Zijlstraa1efb012015-07-24 14:55:40 +0200193 bool enabled = static_key_enabled(key);
194 bool type = static_key_type(key);
Ingo Molnarc5905af2012-02-24 08:31:31 +0100195
Peter Zijlstraa1efb012015-07-24 14:55:40 +0200196 return enabled ^ type;
Ingo Molnarc5905af2012-02-24 08:31:31 +0100197}
198
Jeremy Fitzhardinge97ce2c82011-10-12 16:17:54 -0700199void __init jump_label_init(void)
Jason Barond430d3d2011-03-16 17:29:47 -0400200{
201 struct jump_entry *iter_start = __start___jump_table;
202 struct jump_entry *iter_stop = __stop___jump_table;
Ingo Molnarc5905af2012-02-24 08:31:31 +0100203 struct static_key *key = NULL;
Jason Barond430d3d2011-03-16 17:29:47 -0400204 struct jump_entry *iter;
205
206 jump_label_lock();
207 jump_label_sort_entries(iter_start, iter_stop);
208
209 for (iter = iter_start; iter < iter_stop; iter++) {
Ingo Molnarc5905af2012-02-24 08:31:31 +0100210 struct static_key *iterk;
Jeremy Fitzhardinge37348802011-09-29 11:10:05 -0700211
Ingo Molnarc5905af2012-02-24 08:31:31 +0100212 iterk = (struct static_key *)(unsigned long)iter->key;
213 arch_jump_label_transform_static(iter, jump_label_type(iterk));
Jeremy Fitzhardinge37348802011-09-29 11:10:05 -0700214 if (iterk == key)
Jason Barond430d3d2011-03-16 17:29:47 -0400215 continue;
216
Jeremy Fitzhardinge37348802011-09-29 11:10:05 -0700217 key = iterk;
Ingo Molnarc5905af2012-02-24 08:31:31 +0100218 /*
219 * Set key->entries to iter, but preserve JUMP_LABEL_TRUE_BRANCH.
220 */
221 *((unsigned long *)&key->entries) += (unsigned long)iter;
Jason Barond430d3d2011-03-16 17:29:47 -0400222#ifdef CONFIG_MODULES
223 key->next = NULL;
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400224#endif
Jason Barond430d3d2011-03-16 17:29:47 -0400225 }
Hannes Frederic Sowac4b2c0c2013-10-19 21:48:53 +0200226 static_key_initialized = true;
Jason Barond430d3d2011-03-16 17:29:47 -0400227 jump_label_unlock();
Jason Barond430d3d2011-03-16 17:29:47 -0400228}
Jason Barond430d3d2011-03-16 17:29:47 -0400229
230#ifdef CONFIG_MODULES
231
Ingo Molnarc5905af2012-02-24 08:31:31 +0100232struct static_key_mod {
233 struct static_key_mod *next;
Jason Barond430d3d2011-03-16 17:29:47 -0400234 struct jump_entry *entries;
235 struct module *mod;
236};
237
238static int __jump_label_mod_text_reserved(void *start, void *end)
239{
240 struct module *mod;
241
242 mod = __module_text_address((unsigned long)start);
243 if (!mod)
244 return 0;
245
246 WARN_ON_ONCE(__module_text_address((unsigned long)end) != mod);
247
248 return __jump_label_text_reserved(mod->jump_entries,
249 mod->jump_entries + mod->num_jump_entries,
250 start, end);
251}
252
Ingo Molnarc5905af2012-02-24 08:31:31 +0100253static void __jump_label_mod_update(struct static_key *key, int enable)
Jason Barond430d3d2011-03-16 17:29:47 -0400254{
Ingo Molnarc5905af2012-02-24 08:31:31 +0100255 struct static_key_mod *mod = key->next;
Jason Barond430d3d2011-03-16 17:29:47 -0400256
257 while (mod) {
Jiri Olsa7cbc5b82011-05-10 12:43:46 +0200258 struct module *m = mod->mod;
259
260 __jump_label_update(key, mod->entries,
261 m->jump_entries + m->num_jump_entries,
262 enable);
Jason Barond430d3d2011-03-16 17:29:47 -0400263 mod = mod->next;
264 }
265}
266
267/***
268 * apply_jump_label_nops - patch module jump labels with arch_get_jump_label_nop()
269 * @mod: module to patch
270 *
271 * Allow for run-time selection of the optimal nops. Before the module
272 * loads patch these with arch_get_jump_label_nop(), which is specified by
273 * the arch specific jump label code.
274 */
275void jump_label_apply_nops(struct module *mod)
276{
277 struct jump_entry *iter_start = mod->jump_entries;
278 struct jump_entry *iter_stop = iter_start + mod->num_jump_entries;
279 struct jump_entry *iter;
280
281 /* if the module doesn't have jump label entries, just return */
282 if (iter_start == iter_stop)
283 return;
284
Peter Zijlstraac99b862011-07-06 14:20:14 +0200285 for (iter = iter_start; iter < iter_stop; iter++) {
Peter Zijlstra76b235c2015-07-24 14:45:44 +0200286 arch_jump_label_transform_static(iter, JUMP_LABEL_NOP);
Peter Zijlstraac99b862011-07-06 14:20:14 +0200287 }
Jason Barond430d3d2011-03-16 17:29:47 -0400288}
289
290static int jump_label_add_module(struct module *mod)
291{
292 struct jump_entry *iter_start = mod->jump_entries;
293 struct jump_entry *iter_stop = iter_start + mod->num_jump_entries;
294 struct jump_entry *iter;
Ingo Molnarc5905af2012-02-24 08:31:31 +0100295 struct static_key *key = NULL;
296 struct static_key_mod *jlm;
Jason Barond430d3d2011-03-16 17:29:47 -0400297
298 /* if the module doesn't have jump label entries, just return */
299 if (iter_start == iter_stop)
300 return 0;
301
302 jump_label_sort_entries(iter_start, iter_stop);
303
304 for (iter = iter_start; iter < iter_stop; iter++) {
Ingo Molnarc5905af2012-02-24 08:31:31 +0100305 struct static_key *iterk;
306
307 iterk = (struct static_key *)(unsigned long)iter->key;
308 if (iterk == key)
Jason Barond430d3d2011-03-16 17:29:47 -0400309 continue;
310
Ingo Molnarc5905af2012-02-24 08:31:31 +0100311 key = iterk;
Peter Zijlstrabed831f2015-05-27 11:09:35 +0930312 if (within_module(iter->key, mod)) {
Ingo Molnarc5905af2012-02-24 08:31:31 +0100313 /*
314 * Set key->entries to iter, but preserve JUMP_LABEL_TRUE_BRANCH.
315 */
316 *((unsigned long *)&key->entries) += (unsigned long)iter;
Jason Barond430d3d2011-03-16 17:29:47 -0400317 key->next = NULL;
318 continue;
319 }
Ingo Molnarc5905af2012-02-24 08:31:31 +0100320 jlm = kzalloc(sizeof(struct static_key_mod), GFP_KERNEL);
Jason Barond430d3d2011-03-16 17:29:47 -0400321 if (!jlm)
322 return -ENOMEM;
Jason Barond430d3d2011-03-16 17:29:47 -0400323 jlm->mod = mod;
324 jlm->entries = iter;
325 jlm->next = key->next;
326 key->next = jlm;
327
Peter Zijlstra76b235c2015-07-24 14:45:44 +0200328 if (jump_label_type(key) == JUMP_LABEL_JMP)
329 __jump_label_update(key, iter, iter_stop, JUMP_LABEL_JMP);
Jason Barond430d3d2011-03-16 17:29:47 -0400330 }
331
332 return 0;
333}
334
335static void jump_label_del_module(struct module *mod)
336{
337 struct jump_entry *iter_start = mod->jump_entries;
338 struct jump_entry *iter_stop = iter_start + mod->num_jump_entries;
339 struct jump_entry *iter;
Ingo Molnarc5905af2012-02-24 08:31:31 +0100340 struct static_key *key = NULL;
341 struct static_key_mod *jlm, **prev;
Jason Barond430d3d2011-03-16 17:29:47 -0400342
343 for (iter = iter_start; iter < iter_stop; iter++) {
344 if (iter->key == (jump_label_t)(unsigned long)key)
345 continue;
346
Ingo Molnarc5905af2012-02-24 08:31:31 +0100347 key = (struct static_key *)(unsigned long)iter->key;
Jason Barond430d3d2011-03-16 17:29:47 -0400348
Peter Zijlstrabed831f2015-05-27 11:09:35 +0930349 if (within_module(iter->key, mod))
Jason Barond430d3d2011-03-16 17:29:47 -0400350 continue;
351
352 prev = &key->next;
353 jlm = key->next;
354
355 while (jlm && jlm->mod != mod) {
356 prev = &jlm->next;
357 jlm = jlm->next;
358 }
359
360 if (jlm) {
361 *prev = jlm->next;
362 kfree(jlm);
363 }
364 }
365}
366
367static void jump_label_invalidate_module_init(struct module *mod)
368{
369 struct jump_entry *iter_start = mod->jump_entries;
370 struct jump_entry *iter_stop = iter_start + mod->num_jump_entries;
371 struct jump_entry *iter;
372
373 for (iter = iter_start; iter < iter_stop; iter++) {
374 if (within_module_init(iter->code, mod))
375 iter->code = 0;
376 }
377}
378
379static int
380jump_label_module_notify(struct notifier_block *self, unsigned long val,
381 void *data)
382{
383 struct module *mod = data;
384 int ret = 0;
385
386 switch (val) {
387 case MODULE_STATE_COMING:
388 jump_label_lock();
389 ret = jump_label_add_module(mod);
390 if (ret)
391 jump_label_del_module(mod);
392 jump_label_unlock();
393 break;
394 case MODULE_STATE_GOING:
395 jump_label_lock();
396 jump_label_del_module(mod);
397 jump_label_unlock();
398 break;
399 case MODULE_STATE_LIVE:
400 jump_label_lock();
401 jump_label_invalidate_module_init(mod);
402 jump_label_unlock();
403 break;
404 }
405
406 return notifier_from_errno(ret);
407}
408
409struct notifier_block jump_label_module_nb = {
410 .notifier_call = jump_label_module_notify,
411 .priority = 1, /* higher than tracepoints */
412};
413
414static __init int jump_label_init_module(void)
415{
416 return register_module_notifier(&jump_label_module_nb);
417}
418early_initcall(jump_label_init_module);
419
420#endif /* CONFIG_MODULES */
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400421
422/***
423 * jump_label_text_reserved - check if addr range is reserved
424 * @start: start text addr
425 * @end: end text addr
426 *
427 * checks if the text addr located between @start and @end
428 * overlaps with any of the jump label patch addresses. Code
429 * that wants to modify kernel text should first verify that
430 * it does not overlap with any of the jump label addresses.
Jason Baron91bad2f2010-10-01 17:23:48 -0400431 * Caller must hold jump_label_mutex.
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400432 *
433 * returns 1 if there is an overlap, 0 otherwise
434 */
435int jump_label_text_reserved(void *start, void *end)
436{
Jason Barond430d3d2011-03-16 17:29:47 -0400437 int ret = __jump_label_text_reserved(__start___jump_table,
438 __stop___jump_table, start, end);
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400439
Jason Barond430d3d2011-03-16 17:29:47 -0400440 if (ret)
441 return ret;
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400442
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400443#ifdef CONFIG_MODULES
Jason Barond430d3d2011-03-16 17:29:47 -0400444 ret = __jump_label_mod_text_reserved(start, end);
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400445#endif
Jason Baronbf5438fc2010-09-17 11:09:00 -0400446 return ret;
447}
Jason Barond430d3d2011-03-16 17:29:47 -0400448
Ingo Molnarc5905af2012-02-24 08:31:31 +0100449static void jump_label_update(struct static_key *key, int enable)
Jason Barond430d3d2011-03-16 17:29:47 -0400450{
Ingo Molnarc5905af2012-02-24 08:31:31 +0100451 struct jump_entry *stop = __stop___jump_table;
Peter Zijlstraa1efb012015-07-24 14:55:40 +0200452 struct jump_entry *entry = static_key_entries(key);
Jason Baronbf5438fc2010-09-17 11:09:00 -0400453#ifdef CONFIG_MODULES
Peter Zijlstrabed831f2015-05-27 11:09:35 +0930454 struct module *mod;
Xiao Guangrong140fe3b2011-06-21 10:35:55 +0800455
Jason Barond430d3d2011-03-16 17:29:47 -0400456 __jump_label_mod_update(key, enable);
Xiao Guangrong140fe3b2011-06-21 10:35:55 +0800457
Peter Zijlstrabed831f2015-05-27 11:09:35 +0930458 preempt_disable();
459 mod = __module_address((unsigned long)key);
Xiao Guangrong140fe3b2011-06-21 10:35:55 +0800460 if (mod)
461 stop = mod->jump_entries + mod->num_jump_entries;
Peter Zijlstrabed831f2015-05-27 11:09:35 +0930462 preempt_enable();
Jason Barond430d3d2011-03-16 17:29:47 -0400463#endif
Xiao Guangrong140fe3b2011-06-21 10:35:55 +0800464 /* if there are no users, entry can be NULL */
465 if (entry)
466 __jump_label_update(key, entry, stop, enable);
Jason Baronbf5438fc2010-09-17 11:09:00 -0400467}
468
Jason Baronbf5438fc2010-09-17 11:09:00 -0400469#endif