]>
Commit | Line | Data |
---|---|---|
46234253 HFS |
1 | #include <linux/slab.h> |
2 | #include <linux/spinlock.h> | |
3 | #include <linux/once.h> | |
4 | #include <linux/random.h> | |
5 | ||
c90aeb94 | 6 | struct once_work { |
46234253 HFS |
7 | struct work_struct work; |
8 | struct static_key *key; | |
9 | }; | |
10 | ||
c90aeb94 | 11 | static void once_deferred(struct work_struct *w) |
46234253 | 12 | { |
c90aeb94 | 13 | struct once_work *work; |
46234253 | 14 | |
c90aeb94 | 15 | work = container_of(w, struct once_work, work); |
46234253 HFS |
16 | BUG_ON(!static_key_enabled(work->key)); |
17 | static_key_slow_dec(work->key); | |
18 | kfree(work); | |
19 | } | |
20 | ||
c90aeb94 | 21 | static void once_disable_jump(struct static_key *key) |
46234253 | 22 | { |
c90aeb94 | 23 | struct once_work *w; |
46234253 HFS |
24 | |
25 | w = kmalloc(sizeof(*w), GFP_ATOMIC); | |
26 | if (!w) | |
27 | return; | |
28 | ||
c90aeb94 | 29 | INIT_WORK(&w->work, once_deferred); |
46234253 HFS |
30 | w->key = key; |
31 | schedule_work(&w->work); | |
32 | } | |
33 | ||
c90aeb94 | 34 | static DEFINE_SPINLOCK(once_lock); |
46234253 | 35 | |
c90aeb94 HFS |
36 | bool __do_once_start(bool *done, unsigned long *flags) |
37 | __acquires(once_lock) | |
38 | { | |
39 | spin_lock_irqsave(&once_lock, *flags); | |
46234253 | 40 | if (*done) { |
c90aeb94 HFS |
41 | spin_unlock_irqrestore(&once_lock, *flags); |
42 | /* Keep sparse happy by restoring an even lock count on | |
43 | * this lock. In case we return here, we don't call into | |
44 | * __do_once_done but return early in the DO_ONCE() macro. | |
45 | */ | |
46 | __acquire(once_lock); | |
46234253 HFS |
47 | return false; |
48 | } | |
49 | ||
46234253 HFS |
50 | return true; |
51 | } | |
c90aeb94 HFS |
52 | EXPORT_SYMBOL(__do_once_start); |
53 | ||
54 | void __do_once_done(bool *done, struct static_key *once_key, | |
55 | unsigned long *flags) | |
56 | __releases(once_lock) | |
57 | { | |
58 | *done = true; | |
59 | spin_unlock_irqrestore(&once_lock, *flags); | |
60 | once_disable_jump(once_key); | |
61 | } | |
62 | EXPORT_SYMBOL(__do_once_done); |