-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 93170 b: refs/heads/master c: e849c3e h: refs/heads/master v: v3
- Loading branch information
Isaku Yamahata
authored and
Ingo Molnar
committed
Apr 24, 2008
1 parent
3a9cc6c
commit e32ca19
Showing
4 changed files
with
31 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: e04d0d0767a9c272d3c7300fb7a5221c5e3a71eb | ||
refs/heads/master: e849c3e9e0b786619c451d89ef0c47ac9a28fbc1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef __XEN_EVENTS_H | ||
#define __XEN_EVENTS_H | ||
|
||
enum ipi_vector { | ||
XEN_RESCHEDULE_VECTOR, | ||
XEN_CALL_FUNCTION_VECTOR, | ||
|
||
XEN_NR_IPIS, | ||
}; | ||
|
||
static inline int xen_irqs_disabled(struct pt_regs *regs) | ||
{ | ||
return raw_irqs_disabled_flags(regs->flags); | ||
} | ||
|
||
static inline void xen_do_IRQ(int irq, struct pt_regs *regs) | ||
{ | ||
regs->orig_ax = ~irq; | ||
do_IRQ(regs); | ||
} | ||
|
||
#endif /* __XEN_EVENTS_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters