3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-07 06:44:18 +00:00
Brooklyn/include/linux/once_lite.h

37 lines
925 B
C
Raw Normal View History

2022-04-02 13:17:33 +00:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_ONCE_LITE_H
#define _LINUX_ONCE_LITE_H
#include <linux/types.h>
/* Call a function once. Similar to DO_ONCE(), but does not use jump label
* patching via static keys.
*/
#define DO_ONCE_LITE(func, ...) \
DO_ONCE_LITE_IF(true, func, ##__VA_ARGS__)
2022-09-13 18:14:27 +00:00
#define __ONCE_LITE_IF(condition) \
2022-04-02 13:17:33 +00:00
({ \
static bool __section(".data.once") __already_done; \
2022-09-13 18:14:27 +00:00
bool __ret_cond = !!(condition); \
bool __ret_once = false; \
2022-04-02 13:17:33 +00:00
\
2022-09-13 18:14:27 +00:00
if (unlikely(__ret_cond && !__already_done)) { \
2022-04-02 13:17:33 +00:00
__already_done = true; \
2022-09-13 18:14:27 +00:00
__ret_once = true; \
2022-04-02 13:17:33 +00:00
} \
2022-09-13 18:14:27 +00:00
unlikely(__ret_once); \
})
#define DO_ONCE_LITE_IF(condition, func, ...) \
({ \
bool __ret_do_once = !!(condition); \
\
if (__ONCE_LITE_IF(__ret_do_once)) \
func(__VA_ARGS__); \
\
2022-04-02 13:17:33 +00:00
unlikely(__ret_do_once); \
})
#endif /* _LINUX_ONCE_LITE_H */