From: Zhen Lei <thunder.leizhen@huawei.com> To: Justin Sanders <justin@coraid.com>, Jens Axboe <axboe@kernel.dk>, linux-block <linux-block@vger.kernel.org> Cc: Zhen Lei <thunder.leizhen@huawei.com> Subject: [PATCH 1/1] aoe: remove unnecessary oom message Date: Wed, 9 Jun 2021 20:11:25 +0800 [thread overview] Message-ID: <20210609121125.13883-1-thunder.leizhen@huawei.com> (raw) Fixes scripts/checkpatch.pl warning: WARNING: Possible unnecessary 'out of memory' message Remove it can help us save a bit of memory. Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com> --- drivers/block/aoe/aoechr.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/block/aoe/aoechr.c b/drivers/block/aoe/aoechr.c index ab41be625a53..8eea2529da20 100644 --- a/drivers/block/aoe/aoechr.c +++ b/drivers/block/aoe/aoechr.c @@ -140,10 +140,8 @@ bail: spin_unlock_irqrestore(&emsgs_lock, flags); } mp = kmemdup(msg, n, GFP_ATOMIC); - if (mp == NULL) { - printk(KERN_ERR "aoe: allocation failure, len=%ld\n", n); + if (!mp) goto bail; - } em->msg = mp; em->flags |= EMFL_VALID; -- 2.25.1
next reply other threads:[~2021-06-09 12:11 UTC|newest] Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-06-09 12:11 Zhen Lei [this message] 2021-06-09 15:42 ` Jens Axboe
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=20210609121125.13883-1-thunder.leizhen@huawei.com \ --to=thunder.leizhen@huawei.com \ --cc=axboe@kernel.dk \ --cc=justin@coraid.com \ --cc=linux-block@vger.kernel.org \ --subject='Re: [PATCH 1/1] aoe: remove unnecessary oom message' \ /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
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).