summaryrefslogtreecommitdiffstats
path: root/fix-arm-xen-driver-build.patch
diff options
context:
space:
mode:
authorJosh Boyer <jwboyer@fedoraproject.org>2013-11-16 11:03:20 -0500
committerJosh Boyer <jwboyer@fedoraproject.org>2013-11-16 11:03:20 -0500
commit6494f2c3b13d79f6705faceb0efde9029bd56bbf (patch)
tree08bda97609b2a3de4591de845a346c189e24948b /fix-arm-xen-driver-build.patch
parentec0fd9d87484200e995dfabc0b476293a5942018 (diff)
downloadkernel-6494f2c3b13d79f6705faceb0efde9029bd56bbf.tar.gz
kernel-6494f2c3b13d79f6705faceb0efde9029bd56bbf.tar.xz
kernel-6494f2c3b13d79f6705faceb0efde9029bd56bbf.zip
Linux v3.12-9888-gf63c482
Diffstat (limited to 'fix-arm-xen-driver-build.patch')
-rw-r--r--fix-arm-xen-driver-build.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/fix-arm-xen-driver-build.patch b/fix-arm-xen-driver-build.patch
new file mode 100644
index 000000000..9e29ea699
--- /dev/null
+++ b/fix-arm-xen-driver-build.patch
@@ -0,0 +1,14 @@
+diff --git a/arch/arm/xen/p2m.c b/arch/arm/xen/p2m.c
+index 23732cd..7772fa8 100644
+--- a/arch/arm/xen/p2m.c
++++ b/arch/arm/xen/p2m.c
+@@ -27,7 +27,9 @@ struct xen_p2m_entry {
+
+ rwlock_t p2m_lock;
+ struct rb_root phys_to_mach = RB_ROOT;
++EXPORT_SYMBOL_GPL(phys_to_mach);
+ static struct rb_root mach_to_phys = RB_ROOT;
++EXPORT_SYMBOL_GPL(mach_to_phys);
+
+ static int xen_add_phys_to_mach_entry(struct xen_p2m_entry *new)
+ {