aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen
diff options
context:
space:
mode:
authorJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>2009-03-22 02:51:26 -0400
committerJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>2010-10-20 19:22:32 -0400
commit8e3e99918b9ccd6bc2369ddbcd74056f8796e1e0 (patch)
tree9c189ec2cec69ef55d58bfa3ad2be43eb2a9cf13 /drivers/xen
parentf31fdf510531333dea95f0a92e6eaa1c3a7541e2 (diff)
xenbus: export xen_store_interface for xenfs
xen_store_interface is needed by xenfs, and xenfs may be a module. [ Impact: build fix for modular xenfs ] Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r--drivers/xen/xenbus/xenbus_probe.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/xen/xenbus/xenbus_probe.c b/drivers/xen/xenbus/xenbus_probe.c
index d409495876f1..132939f36020 100644
--- a/drivers/xen/xenbus/xenbus_probe.c
+++ b/drivers/xen/xenbus/xenbus_probe.c
@@ -64,9 +64,11 @@
64 64
65 65
66int xen_store_evtchn; 66int xen_store_evtchn;
67EXPORT_SYMBOL(xen_store_evtchn); 67EXPORT_SYMBOL_GPL(xen_store_evtchn);
68 68
69struct xenstore_domain_interface *xen_store_interface; 69struct xenstore_domain_interface *xen_store_interface;
70EXPORT_SYMBOL_GPL(xen_store_interface);
71
70static unsigned long xen_store_mfn; 72static unsigned long xen_store_mfn;
71 73
72static BLOCKING_NOTIFIER_HEAD(xenstore_chain); 74static BLOCKING_NOTIFIER_HEAD(xenstore_chain);