[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] x86-64: one more adjustment for Fam10 MMCONF enabling
# HG changeset patch # User Keir Fraser <keir@xxxxxxx> # Date 1290173040 0 # Node ID ff98da15205f18744bc01a32df7cb983ca69e115 # Parent b0cd945b39b45d438803b8a7af8422f2bc462710 x86-64: one more adjustment for Fam10 MMCONF enabling The BASE_VALID() macro needs adjustment to match the other changes done to the original Linux code (which are all queued to be merged into Linus' tree), plus per Hypertransport specification the range 0xff00000000-0xffffffffff also needs to be excluded. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxxxx> --- xen/arch/x86/x86_64/mmconf-fam10h.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -r b0cd945b39b4 -r ff98da15205f xen/arch/x86/x86_64/mmconf-fam10h.c --- a/xen/arch/x86/x86_64/mmconf-fam10h.c Fri Nov 19 13:23:34 2010 +0000 +++ b/xen/arch/x86/x86_64/mmconf-fam10h.c Fri Nov 19 13:24:00 2010 +0000 @@ -33,7 +33,7 @@ static struct pci_hostbridge_probe pci_p #define SIZE (UNIT << 8) /* need to avoid (0xfd<<32) and (0xfe<<32), ht used space */ #define FAM10H_PCI_MMCONF_BASE (0xfcULL<<32) -#define BASE_VALID(b) ((b != (0xfdULL << 32)) && (b != (0xfeULL << 32))) +#define BASE_VALID(b) ((b) + SIZE <= (0xfdULL<<32) || (b) >= (1ULL<<40)) static void __init get_fam10h_pci_mmconf_base(void) { unsigned int i, j, bus, slot, hi_mmio_num; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |