diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-22 11:25:44 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-22 11:25:44 -0700 |
commit | 4762e252f4afc6909edb0babe9c25f126afedcaa (patch) | |
tree | f4d68be15b2c5887f98894996899e9e3f191ce4c /arch/x86/xen/enlighten.c | |
parent | 3210d190dcb717c328d74f8c3f69ec717d665b40 (diff) | |
parent | 60c5f08e154fd235056645e050f2cd5671b19125 (diff) | |
download | linux-4762e252f4afc6909edb0babe9c25f126afedcaa.tar.gz linux-4762e252f4afc6909edb0babe9c25f126afedcaa.tar.bz2 linux-4762e252f4afc6909edb0babe9c25f126afedcaa.zip |
Merge branch 'stable/bug.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen
* 'stable/bug.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen:
xen/tracing: Fix tracing config option properly
xen: Do not enable PV IPIs when vector callback not present
xen/x86: replace order-based range checking of M2P table by linear one
xen: xen-selfballoon.c needs more header files
Diffstat (limited to 'arch/x86/xen/enlighten.c')
-rw-r--r-- | arch/x86/xen/enlighten.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c index e2345af01af0..2d69617950f7 100644 --- a/arch/x86/xen/enlighten.c +++ b/arch/x86/xen/enlighten.c @@ -77,8 +77,8 @@ EXPORT_SYMBOL_GPL(xen_domain_type); unsigned long *machine_to_phys_mapping = (void *)MACH2PHYS_VIRT_START; EXPORT_SYMBOL(machine_to_phys_mapping); -unsigned int machine_to_phys_order; -EXPORT_SYMBOL(machine_to_phys_order); +unsigned long machine_to_phys_nr; +EXPORT_SYMBOL(machine_to_phys_nr); struct start_info *xen_start_info; EXPORT_SYMBOL_GPL(xen_start_info); |