diff options
-rw-r--r-- | fs/hostfs/hostfs_kern.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c index 92b008f564a4..8163aac81c21 100644 --- a/fs/hostfs/hostfs_kern.c +++ b/fs/hostfs/hostfs_kern.c | |||
@@ -534,11 +534,13 @@ static int read_name(struct inode *ino, char *name) | |||
534 | init_special_inode(ino, st.mode & S_IFMT, rdev); | 534 | init_special_inode(ino, st.mode & S_IFMT, rdev); |
535 | ino->i_op = &hostfs_iops; | 535 | ino->i_op = &hostfs_iops; |
536 | break; | 536 | break; |
537 | 537 | case S_IFREG: | |
538 | default: | ||
539 | ino->i_op = &hostfs_iops; | 538 | ino->i_op = &hostfs_iops; |
540 | ino->i_fop = &hostfs_file_fops; | 539 | ino->i_fop = &hostfs_file_fops; |
541 | ino->i_mapping->a_ops = &hostfs_aops; | 540 | ino->i_mapping->a_ops = &hostfs_aops; |
541 | break; | ||
542 | default: | ||
543 | return -EIO; | ||
542 | } | 544 | } |
543 | 545 | ||
544 | ino->i_ino = st.ino; | 546 | ino->i_ino = st.ino; |