linux/arch/x86/include/asm/xen/trace_types.h
<<
>>
Prefs
   1#ifndef _ASM_XEN_TRACE_TYPES_H
   2#define _ASM_XEN_TRACE_TYPES_H
   3
   4enum xen_mc_flush_reason {
   5        XEN_MC_FL_NONE,         /* explicit flush */
   6        XEN_MC_FL_BATCH,        /* out of hypercall space */
   7        XEN_MC_FL_ARGS,         /* out of argument space */
   8        XEN_MC_FL_CALLBACK,     /* out of callback space */
   9};
  10
  11enum xen_mc_extend_args {
  12        XEN_MC_XE_OK,
  13        XEN_MC_XE_BAD_OP,
  14        XEN_MC_XE_NO_SPACE
  15};
  16typedef void (*xen_mc_callback_fn_t)(void *);
  17
  18#endif  /* _ASM_XEN_TRACE_TYPES_H */
  19