1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*****************************************************************************
5 * Xenbus protocol details.
7 * Copyright (C) 2005 XenSource Ltd.
10 #ifndef _XEN_PUBLIC_IO_XENBUS_H
11 #define _XEN_PUBLIC_IO_XENBUS_H
13 /* The state of either end of the Xenbus, i.e. the current communication
14 status of initialisation across the bus. States here imply nothing about
15 the state of the connection between the driver and the kernel's device
19 XenbusStateUnknown
= 0,
20 XenbusStateInitialising
= 1,
21 XenbusStateInitWait
= 2, /* Finished early
22 initialisation, but waiting
23 for information from the peer
24 or hotplug scripts. */
25 XenbusStateInitialised
= 3, /* Initialised and waiting for a
26 connection from the peer. */
27 XenbusStateConnected
= 4,
28 XenbusStateClosing
= 5, /* The device is being closed
29 due to an error or an unplug
31 XenbusStateClosed
= 6,
34 * Reconfiguring: The device is being reconfigured.
36 XenbusStateReconfiguring
= 7,
38 XenbusStateReconfigured
= 8
41 #endif /* _XEN_PUBLIC_IO_XENBUS_H */
45 * c-file-style: "linux"