• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
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/types.h>
6#include <linux/virtio_ids.h>
7#include <linux/virtio_config.h>
8#include <linux/types.h>
9
10/* The feature bitmap for virtio 9P */
11
12/* The mount point is specified in a config variable */
13#define VIRTIO_9P_MOUNT_TAG 0
14
15struct virtio_9p_config {
16	/* length of the tag name */
17	__u16 tag_len;
18	/* non-NULL terminated tag name */
19	__u8 tag[0];
20} __attribute__((packed));
21
22#endif /* _LINUX_VIRTIO_9P_H */
23