9p.h 402 B

123456789101112131415161718192021222324
  1. /*
  2. * Virtio 9p
  3. *
  4. * Copyright IBM, Corp. 2010
  5. *
  6. * Authors:
  7. * Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
  8. *
  9. * This work is licensed under the terms of the GNU GPL, version 2. See
  10. * the COPYING file in the top-level directory.
  11. *
  12. */
  13. #ifndef QEMU_9P_H
  14. #define QEMU_9P_H
  15. typedef struct V9fsConf
  16. {
  17. /* tag name for the device */
  18. char *tag;
  19. char *fsdev_id;
  20. } V9fsConf;
  21. #endif