9pfs.h 426 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: MIT */
  2. /*
  3. * 9pfs.h -- Xen 9PFS transport
  4. *
  5. * Copyright (C) 2017 Stefano Stabellini <[email protected]>
  6. */
  7. #ifndef __XEN_PUBLIC_IO_9PFS_H__
  8. #define __XEN_PUBLIC_IO_9PFS_H__
  9. #include "xen/interface/io/ring.h"
  10. /*
  11. * See docs/misc/9pfs.markdown in xen.git for the full specification:
  12. * https://xenbits.xen.org/docs/unstable/misc/9pfs.html
  13. */
  14. DEFINE_XEN_FLEX_RING_AND_INTF(xen_9pfs);
  15. #endif