Signed-off-by: Mark Fasheh <mfas...@suse.de>
---
 net/sunrpc/auth_gss/auth_gss.c | 4 ++--
 net/sunrpc/rpc_pipe.c          | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net/sunrpc/auth_gss/auth_gss.c b/net/sunrpc/auth_gss/auth_gss.c
index 9463af4b32e8..3560956424fe 100644
--- a/net/sunrpc/auth_gss/auth_gss.c
+++ b/net/sunrpc/auth_gss/auth_gss.c
@@ -769,7 +769,7 @@ gss_pipe_downcall(struct file *filp, const char __user 
*src, size_t mlen)
 
 static int gss_pipe_open(struct inode *inode, int new_version)
 {
-       struct net *net = inode->i_sb->s_fs_info;
+       struct net *net = inode_sb(inode)->s_fs_info;
        struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
        int ret = 0;
 
@@ -804,7 +804,7 @@ static int gss_pipe_open_v1(struct inode *inode)
 static void
 gss_pipe_release(struct inode *inode)
 {
-       struct net *net = inode->i_sb->s_fs_info;
+       struct net *net = inode_sb(inode)->s_fs_info;
        struct rpc_pipe *pipe = RPC_I(inode)->pipe;
        struct gss_upcall_msg *gss_msg;
 
diff --git a/net/sunrpc/rpc_pipe.c b/net/sunrpc/rpc_pipe.c
index fc97fc3ed637..c2851a1ee91c 100644
--- a/net/sunrpc/rpc_pipe.c
+++ b/net/sunrpc/rpc_pipe.c
@@ -497,10 +497,10 @@ static int __rpc_create_common(struct inode *dir, struct 
dentry *dentry,
        struct inode *inode;
 
        d_drop(dentry);
-       inode = rpc_get_inode(dir->i_sb, mode);
+       inode = rpc_get_inode(inode_sb(dir), mode);
        if (!inode)
                goto out_err;
-       inode->i_ino = iunique(dir->i_sb, 100);
+       inode->i_ino = iunique(inode_sb(dir), 100);
        if (i_fop)
                inode->i_fop = i_fop;
        if (private)
-- 
2.15.1

--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to