Loading fs/fuse/fuse_i.h +2 −6 Original line number Diff line number Diff line Loading @@ -818,9 +818,7 @@ static inline struct fuse_mount *get_fuse_mount_super(struct super_block *sb) static inline struct fuse_conn *get_fuse_conn_super(struct super_block *sb) { struct fuse_mount *fm = get_fuse_mount_super(sb); return fm ? fm->fc : NULL; return get_fuse_mount_super(sb)->fc; } static inline struct fuse_mount *get_fuse_mount(struct inode *inode) Loading @@ -830,9 +828,7 @@ static inline struct fuse_mount *get_fuse_mount(struct inode *inode) static inline struct fuse_conn *get_fuse_conn(struct inode *inode) { struct fuse_mount *fm = get_fuse_mount(inode); return fm ? fm->fc : NULL; return get_fuse_mount_super(inode->i_sb)->fc; } static inline struct fuse_inode *get_fuse_inode(struct inode *inode) Loading Loading
fs/fuse/fuse_i.h +2 −6 Original line number Diff line number Diff line Loading @@ -818,9 +818,7 @@ static inline struct fuse_mount *get_fuse_mount_super(struct super_block *sb) static inline struct fuse_conn *get_fuse_conn_super(struct super_block *sb) { struct fuse_mount *fm = get_fuse_mount_super(sb); return fm ? fm->fc : NULL; return get_fuse_mount_super(sb)->fc; } static inline struct fuse_mount *get_fuse_mount(struct inode *inode) Loading @@ -830,9 +828,7 @@ static inline struct fuse_mount *get_fuse_mount(struct inode *inode) static inline struct fuse_conn *get_fuse_conn(struct inode *inode) { struct fuse_mount *fm = get_fuse_mount(inode); return fm ? fm->fc : NULL; return get_fuse_mount_super(inode->i_sb)->fc; } static inline struct fuse_inode *get_fuse_inode(struct inode *inode) Loading