blob: 05c8604627eb0ae085913a91a17013604e83f359 [file] [log] [blame]
Hannes Frederic Sowa46234252015-10-08 01:20:35 +02001#include <linux/slab.h>
2#include <linux/spinlock.h>
3#include <linux/once.h>
4#include <linux/random.h>
5
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +02006struct once_work {
Hannes Frederic Sowa46234252015-10-08 01:20:35 +02007 struct work_struct work;
8 struct static_key *key;
9};
10
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +020011static void once_deferred(struct work_struct *w)
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020012{
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +020013 struct once_work *work;
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020014
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +020015 work = container_of(w, struct once_work, work);
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020016 BUG_ON(!static_key_enabled(work->key));
17 static_key_slow_dec(work->key);
18 kfree(work);
19}
20
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +020021static void once_disable_jump(struct static_key *key)
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020022{
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +020023 struct once_work *w;
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020024
25 w = kmalloc(sizeof(*w), GFP_ATOMIC);
26 if (!w)
27 return;
28
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +020029 INIT_WORK(&w->work, once_deferred);
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020030 w->key = key;
31 schedule_work(&w->work);
32}
33
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +020034static DEFINE_SPINLOCK(once_lock);
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020035
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +020036bool __do_once_start(bool *done, unsigned long *flags)
37 __acquires(once_lock)
38{
39 spin_lock_irqsave(&once_lock, *flags);
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020040 if (*done) {
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +020041 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);
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020047 return false;
48 }
49
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020050 return true;
51}
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +020052EXPORT_SYMBOL(__do_once_start);
53
54void __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}
62EXPORT_SYMBOL(__do_once_done);