xenbus.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*****************************************************************************
  2. * xenbus.h
  3. *
  4. * Xenbus protocol details.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to
  8. * deal in the Software without restriction, including without limitation the
  9. * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  10. * sell copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  21. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  22. * DEALINGS IN THE SOFTWARE.
  23. *
  24. * Copyright (C) 2005 XenSource Ltd.
  25. */
  26. #ifndef _XEN_PUBLIC_IO_XENBUS_H
  27. #define _XEN_PUBLIC_IO_XENBUS_H
  28. /*
  29. * The state of either end of the Xenbus, i.e. the current communication
  30. * status of initialisation across the bus. States here imply nothing about
  31. * the state of the connection between the driver and the kernel's device
  32. * layers.
  33. */
  34. enum xenbus_state {
  35. XenbusStateUnknown = 0,
  36. XenbusStateInitialising = 1,
  37. /*
  38. * InitWait: Finished early initialisation but waiting for information
  39. * from the peer or hotplug scripts.
  40. */
  41. XenbusStateInitWait = 2,
  42. /*
  43. * Initialised: Waiting for a connection from the peer.
  44. */
  45. XenbusStateInitialised = 3,
  46. XenbusStateConnected = 4,
  47. /*
  48. * Closing: The device is being closed due to an error or an unplug event.
  49. */
  50. XenbusStateClosing = 5,
  51. XenbusStateClosed = 6,
  52. /*
  53. * Reconfiguring: The device is being reconfigured.
  54. */
  55. XenbusStateReconfiguring = 7,
  56. XenbusStateReconfigured = 8
  57. };
  58. typedef enum xenbus_state XenbusState;
  59. #endif /* _XEN_PUBLIC_IO_XENBUS_H */
  60. /*
  61. * Local variables:
  62. * mode: C
  63. * c-file-style: "BSD"
  64. * c-basic-offset: 4
  65. * tab-width: 4
  66. * indent-tabs-mode: nil
  67. * End:
  68. */