1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_ONCE_LITE_H
3 #define _LINUX_ONCE_LITE_H
5 #include <linux/types.h>
7 /* Call a function once. Similar to DO_ONCE(), but does not use jump label
8 * patching via static keys.
10 #define DO_ONCE_LITE(func, ...) \
11 DO_ONCE_LITE_IF(true, func, ##__VA_ARGS__)
13 #define __ONCE_LITE_IF(condition) \
15 static bool __section(".data.once") __already_done; \
16 bool __ret_cond = !!(condition); \
17 bool __ret_once = false; \
19 if (unlikely(__ret_cond && !__already_done)) { \
20 __already_done = true; \
23 unlikely(__ret_once); \
26 #define DO_ONCE_LITE_IF(condition, func, ...) \
28 bool __ret_do_once = !!(condition); \
30 if (__ONCE_LITE_IF(__ret_do_once)) \
33 unlikely(__ret_do_once); \
36 #endif /* _LINUX_ONCE_LITE_H */