]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
nfsd: create get_nfsdfs_clp helper
authorJ. Bruce Fields <bfields@redhat.com>
Wed, 19 Jun 2019 16:54:45 +0000 (12:54 -0400)
committerJ. Bruce Fields <bfields@redhat.com>
Wed, 3 Jul 2019 21:52:50 +0000 (17:52 -0400)
Factor our some common code.  No change in behavior.

Signed-off-by: J. Bruce Fields <bfields@redhat.com>
fs/nfsd/nfs4state.c

index e1936d3b7ece308fef354f3b39c868e4733e0ead..1e078fb8d6b56b03cd11a33ebba12f50c9913251 100644 (file)
@@ -2216,6 +2216,15 @@ find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
        return s;
 }
 
+static struct nfs4_client *get_nfsdfs_clp(struct inode *inode)
+{
+       struct nfsdfs_client *nc;
+       nc = get_nfsdfs_client(inode);
+       if (!nc)
+               return NULL;
+       return container_of(nc, struct nfs4_client, cl_nfsdfs);
+}
+
 static void seq_quote_mem(struct seq_file *m, char *data, int len)
 {
        seq_printf(m, "\"");
@@ -2226,14 +2235,12 @@ static void seq_quote_mem(struct seq_file *m, char *data, int len)
 static int client_info_show(struct seq_file *m, void *v)
 {
        struct inode *inode = m->private;
-       struct nfsdfs_client *nc;
        struct nfs4_client *clp;
        u64 clid;
 
-       nc = get_nfsdfs_client(inode);
-       if (!nc)
+       clp = get_nfsdfs_clp(inode);
+       if (!clp)
                return -ENXIO;
-       clp = container_of(nc, struct nfs4_client, cl_nfsdfs);
        memcpy(&clid, &clp->cl_clientid, sizeof(clid));
        seq_printf(m, "clientid: 0x%llx\n", clid);
        seq_printf(m, "address: \"%pISpc\"\n", (struct sockaddr *)&clp->cl_addr);
@@ -2444,15 +2451,13 @@ static struct seq_operations states_seq_ops = {
 
 static int client_states_open(struct inode *inode, struct file *file)
 {
-       struct nfsdfs_client *nc;
        struct seq_file *s;
        struct nfs4_client *clp;
        int ret;
 
-       nc = get_nfsdfs_client(inode);
-       if (!nc)
+       clp = get_nfsdfs_clp(inode);
+       if (!clp)
                return -ENXIO;
-       clp = container_of(nc, struct nfs4_client, cl_nfsdfs);
 
        ret = seq_open(file, &states_seq_ops);
        if (ret)