1 #ifndef _LINUX_VIRTIO_9P_H
2 #define _LINUX_VIRTIO_9P_H
3 /* This header is BSD licensed so anyone can use the definitions to implement
4 * compatible drivers/servers. */
5 #include <linux/virtio_ids.h>
6 #include <linux/virtio_config.h>
8 /* The feature bitmap for virtio 9P */
10 /* The mount point is specified in a config variable */
11 #define VIRTIO_9P_MOUNT_TAG 0
13 struct virtio_9p_config
{
14 /* length of the tag name */
16 /* non-NULL terminated tag name */
18 } __attribute__((packed
));
20 #endif /* _LINUX_VIRTIO_9P_H */