aboutsummaryrefslogtreecommitdiffstats
path: root/include/xen/interface
diff options
context:
space:
mode:
authorYosuke Iwamatsu <y-iwamatsu@ab.jp.nec.com>2009-10-13 17:22:27 -0400
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>2010-10-18 10:49:35 -0400
commit89afb6e46a0f72e0e5c51ef44aa900b74681664b (patch)
treefc7c62df2a0cbe81b8c68510b0add2d498f95c89 /include/xen/interface
parentxen/x86/PCI: Add support for the Xen PCI subsystem (diff)
downloadlinux-dev-89afb6e46a0f72e0e5c51ef44aa900b74681664b.tar.xz
linux-dev-89afb6e46a0f72e0e5c51ef44aa900b74681664b.zip
xenbus: Xen paravirtualised PCI hotplug support.
The Xen PCI front driver adds two new states that are utilizez for PCI hotplug support. This is a patch pulled from the linux-2.6-xen-sparse tree. Signed-off-by: Noboru Iwamatsu <n_iwamatsu@jp.fujitsu.com> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> Signed-off-by: Yosuke Iwamatsu <y-iwamatsu@ab.jp.nec.com>
Diffstat (limited to 'include/xen/interface')
-rw-r--r--include/xen/interface/io/xenbus.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/xen/interface/io/xenbus.h b/include/xen/interface/io/xenbus.h
index 46508c7fa399..9fda532973a5 100644
--- a/include/xen/interface/io/xenbus.h
+++ b/include/xen/interface/io/xenbus.h
@@ -27,8 +27,14 @@ enum xenbus_state
XenbusStateClosing = 5, /* The device is being closed
due to an error or an unplug
event. */
- XenbusStateClosed = 6
+ XenbusStateClosed = 6,
+ /*
+ * Reconfiguring: The device is being reconfigured.
+ */
+ XenbusStateReconfiguring = 7,
+
+ XenbusStateReconfigured = 8
};
#endif /* _XEN_PUBLIC_IO_XENBUS_H */