From: Gunasundar, Balamanikandan (B.) Date: Tue, 12 May 2015 10:35:52 +0000 (+0000) Subject: Staging: lustre: Replace kzalloc and memcpy by kmemdup X-Git-Tag: firefly_0821_release~176^2~1545^2~573 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=58973deb5b831eafa3eb04efe8ed85dbfe52aa18;p=firefly-linux-kernel-4.4.55.git Staging: lustre: Replace kzalloc and memcpy by kmemdup This patch was generated by 'make coccicheck' Signed-off-by: Balamanikandan Gunasundar Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c b/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c index 57c6ddd95f3e..c988be4fc049 100644 --- a/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c +++ b/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c @@ -1711,13 +1711,12 @@ int lprocfs_exp_setup(struct obd_export *exp, lnet_nid_t *nid, int *newnid) goto destroy_new; } /* not found - create */ - buffer = kzalloc(LNET_NIDSTR_SIZE, GFP_NOFS); + buffer = kmemdup(libcfs_nid2str(*nid), LNET_NIDSTR_SIZE, GFP_NOFS); if (buffer == NULL) { rc = -ENOMEM; goto destroy_new; } - memcpy(buffer, libcfs_nid2str(*nid), LNET_NIDSTR_SIZE); new_stat->nid_proc = lprocfs_register(buffer, obd->obd_proc_exports_entry, NULL, NULL);