aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p
diff options
context:
space:
mode:
authorEric Van Hensbergen <ericvh@gmail.com>2005-09-09 16:04:27 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-09-09 16:57:58 -0400
commit5d58bec5b7a8b8303df0a4dcb9a18feeefac6091 (patch)
tree3c00e676ce6c33fb736eaaa58f6defd1b39e9709 /fs/9p
parent73c592b9b844cc353bbaea690fb4aa652ac168a6 (diff)
[PATCH] v9fs: Fix support for special files (devices, named pipes, etc.)
Fix v9fs special files (block, char devices) support. Signed-off-by: Latchesar Ionkov <lucho@ionkov.net> Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/9p')
-rw-r--r--fs/9p/vfs_inode.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c
index 6d2357d1dacd..36fff087167f 100644
--- a/fs/9p/vfs_inode.c
+++ b/fs/9p/vfs_inode.c
@@ -250,6 +250,9 @@ struct inode *v9fs_get_inode(struct super_block *sb, int mode)
250 case S_IFBLK: 250 case S_IFBLK:
251 case S_IFCHR: 251 case S_IFCHR:
252 case S_IFSOCK: 252 case S_IFSOCK:
253 init_special_inode(inode, inode->i_mode,
254 inode->i_rdev);
255 break;
253 case S_IFREG: 256 case S_IFREG:
254 inode->i_op = &v9fs_file_inode_operations; 257 inode->i_op = &v9fs_file_inode_operations;
255 inode->i_fop = &v9fs_file_operations; 258 inode->i_fop = &v9fs_file_operations;