X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=fs%2Fsquashfs%2Fsuper.c;h=24de30ba34c18ba4b194ff030a4ec591f25aa75d;hb=706d4b12f8d7edd28d7e879a77235472da393edb;hp=07a4f115604850d77191baed3a7fd96c7d161661;hpb=c3d9d74336c10c133ed062a1d778d457c6a46422;p=~andy%2Flinux diff --git a/fs/squashfs/super.c b/fs/squashfs/super.c index 07a4f115604..24de30ba34c 100644 --- a/fs/squashfs/super.c +++ b/fs/squashfs/super.c @@ -370,12 +370,10 @@ static void squashfs_put_super(struct super_block *sb) } -static int squashfs_get_sb(struct file_system_type *fs_type, int flags, - const char *dev_name, void *data, - struct vfsmount *mnt) +static struct dentry *squashfs_mount(struct file_system_type *fs_type, int flags, + const char *dev_name, void *data) { - return get_sb_bdev(fs_type, flags, dev_name, data, squashfs_fill_super, - mnt); + return mount_bdev(fs_type, flags, dev_name, data, squashfs_fill_super); } @@ -451,7 +449,7 @@ static void squashfs_destroy_inode(struct inode *inode) static struct file_system_type squashfs_fs_type = { .owner = THIS_MODULE, .name = "squashfs", - .get_sb = squashfs_get_sb, + .mount = squashfs_mount, .kill_sb = kill_block_super, .fs_flags = FS_REQUIRES_DEV };