diff options
Diffstat (limited to 'fs/isofs/inode.c')
-rw-r--r-- | fs/isofs/inode.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c index 70adbb98bad1..17268da63a49 100644 --- a/fs/isofs/inode.c +++ b/fs/isofs/inode.c | |||
@@ -1399,10 +1399,11 @@ struct inode *isofs_iget(struct super_block *sb, | |||
1399 | return inode; | 1399 | return inode; |
1400 | } | 1400 | } |
1401 | 1401 | ||
1402 | static struct super_block *isofs_get_sb(struct file_system_type *fs_type, | 1402 | static int isofs_get_sb(struct file_system_type *fs_type, |
1403 | int flags, const char *dev_name, void *data) | 1403 | int flags, const char *dev_name, void *data, struct vfsmount *mnt) |
1404 | { | 1404 | { |
1405 | return get_sb_bdev(fs_type, flags, dev_name, data, isofs_fill_super); | 1405 | return get_sb_bdev(fs_type, flags, dev_name, data, isofs_fill_super, |
1406 | mnt); | ||
1406 | } | 1407 | } |
1407 | 1408 | ||
1408 | static struct file_system_type iso9660_fs_type = { | 1409 | static struct file_system_type iso9660_fs_type = { |