Kfree can cope with a null argument, so drop null tests.
The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)
// <smpl>
@@ expression ptr; @@
- if (ptr != NULL)
  kfree(ptr);
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
                lmv->tgts = newtgts;
                lmv->tgts_size = newsize;
                smp_rmb();
-               if (old)
-                       kfree(old);
+               kfree(old);
 
                CDEBUG(D_CONFIG, "tgts: %p size: %d\n", lmv->tgts,
                       lmv->tgts_size);
        goto repeat_fid2path;
 
 out_fid2path:
-       if (remote_gf != NULL)
-               kfree(remote_gf);
+       kfree(remote_gf);
        return rc;
 }