You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

xenbus.h 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. FILE_LICENCE ( MIT );
  29. /*
  30. * The state of either end of the Xenbus, i.e. the current communication
  31. * status of initialisation across the bus. States here imply nothing about
  32. * the state of the connection between the driver and the kernel's device
  33. * layers.
  34. */
  35. enum xenbus_state {
  36. XenbusStateUnknown = 0,
  37. XenbusStateInitialising = 1,
  38. /*
  39. * InitWait: Finished early initialisation but waiting for information
  40. * from the peer or hotplug scripts.
  41. */
  42. XenbusStateInitWait = 2,
  43. /*
  44. * Initialised: Waiting for a connection from the peer.
  45. */
  46. XenbusStateInitialised = 3,
  47. XenbusStateConnected = 4,
  48. /*
  49. * Closing: The device is being closed due to an error or an unplug event.
  50. */
  51. XenbusStateClosing = 5,
  52. XenbusStateClosed = 6,
  53. /*
  54. * Reconfiguring: The device is being reconfigured.
  55. */
  56. XenbusStateReconfiguring = 7,
  57. XenbusStateReconfigured = 8
  58. };
  59. typedef enum xenbus_state XenbusState;
  60. #endif /* _XEN_PUBLIC_IO_XENBUS_H */
  61. /*
  62. * Local variables:
  63. * mode: C
  64. * c-file-style: "BSD"
  65. * c-basic-offset: 4
  66. * tab-width: 4
  67. * indent-tabs-mode: nil
  68. * End:
  69. */