From: Richard Weinberger <richard@nod.at>
To: Fuqian Huang <huangfq.daxian@gmail.com>
Cc: David Woodhouse <dwmw2@infradead.org>,
linux-mtd <linux-mtd@lists.infradead.org>,
linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 44/87] fs: jffs2: replace kmalloc and memset with kzalloc
Date: Fri, 28 Jun 2019 08:56:40 +0200 (CEST) [thread overview]
Message-ID: <1264454795.19263.1561705000880.JavaMail.zimbra@nod.at> (raw)
In-Reply-To: <20190627174101.4291-1-huangfq.daxian@gmail.com>
----- Ursprüngliche Mail -----
> Von: "Fuqian Huang" <huangfq.daxian@gmail.com>
> CC: "Fuqian Huang" <huangfq.daxian@gmail.com>, "David Woodhouse" <dwmw2@infradead.org>, "richard" <richard@nod.at>,
> "linux-mtd" <linux-mtd@lists.infradead.org>, "linux-kernel" <linux-kernel@vger.kernel.org>
> Gesendet: Donnerstag, 27. Juni 2019 19:41:00
> Betreff: [PATCH 44/87] fs: jffs2: replace kmalloc and memset with kzalloc
> kmalloc + memset(0) -> kzalloc
>
> Signed-off-by: Fuqian Huang <huangfq.daxian@gmail.com>
> ---
> fs/jffs2/erase.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
> index 83b8f06b4a64..30c4385c6545 100644
> --- a/fs/jffs2/erase.c
> +++ b/fs/jffs2/erase.c
> @@ -43,7 +43,7 @@ static void jffs2_erase_block(struct jffs2_sb_info *c,
> jffs2_dbg(1, "%s(): erase block %#08x (range %#08x-%#08x)\n",
> __func__,
> jeb->offset, jeb->offset, jeb->offset + c->sector_size);
> - instr = kmalloc(sizeof(struct erase_info), GFP_KERNEL);
> + instr = kzalloc(sizeof(struct erase_info), GFP_KERNEL);
> if (!instr) {
> pr_warn("kmalloc for struct erase_info in jffs2_erase_block failed. Refiling
> block for later\n");
You missed this "kmalloc" instance. :-D
> mutex_lock(&c->erase_free_sem);
> @@ -57,8 +57,6 @@ static void jffs2_erase_block(struct jffs2_sb_info *c,
> return;
> }
>
> - memset(instr, 0, sizeof(*instr));
> -
> instr->addr = jeb->offset;
> instr->len = c->sector_size;
Thanks,
//richard
prev parent reply other threads:[~2019-06-28 6:56 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-27 17:41 Fuqian Huang
2019-06-28 6:56 ` Richard Weinberger [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=1264454795.19263.1561705000880.JavaMail.zimbra@nod.at \
--to=richard@nod.at \
--cc=dwmw2@infradead.org \
--cc=huangfq.daxian@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
/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
Powered by JetHome