diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-23 15:04:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-23 15:04:01 -0400 |
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 000000000000..8eff0b53910b --- /dev/null +++ b/include/linux/virtio_9p.h | |||
@@ -0,0 +1,10 @@ | |||
1 | #ifndef _LINUX_VIRTIO_9P_H | ||
2 | #define _LINUX_VIRTIO_9P_H | ||
3 | #include <linux/virtio_config.h> | ||
4 | |||
5 | /* The ID for virtio console */ | ||
6 | #define VIRTIO_ID_9P 9 | ||
7 | /* Maximum number of virtio channels per partition (1 for now) */ | ||
8 | #define MAX_9P_CHAN 1 | ||
9 | |||
10 | #endif /* _LINUX_VIRTIO_9P_H */ | ||