Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 815c4163b6c8ebf8152f42b0a5fd015cfdcedc78 authored by Linus Torvalds on 05 July 2010, 03:22:50 UTC
Linux 2.6.35-rc4
Tip revision: 815c416
events.h
#ifndef _ASM_X86_XEN_EVENTS_H
#define _ASM_X86_XEN_EVENTS_H

enum ipi_vector {
	XEN_RESCHEDULE_VECTOR,
	XEN_CALL_FUNCTION_VECTOR,
	XEN_CALL_FUNCTION_SINGLE_VECTOR,
	XEN_SPIN_UNLOCK_VECTOR,

	XEN_NR_IPIS,
};

static inline int xen_irqs_disabled(struct pt_regs *regs)
{
	return raw_irqs_disabled_flags(regs->flags);
}

#endif /* _ASM_X86_XEN_EVENTS_H */
back to top