1 /******************************************************************************
2 * Talks to Xen Store to figure out what devices we have.
4 * Copyright (C) 2005 Rusty Russell, IBM Corporation
5 * Copyright (C) 2005 Mike Wray, Hewlett-Packard
6 * Copyright (C) 2005, 2006 XenSource Ltd
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version 2
10 * as published by the Free Software Foundation; or, when distributed
11 * separately from the Linux kernel or incorporated into other
12 * software packages, subject to the following license:
14 * Permission is hereby granted, free of charge, to any person obtaining a copy
15 * of this source file (the "Software"), to deal in the Software without
16 * restriction, including without limitation the rights to use, copy, modify,
17 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
18 * and to permit persons to whom the Software is furnished to do so, subject to
19 * the following conditions:
21 * The above copyright notice and this permission notice shall be included in
22 * all copies or substantial portions of the Software.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
33 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
34 #define dev_fmt pr_fmt
36 #define DPRINTK(fmt, args...) \
37 pr_debug("xenbus_probe (%s:%d) " fmt ".\n", \
38 __func__, __LINE__, ##args)
40 #include <linux/kernel.h>
41 #include <linux/err.h>
42 #include <linux/string.h>
43 #include <linux/ctype.h>
44 #include <linux/fcntl.h>
46 #include <linux/proc_fs.h>
47 #include <linux/notifier.h>
48 #include <linux/kthread.h>
49 #include <linux/mutex.h>
51 #include <linux/slab.h>
52 #include <linux/module.h>
55 #include <asm/xen/hypervisor.h>
58 #include <xen/xenbus.h>
59 #include <xen/events.h>
60 #include <xen/xen-ops.h>
69 EXPORT_SYMBOL_GPL(xen_store_evtchn);
71 struct xenstore_domain_interface *xen_store_interface;
72 EXPORT_SYMBOL_GPL(xen_store_interface);
74 enum xenstore_init xen_store_domain_type;
75 EXPORT_SYMBOL_GPL(xen_store_domain_type);
77 static unsigned long xen_store_gfn;
79 static BLOCKING_NOTIFIER_HEAD(xenstore_chain);
81 /* If something in array of ids matches this device, return it. */
82 static const struct xenbus_device_id *
83 match_device(const struct xenbus_device_id *arr, struct xenbus_device *dev)
85 for (; *arr->devicetype != '\0'; arr++) {
86 if (!strcmp(arr->devicetype, dev->devicetype))
92 int xenbus_match(struct device *_dev, struct device_driver *_drv)
94 struct xenbus_driver *drv = to_xenbus_driver(_drv);
99 return match_device(drv->ids, to_xenbus_device(_dev)) != NULL;
101 EXPORT_SYMBOL_GPL(xenbus_match);
104 static void free_otherend_details(struct xenbus_device *dev)
106 kfree(dev->otherend);
107 dev->otherend = NULL;
111 static void free_otherend_watch(struct xenbus_device *dev)
113 if (dev->otherend_watch.node) {
114 unregister_xenbus_watch(&dev->otherend_watch);
115 kfree(dev->otherend_watch.node);
116 dev->otherend_watch.node = NULL;
121 static int talk_to_otherend(struct xenbus_device *dev)
123 struct xenbus_driver *drv = to_xenbus_driver(dev->dev.driver);
125 free_otherend_watch(dev);
126 free_otherend_details(dev);
128 return drv->read_otherend_details(dev);
133 static int watch_otherend(struct xenbus_device *dev)
135 struct xen_bus_type *bus =
136 container_of(dev->dev.bus, struct xen_bus_type, bus);
138 return xenbus_watch_pathfmt(dev, &dev->otherend_watch,
139 bus->otherend_will_handle,
140 bus->otherend_changed,
141 "%s/%s", dev->otherend, "state");
145 int xenbus_read_otherend_details(struct xenbus_device *xendev,
146 char *id_node, char *path_node)
148 int err = xenbus_gather(XBT_NIL, xendev->nodename,
149 id_node, "%i", &xendev->otherend_id,
150 path_node, NULL, &xendev->otherend,
153 xenbus_dev_fatal(xendev, err,
154 "reading other end details from %s",
158 if (strlen(xendev->otherend) == 0 ||
159 !xenbus_exists(XBT_NIL, xendev->otherend, "")) {
160 xenbus_dev_fatal(xendev, -ENOENT,
161 "unable to read other end from %s. "
162 "missing or inaccessible.",
164 free_otherend_details(xendev);
170 EXPORT_SYMBOL_GPL(xenbus_read_otherend_details);
172 void xenbus_otherend_changed(struct xenbus_watch *watch,
173 const char *path, const char *token,
174 int ignore_on_shutdown)
176 struct xenbus_device *dev =
177 container_of(watch, struct xenbus_device, otherend_watch);
178 struct xenbus_driver *drv = to_xenbus_driver(dev->dev.driver);
179 enum xenbus_state state;
181 /* Protect us against watches firing on old details when the otherend
182 details change, say immediately after a resume. */
183 if (!dev->otherend ||
184 strncmp(dev->otherend, path, strlen(dev->otherend))) {
185 dev_dbg(&dev->dev, "Ignoring watch at %s\n", path);
189 state = xenbus_read_driver_state(dev->otherend);
191 dev_dbg(&dev->dev, "state is %d, (%s), %s, %s\n",
192 state, xenbus_strstate(state), dev->otherend_watch.node, path);
195 * Ignore xenbus transitions during shutdown. This prevents us doing
196 * work that can fail e.g., when the rootfs is gone.
198 if (system_state > SYSTEM_RUNNING) {
199 if (ignore_on_shutdown && (state == XenbusStateClosing))
200 xenbus_frontend_closed(dev);
204 if (drv->otherend_changed)
205 drv->otherend_changed(dev, state);
207 EXPORT_SYMBOL_GPL(xenbus_otherend_changed);
209 #define XENBUS_SHOW_STAT(name) \
210 static ssize_t show_##name(struct device *_dev, \
211 struct device_attribute *attr, \
214 struct xenbus_device *dev = to_xenbus_device(_dev); \
216 return sprintf(buf, "%d\n", atomic_read(&dev->name)); \
218 static DEVICE_ATTR(name, 0444, show_##name, NULL)
220 XENBUS_SHOW_STAT(event_channels);
221 XENBUS_SHOW_STAT(events);
222 XENBUS_SHOW_STAT(spurious_events);
223 XENBUS_SHOW_STAT(jiffies_eoi_delayed);
225 static ssize_t show_spurious_threshold(struct device *_dev,
226 struct device_attribute *attr,
229 struct xenbus_device *dev = to_xenbus_device(_dev);
231 return sprintf(buf, "%d\n", dev->spurious_threshold);
234 static ssize_t set_spurious_threshold(struct device *_dev,
235 struct device_attribute *attr,
236 const char *buf, size_t count)
238 struct xenbus_device *dev = to_xenbus_device(_dev);
242 ret = kstrtouint(buf, 0, &val);
246 dev->spurious_threshold = val;
251 static DEVICE_ATTR(spurious_threshold, 0644, show_spurious_threshold,
252 set_spurious_threshold);
254 static struct attribute *xenbus_attrs[] = {
255 &dev_attr_event_channels.attr,
256 &dev_attr_events.attr,
257 &dev_attr_spurious_events.attr,
258 &dev_attr_jiffies_eoi_delayed.attr,
259 &dev_attr_spurious_threshold.attr,
263 static const struct attribute_group xenbus_group = {
265 .attrs = xenbus_attrs,
268 int xenbus_dev_probe(struct device *_dev)
270 struct xenbus_device *dev = to_xenbus_device(_dev);
271 struct xenbus_driver *drv = to_xenbus_driver(_dev->driver);
272 const struct xenbus_device_id *id;
275 DPRINTK("%s", dev->nodename);
282 id = match_device(drv->ids, dev);
288 err = talk_to_otherend(dev);
290 dev_warn(&dev->dev, "talk_to_otherend on %s failed.\n",
295 if (!try_module_get(drv->driver.owner)) {
296 dev_warn(&dev->dev, "failed to acquire module reference on '%s'\n",
302 down(&dev->reclaim_sem);
303 err = drv->probe(dev, id);
304 up(&dev->reclaim_sem);
308 err = watch_otherend(dev);
310 dev_warn(&dev->dev, "watch_otherend on %s failed.\n",
315 dev->spurious_threshold = 1;
316 if (sysfs_create_group(&dev->dev.kobj, &xenbus_group))
317 dev_warn(&dev->dev, "sysfs_create_group on %s failed.\n",
322 module_put(drv->driver.owner);
324 xenbus_dev_error(dev, err, "xenbus_dev_probe on %s", dev->nodename);
327 EXPORT_SYMBOL_GPL(xenbus_dev_probe);
329 int xenbus_dev_remove(struct device *_dev)
331 struct xenbus_device *dev = to_xenbus_device(_dev);
332 struct xenbus_driver *drv = to_xenbus_driver(_dev->driver);
334 DPRINTK("%s", dev->nodename);
336 sysfs_remove_group(&dev->dev.kobj, &xenbus_group);
338 free_otherend_watch(dev);
341 down(&dev->reclaim_sem);
343 up(&dev->reclaim_sem);
346 module_put(drv->driver.owner);
348 free_otherend_details(dev);
351 * If the toolstack has forced the device state to closing then set
352 * the state to closed now to allow it to be cleaned up.
353 * Similarly, if the driver does not support re-bind, set the
356 if (!drv->allow_rebind ||
357 xenbus_read_driver_state(dev->nodename) == XenbusStateClosing)
358 xenbus_switch_state(dev, XenbusStateClosed);
362 EXPORT_SYMBOL_GPL(xenbus_dev_remove);
364 int xenbus_register_driver_common(struct xenbus_driver *drv,
365 struct xen_bus_type *bus,
366 struct module *owner, const char *mod_name)
368 drv->driver.name = drv->name ? drv->name : drv->ids[0].devicetype;
369 drv->driver.bus = &bus->bus;
370 drv->driver.owner = owner;
371 drv->driver.mod_name = mod_name;
373 return driver_register(&drv->driver);
375 EXPORT_SYMBOL_GPL(xenbus_register_driver_common);
377 void xenbus_unregister_driver(struct xenbus_driver *drv)
379 driver_unregister(&drv->driver);
381 EXPORT_SYMBOL_GPL(xenbus_unregister_driver);
383 struct xb_find_info {
384 struct xenbus_device *dev;
385 const char *nodename;
388 static int cmp_dev(struct device *dev, void *data)
390 struct xenbus_device *xendev = to_xenbus_device(dev);
391 struct xb_find_info *info = data;
393 if (!strcmp(xendev->nodename, info->nodename)) {
401 static struct xenbus_device *xenbus_device_find(const char *nodename,
402 struct bus_type *bus)
404 struct xb_find_info info = { .dev = NULL, .nodename = nodename };
406 bus_for_each_dev(bus, NULL, &info, cmp_dev);
410 static int cleanup_dev(struct device *dev, void *data)
412 struct xenbus_device *xendev = to_xenbus_device(dev);
413 struct xb_find_info *info = data;
414 int len = strlen(info->nodename);
416 DPRINTK("%s", info->nodename);
418 /* Match the info->nodename path, or any subdirectory of that path. */
419 if (strncmp(xendev->nodename, info->nodename, len))
422 /* If the node name is longer, ensure it really is a subdirectory. */
423 if ((strlen(xendev->nodename) > len) && (xendev->nodename[len] != '/'))
431 static void xenbus_cleanup_devices(const char *path, struct bus_type *bus)
433 struct xb_find_info info = { .nodename = path };
437 bus_for_each_dev(bus, NULL, &info, cleanup_dev);
439 device_unregister(&info.dev->dev);
440 put_device(&info.dev->dev);
445 static void xenbus_dev_release(struct device *dev)
448 kfree(to_xenbus_device(dev));
451 static ssize_t nodename_show(struct device *dev,
452 struct device_attribute *attr, char *buf)
454 return sprintf(buf, "%s\n", to_xenbus_device(dev)->nodename);
456 static DEVICE_ATTR_RO(nodename);
458 static ssize_t devtype_show(struct device *dev,
459 struct device_attribute *attr, char *buf)
461 return sprintf(buf, "%s\n", to_xenbus_device(dev)->devicetype);
463 static DEVICE_ATTR_RO(devtype);
465 static ssize_t modalias_show(struct device *dev,
466 struct device_attribute *attr, char *buf)
468 return sprintf(buf, "%s:%s\n", dev->bus->name,
469 to_xenbus_device(dev)->devicetype);
471 static DEVICE_ATTR_RO(modalias);
473 static ssize_t state_show(struct device *dev,
474 struct device_attribute *attr, char *buf)
476 return sprintf(buf, "%s\n",
477 xenbus_strstate(to_xenbus_device(dev)->state));
479 static DEVICE_ATTR_RO(state);
481 static struct attribute *xenbus_dev_attrs[] = {
482 &dev_attr_nodename.attr,
483 &dev_attr_devtype.attr,
484 &dev_attr_modalias.attr,
485 &dev_attr_state.attr,
489 static const struct attribute_group xenbus_dev_group = {
490 .attrs = xenbus_dev_attrs,
493 const struct attribute_group *xenbus_dev_groups[] = {
497 EXPORT_SYMBOL_GPL(xenbus_dev_groups);
499 int xenbus_probe_node(struct xen_bus_type *bus,
501 const char *nodename)
503 char devname[XEN_BUS_ID_SIZE];
505 struct xenbus_device *xendev;
509 enum xenbus_state state = xenbus_read_driver_state(nodename);
511 if (state != XenbusStateInitialising) {
512 /* Device is not new, so ignore it. This can happen if a
513 device is going away after switching to Closed. */
517 stringlen = strlen(nodename) + 1 + strlen(type) + 1;
518 xendev = kzalloc(sizeof(*xendev) + stringlen, GFP_KERNEL);
522 xendev->state = XenbusStateInitialising;
524 /* Copy the strings into the extra space. */
526 tmpstring = (char *)(xendev + 1);
527 strcpy(tmpstring, nodename);
528 xendev->nodename = tmpstring;
530 tmpstring += strlen(tmpstring) + 1;
531 strcpy(tmpstring, type);
532 xendev->devicetype = tmpstring;
533 init_completion(&xendev->down);
535 xendev->dev.bus = &bus->bus;
536 xendev->dev.release = xenbus_dev_release;
538 err = bus->get_bus_id(devname, xendev->nodename);
542 dev_set_name(&xendev->dev, "%s", devname);
543 sema_init(&xendev->reclaim_sem, 1);
545 /* Register with generic device framework. */
546 err = device_register(&xendev->dev);
548 put_device(&xendev->dev);
558 EXPORT_SYMBOL_GPL(xenbus_probe_node);
560 static int xenbus_probe_device_type(struct xen_bus_type *bus, const char *type)
564 unsigned int dir_n = 0;
567 dir = xenbus_directory(XBT_NIL, bus->root, type, &dir_n);
571 for (i = 0; i < dir_n; i++) {
572 err = bus->probe(bus, type, dir[i]);
581 int xenbus_probe_devices(struct xen_bus_type *bus)
585 unsigned int i, dir_n;
587 dir = xenbus_directory(XBT_NIL, bus->root, "", &dir_n);
591 for (i = 0; i < dir_n; i++) {
592 err = xenbus_probe_device_type(bus, dir[i]);
600 EXPORT_SYMBOL_GPL(xenbus_probe_devices);
602 static unsigned int char_count(const char *str, char c)
604 unsigned int i, ret = 0;
606 for (i = 0; str[i]; i++)
612 static int strsep_len(const char *str, char c, unsigned int len)
616 for (i = 0; str[i]; i++)
622 return (len == 0) ? i : -ERANGE;
625 void xenbus_dev_changed(const char *node, struct xen_bus_type *bus)
628 struct xenbus_device *dev;
629 char type[XEN_BUS_ID_SIZE];
630 const char *p, *root;
632 if (char_count(node, '/') < 2)
635 exists = xenbus_exists(XBT_NIL, node, "");
637 xenbus_cleanup_devices(node, &bus->bus);
641 /* backend/<type>/... or device/<type>/... */
642 p = strchr(node, '/') + 1;
643 snprintf(type, XEN_BUS_ID_SIZE, "%.*s", (int)strcspn(p, "/"), p);
644 type[XEN_BUS_ID_SIZE-1] = '\0';
646 rootlen = strsep_len(node, '/', bus->levels);
649 root = kasprintf(GFP_KERNEL, "%.*s", rootlen, node);
653 dev = xenbus_device_find(root, &bus->bus);
655 xenbus_probe_node(bus, type, root);
657 put_device(&dev->dev);
661 EXPORT_SYMBOL_GPL(xenbus_dev_changed);
663 int xenbus_dev_suspend(struct device *dev)
666 struct xenbus_driver *drv;
667 struct xenbus_device *xdev
668 = container_of(dev, struct xenbus_device, dev);
670 DPRINTK("%s", xdev->nodename);
672 if (dev->driver == NULL)
674 drv = to_xenbus_driver(dev->driver);
676 err = drv->suspend(xdev);
678 dev_warn(dev, "suspend failed: %i\n", err);
681 EXPORT_SYMBOL_GPL(xenbus_dev_suspend);
683 int xenbus_dev_resume(struct device *dev)
686 struct xenbus_driver *drv;
687 struct xenbus_device *xdev
688 = container_of(dev, struct xenbus_device, dev);
690 DPRINTK("%s", xdev->nodename);
692 if (dev->driver == NULL)
694 drv = to_xenbus_driver(dev->driver);
695 err = talk_to_otherend(xdev);
697 dev_warn(dev, "resume (talk_to_otherend) failed: %i\n", err);
701 xdev->state = XenbusStateInitialising;
704 err = drv->resume(xdev);
706 dev_warn(dev, "resume failed: %i\n", err);
711 err = watch_otherend(xdev);
713 dev_warn(dev, "resume (watch_otherend) failed: %d\n", err);
719 EXPORT_SYMBOL_GPL(xenbus_dev_resume);
721 int xenbus_dev_cancel(struct device *dev)
727 EXPORT_SYMBOL_GPL(xenbus_dev_cancel);
729 /* A flag to determine if xenstored is 'ready' (i.e. has started) */
733 int register_xenstore_notifier(struct notifier_block *nb)
737 if (xenstored_ready > 0)
738 ret = nb->notifier_call(nb, 0, NULL);
740 blocking_notifier_chain_register(&xenstore_chain, nb);
744 EXPORT_SYMBOL_GPL(register_xenstore_notifier);
746 void unregister_xenstore_notifier(struct notifier_block *nb)
748 blocking_notifier_chain_unregister(&xenstore_chain, nb);
750 EXPORT_SYMBOL_GPL(unregister_xenstore_notifier);
752 static void xenbus_probe(void)
757 * In the HVM case, xenbus_init() deferred its call to
758 * xs_init() in case callbacks were not operational yet.
761 if (xen_store_domain_type == XS_HVM)
764 /* Notify others that xenstore is up */
765 blocking_notifier_call_chain(&xenstore_chain, 0, NULL);
769 * Returns true when XenStore init must be deferred in order to
770 * allow the PCI platform device to be initialised, before we
771 * can actually have event channel interrupts working.
773 static bool xs_hvm_defer_init_for_callback(void)
775 #ifdef CONFIG_XEN_PVHVM
776 return xen_store_domain_type == XS_HVM &&
777 !xen_have_vector_callback;
783 static int xenbus_probe_thread(void *unused)
788 * We actually just want to wait for *any* trigger of xb_waitq,
789 * and run xenbus_probe() the moment it occurs.
791 prepare_to_wait(&xb_waitq, &w, TASK_INTERRUPTIBLE);
793 finish_wait(&xb_waitq, &w);
800 static int __init xenbus_probe_initcall(void)
803 * Probe XenBus here in the XS_PV case, and also XS_HVM unless we
804 * need to wait for the platform PCI device to come up.
806 if (xen_store_domain_type == XS_PV ||
807 (xen_store_domain_type == XS_HVM &&
808 !xs_hvm_defer_init_for_callback()))
812 * For XS_LOCAL, spawn a thread which will wait for xenstored
813 * or a xenstore-stubdom to be started, then probe. It will be
814 * triggered when communication starts happening, by waiting
817 if (xen_store_domain_type == XS_LOCAL) {
818 struct task_struct *probe_task;
820 probe_task = kthread_run(xenbus_probe_thread, NULL,
822 if (IS_ERR(probe_task))
823 return PTR_ERR(probe_task);
827 device_initcall(xenbus_probe_initcall);
829 int xen_set_callback_via(uint64_t via)
831 struct xen_hvm_param a;
834 a.domid = DOMID_SELF;
835 a.index = HVM_PARAM_CALLBACK_IRQ;
838 ret = HYPERVISOR_hvm_op(HVMOP_set_param, &a);
843 * If xenbus_probe_initcall() deferred the xenbus_probe()
844 * due to the callback not functioning yet, we can do it now.
846 if (!xenstored_ready && xs_hvm_defer_init_for_callback())
851 EXPORT_SYMBOL_GPL(xen_set_callback_via);
853 /* Set up event channel for xenstored which is run as a local process
854 * (this is normally used only in dom0)
856 static int __init xenstored_local_init(void)
859 unsigned long page = 0;
860 struct evtchn_alloc_unbound alloc_unbound;
862 /* Allocate Xenstore page */
863 page = get_zeroed_page(GFP_KERNEL);
867 xen_store_gfn = virt_to_gfn((void *)page);
869 /* Next allocate a local port which xenstored can bind to */
870 alloc_unbound.dom = DOMID_SELF;
871 alloc_unbound.remote_dom = DOMID_SELF;
873 err = HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound,
879 xen_store_evtchn = alloc_unbound.port;
889 static int xenbus_resume_cb(struct notifier_block *nb,
890 unsigned long action, void *data)
894 if (xen_hvm_domain()) {
897 err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v);
899 xen_store_evtchn = v;
901 pr_warn("Cannot update xenstore event channel: %d\n",
904 xen_store_evtchn = xen_start_info->store_evtchn;
909 static struct notifier_block xenbus_resume_nb = {
910 .notifier_call = xenbus_resume_cb,
913 static int __init xenbus_init(void)
917 xen_store_domain_type = XS_UNKNOWN;
922 xenbus_ring_ops_init();
925 xen_store_domain_type = XS_PV;
926 if (xen_hvm_domain())
927 xen_store_domain_type = XS_HVM;
928 if (xen_hvm_domain() && xen_initial_domain())
929 xen_store_domain_type = XS_LOCAL;
930 if (xen_pv_domain() && !xen_start_info->store_evtchn)
931 xen_store_domain_type = XS_LOCAL;
932 if (xen_pv_domain() && xen_start_info->store_evtchn)
935 switch (xen_store_domain_type) {
937 err = xenstored_local_init();
940 xen_store_interface = gfn_to_virt(xen_store_gfn);
943 xen_store_evtchn = xen_start_info->store_evtchn;
944 xen_store_gfn = xen_start_info->store_mfn;
945 xen_store_interface = gfn_to_virt(xen_store_gfn);
948 err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v);
951 xen_store_evtchn = (int)v;
952 err = hvm_get_parameter(HVM_PARAM_STORE_PFN, &v);
955 xen_store_gfn = (unsigned long)v;
956 xen_store_interface =
957 xen_remap(xen_store_gfn << XEN_PAGE_SHIFT,
961 pr_warn("Xenstore state unknown\n");
966 * HVM domains may not have a functional callback yet. In that
967 * case let xs_init() be called from xenbus_probe(), which will
968 * get invoked at an appropriate time.
970 if (xen_store_domain_type != XS_HVM) {
973 pr_warn("Error initializing xenstore comms: %i\n", err);
978 if ((xen_store_domain_type != XS_LOCAL) &&
979 (xen_store_domain_type != XS_UNKNOWN))
980 xen_resume_notifier_register(&xenbus_resume_nb);
982 #ifdef CONFIG_XEN_COMPAT_XENFS
984 * Create xenfs mountpoint in /proc for compatibility with
985 * utilities that expect to find "xenbus" under "/proc/xen".
987 proc_create_mount_point("xen");
994 postcore_initcall(xenbus_init);
996 MODULE_LICENSE("GPL");