/****************************************************************************** * multicall.h */ #ifndef __XEN_MULTICALL_H__ #define __XEN_MULTICALL_H__ #include #include #ifdef CONFIG_COMPAT #include #endif #define _MCSF_in_multicall 0 #define _MCSF_call_preempted 1 #define MCSF_in_multicall (1<<_MCSF_in_multicall) #define MCSF_call_preempted (1<<_MCSF_call_preempted) struct mc_state { unsigned long flags; union { struct multicall_entry call; #ifdef CONFIG_COMPAT struct compat_multicall_entry compat_call; #endif }; }; #endif /* __XEN_MULTICALL_H__ */