diff options
author | Thomas Meyer <thomas@m3y3r.de> | 2011-11-17 23:43:40 +0100 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2011-11-26 00:44:22 +0100 |
commit | 67114fe6103183190fb0a24f58e5695a80beb2ec (patch) | |
tree | 65696c5d33a37acf7af71a5fd6bab0f9c0c155fe /fs/nfsd/nfs4xdr.c | |
parent | nfsd4: add a separate (lockowner, inode) lookup (diff) | |
download | linux-67114fe6103183190fb0a24f58e5695a80beb2ec.tar.xz linux-67114fe6103183190fb0a24f58e5695a80beb2ec.zip |
nfsd4: Use kmemdup rather than duplicating its implementation
The semantic patch that makes this change is available
in scripts/coccinelle/api/memdup.cocci.
Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | fs/nfsd/nfs4xdr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index b6fa792d6b85..0ec5a1b9700e 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c @@ -215,10 +215,9 @@ defer_free(struct nfsd4_compoundargs *argp, static char *savemem(struct nfsd4_compoundargs *argp, __be32 *p, int nbytes) { if (p == argp->tmp) { - p = kmalloc(nbytes, GFP_KERNEL); + p = kmemdup(argp->tmp, nbytes, GFP_KERNEL); if (!p) return NULL; - memcpy(p, argp->tmp, nbytes); } else { BUG_ON(p != argp->tmpp); argp->tmpp = NULL; |