Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5d58bec5 authored by Eric Van Hensbergen's avatar Eric Van Hensbergen Committed by Linus Torvalds
Browse files

[PATCH] v9fs: Fix support for special files (devices, named pipes, etc.)



Fix v9fs special files (block, char devices) support.

Signed-off-by: default avatarLatchesar Ionkov <lucho@ionkov.net>
Signed-off-by: default avatarEric Van Hensbergen <ericvh@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 73c592b9
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -250,6 +250,9 @@ struct inode *v9fs_get_inode(struct super_block *sb, int mode)
		case S_IFBLK:
		case S_IFBLK:
		case S_IFCHR:
		case S_IFCHR:
		case S_IFSOCK:
		case S_IFSOCK:
			init_special_inode(inode, inode->i_mode,
					   inode->i_rdev);
			break;
		case S_IFREG:
		case S_IFREG:
			inode->i_op = &v9fs_file_inode_operations;
			inode->i_op = &v9fs_file_inode_operations;
			inode->i_fop = &v9fs_file_operations;
			inode->i_fop = &v9fs_file_operations;