nfsd: drop useless LIST_HEAD
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sun, 23 Dec 2018 08:56:56 +0000 (09:56 +0100)
committerJ. Bruce Fields <bfields@redhat.com>
Fri, 28 Dec 2018 01:59:50 +0000 (20:59 -0500)
Drop LIST_HEAD where the variable it declares is never used.

This was introduced in c5c707f96fc9a ("nfsd: implement pNFS
layout recalls"), but was not used even in that commit.

The semantic patch that fixes this problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier x;
@@
- LIST_HEAD(x);
  ... when != x
// </smpl>

Fixes: c5c707f96fc9a ("nfsd: implement pNFS layout recalls")
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
fs/nfsd/nfs4layouts.c

index 2b36aa037ce03a70e598aea2e0f387168b3806e1..44517fb5c0dedaa284dcae4cd83ef38dab3518eb 100644 (file)
@@ -656,7 +656,6 @@ nfsd4_cb_layout_done(struct nfsd4_callback *cb, struct rpc_task *task)
        struct nfsd_net *nn;
        ktime_t now, cutoff;
        const struct nfsd4_layout_ops *ops;
-       LIST_HEAD(reaplist);
 
 
        switch (task->tk_status) {