-
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: 305011 b: refs/heads/master c: 31b3c9d h: refs/heads/master i: 305009: c5c063b 305007: b2eaf47 v: v3
- Loading branch information
Konrad Rzeszutek Wilk
committed
May 1, 2012
1 parent
a3d6959
commit 2cf171a
Showing
5 changed files
with
25 additions
and
2 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: 4a8e2a3115e7aa4bd2deb4c6483d47c743e0fbb3 | ||
refs/heads/master: 31b3c9d723407b395564d1fff3624cc0083ae520 |
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,17 @@ | ||
#include <linux/init.h> | ||
#include <asm/x86_init.h> | ||
|
||
unsigned int xen_io_apic_read(unsigned apic, unsigned reg) | ||
{ | ||
if (reg == 0x1) | ||
return 0x00170020; | ||
else if (reg == 0x0) | ||
return apic << 24; | ||
|
||
return 0xfd; | ||
} | ||
|
||
void __init xen_init_apic(void) | ||
{ | ||
x86_io_apic_ops.read = xen_io_apic_read; | ||
} |
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