[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <8A20D2B6-19FC-490B-AADF-D2B376E9E4E7@intel.com>
Date: Wed, 20 May 2015 07:54:16 +0000
From: "Drokin, Oleg" <oleg.drokin@...el.com>
To: "Dumbre, Nitesh Dilip (N.)" <ndumbre@...teon.com>
CC: "Dilger, Andreas" <andreas.dilger@...el.com>,
"gregkh@...uxfoundation.org" <gregkh@...uxfoundation.org>,
"Julia.Lawall@...6.fr" <Julia.Lawall@...6.fr>,
"joe@...ches.com" <joe@...ches.com>,
"gdonald@...il.com" <gdonald@...il.com>,
"akpm@...ux-foundation.org" <akpm@...ux-foundation.org>,
"rickard_strandqvist@...ctrumdigital.se"
<rickard_strandqvist@...ctrumdigital.se>,
"uja.ornl@...il.com" <uja.ornl@...il.com>,
"Hammond, John" <john.hammond@...el.com>,
"HPDD-discuss@...ts.01.org" <HPDD-discuss@...ts.01.org>,
"devel@...verdev.osuosl.org" <devel@...verdev.osuosl.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] staging: Replace kzalloc and memcpy by kmemdup
Thanks!
But rather than that, this whole function (lprocfs_exp_setup) needs to go, since it's not used by anything on the client.
The removal is sitting in my queue of "stop using procfs in lustre" patches that I am going to submit real soon now and this patch would just create
an unnecessary conflict.
On May 20, 2015, at 3:04 AM, Dumbre, Nitesh Dilip (N.) wrote:
> This patch was generated by coccicheck and replaces kzalloc followed
> by memcpy with kmemdup
>
> Signed-off-by: Nitesh Dumbre <ndumbre@...teon.com>
>
> diff --git a/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c b/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c
> index 57c6ddd..c988be4 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);
> --
> 1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists