瀏覽代碼

[GFS2] re-support special inode

a previous commit removed call to
init_special_inode from inode lookuping, this cause problems as:

 # mknod /mnt/gfs2/dev/null c 1 3
 # cat /mnt/gfs2/dev/null
 cat: /mnt/gfs2/dev/null: Invalid argument

without special inode, GFS2 cannot support char device file,
block device file, fifo pipe, and socket file, lose many important
features as a common file system.

this one line patch re add special inode support.

Signed-off-by: Denis Cheng <crquan@gmail.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Denis Cheng 17 年之前
父節點
當前提交
43a33c53cc
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      fs/gfs2/inode.c

+ 1 - 0
fs/gfs2/inode.c

@@ -150,6 +150,7 @@ void gfs2_set_iop(struct inode *inode)
 		inode->i_op = &gfs2_symlink_iops;
 		inode->i_op = &gfs2_symlink_iops;
 	} else {
 	} else {
 		inode->i_op = &gfs2_file_iops;
 		inode->i_op = &gfs2_file_iops;
+		init_special_inode(inode, inode->i_mode, inode->i_rdev);
 	}
 	}
 
 
 	unlock_new_inode(inode);
 	unlock_new_inode(inode);