]>
git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - lib/once.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/slab.h>
3 #include <linux/spinlock.h>
4 #include <linux/once.h>
5 #include <linux/random.h>
8 struct work_struct work
;
9 struct static_key_true
*key
;
12 static void once_deferred(struct work_struct
*w
)
14 struct once_work
*work
;
16 work
= container_of(w
, struct once_work
, work
);
17 BUG_ON(!static_key_enabled(work
->key
));
18 static_branch_disable(work
->key
);
22 static void once_disable_jump(struct static_key_true
*key
)
26 w
= kmalloc(sizeof(*w
), GFP_ATOMIC
);
30 INIT_WORK(&w
->work
, once_deferred
);
32 schedule_work(&w
->work
);
35 static DEFINE_SPINLOCK(once_lock
);
37 bool __do_once_start(bool *done
, unsigned long *flags
)
40 spin_lock_irqsave(&once_lock
, *flags
);
42 spin_unlock_irqrestore(&once_lock
, *flags
);
43 /* Keep sparse happy by restoring an even lock count on
44 * this lock. In case we return here, we don't call into
45 * __do_once_done but return early in the DO_ONCE() macro.
53 EXPORT_SYMBOL(__do_once_start
);
55 void __do_once_done(bool *done
, struct static_key_true
*once_key
,
60 spin_unlock_irqrestore(&once_lock
, *flags
);
61 once_disable_jump(once_key
);
63 EXPORT_SYMBOL(__do_once_done
);