Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / tools / testing / radix-tree / linux / preempt.h
blobedb10302b903e821e72763eec79f9d9803e42e5c
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __LINUX_PREEMPT_H
3 #define __LINUX_PREEMPT_H
5 extern int preempt_count;
7 #define preempt_disable() uatomic_inc(&preempt_count)
8 #define preempt_enable() uatomic_dec(&preempt_count)
10 static inline int in_interrupt(void)
12 return 0;
15 #endif /* __LINUX_PREEMPT_H */