mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Jessica Yu <jeyu@kernel.org>
To: zhong jiang <zhongjiang@huawei.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] kernel/module: Use kmemdup to replace kmalloc+memcpy
Date: Thu, 2 Aug 2018 18:17:58 +0200	[thread overview]
Message-ID: <20180802161758.meijhtmvdhz4qfup@linux-8ccs> (raw)
In-Reply-To: <1533056177-37255-1-git-send-email-zhongjiang@huawei.com>

+++ zhong jiang [01/08/18 00:56 +0800]:
>we prefer to the kmemdup rather than kmalloc+memcpy. so just
>replace them.
>
>Signed-off-by: zhong jiang <zhongjiang@huawei.com>

Applied, thanks.

Jessica

>---
> kernel/module.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
>diff --git a/kernel/module.c b/kernel/module.c
>index 20344e4..6746c85 100644
>--- a/kernel/module.c
>+++ b/kernel/module.c
>@@ -2057,21 +2057,19 @@ static int copy_module_elf(struct module *mod, struct load_info *info)
>
> 	/* Elf section header table */
> 	size = sizeof(*info->sechdrs) * info->hdr->e_shnum;
>-	mod->klp_info->sechdrs = kmalloc(size, GFP_KERNEL);
>+	mod->klp_info->sechdrs = kmemdup(info->sechdrs, size, GFP_KERNEL);
> 	if (mod->klp_info->sechdrs == NULL) {
> 		ret = -ENOMEM;
> 		goto free_info;
> 	}
>-	memcpy(mod->klp_info->sechdrs, info->sechdrs, size);
>
> 	/* Elf section name string table */
> 	size = info->sechdrs[info->hdr->e_shstrndx].sh_size;
>-	mod->klp_info->secstrings = kmalloc(size, GFP_KERNEL);
>+	mod->klp_info->secstrings = kmemdup(info->secstrings, size, GFP_KERNEL);
> 	if (mod->klp_info->secstrings == NULL) {
> 		ret = -ENOMEM;
> 		goto free_sechdrs;
> 	}
>-	memcpy(mod->klp_info->secstrings, info->secstrings, size);
>
> 	/* Elf symbol section index */
> 	symndx = info->index.sym;
>-- 
>1.7.12.4
>

      reply	other threads:[~2018-08-02 16:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-31 16:56 zhong jiang
2018-08-02 16:17 ` Jessica Yu [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180802161758.meijhtmvdhz4qfup@linux-8ccs \
    --to=jeyu@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=zhongjiang@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®