diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-23 12:04:01 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-23 12:04:01 -0700 |
commit | 01e7ae8c13bb06a2ce622ebace33bb7e28ef596c (patch) | |
tree | 3dcaf08b5268e1602c6e6bc85870ebbc2f927856 /include | |
parent | 117636092a87a28a013a4acb5de5492645ed620f (diff) | |
parent | 22150c4f0f02619c256f35db2f1ec912549b4ca5 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs:
9p: v9fs_vfs_rename incorrect clunk order
9p: fix memleak in fs/9p/v9fs.c
9p: add virtio transport
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/virtio_9p.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/virtio_9p.h b/include/linux/virtio_9p.h new file mode 100644 index 00000000000..8eff0b53910 --- /dev/null +++ b/include/linux/virtio_9p.h @@ -0,0 +1,10 @@ +#ifndef _LINUX_VIRTIO_9P_H +#define _LINUX_VIRTIO_9P_H +#include <linux/virtio_config.h> + +/* The ID for virtio console */ +#define VIRTIO_ID_9P 9 +/* Maximum number of virtio channels per partition (1 for now) */ +#define MAX_9P_CHAN 1 + +#endif /* _LINUX_VIRTIO_9P_H */ |