From: Joe Perches <joe@perches.com>
To: Ray Zhang <sgzhang@google.com>,
Miquel Raynal <miquel.raynal@bootlin.com>,
Richard Weinberger <richard@nod.at>,
Vignesh Raghavendra <vigneshr@ti.com>
Cc: linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 1/3] mtd: mtdoops: change printk() to counterpart pr_ functions
Date: Fri, 07 Oct 2022 00:09:26 -0700 [thread overview]
Message-ID: <070d253e718c1a6d72fb52c1d2f02ec461d825a1.camel@perches.com> (raw)
In-Reply-To: <20221007065042.700761-2-sgzhang@google.com>
On Fri, 2022-10-07 at 06:50 +0000, Ray Zhang wrote:
> To comply with latest kernel code requirement, change printk() to
> counterpart pr_ functions in mtdoops driver:
> - change printk(INFO) to pr_info()
> - change printk(DEBUG) to pr_debug()
There is a different behavior with printk(KERN_DEBUG to pr_debug(
as pr_debug is a no-op unless dynamic debugging is enabled or
DEBUG is defined.
And even with dynamic_debug, the output is default disabled unless
DEBUG is defined.
As is, printk(KERN_DEBUG is emitted unless the console level is low.
> diff --git a/drivers/mtd/mtdoops.c b/drivers/mtd/mtdoops.c
[]
> @@ -120,8 +120,8 @@ static void mtdoops_inc_counter(struct mtdoops_context *cxt)
> return;
> }
>
> - printk(KERN_DEBUG "mtdoops: ready %d, %d (no erase)\n",
> - cxt->nextpage, cxt->nextcount);
> + pr_debug("mtdoops: ready %d, %d (no erase)\n",
> + cxt->nextpage, cxt->nextcount);
> }
etc...
next prev parent reply other threads:[~2022-10-07 7:09 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-07 6:50 [PATCH v2 0/3] mtd: mtdoops: use pr_ functions, add and direct call mtdoops_erase function when panic Ray Zhang
2022-10-07 6:50 ` [PATCH v2 1/3] mtd: mtdoops: change printk() to counterpart pr_ functions Ray Zhang
2022-10-07 7:09 ` Joe Perches [this message]
2022-10-07 7:52 ` Miquel Raynal
2022-10-07 15:43 ` Joe Perches
2022-10-07 6:50 ` [PATCH v2 2/3] mtd: mtdoops: add mtdoops_erase function and move mtdoops_inc_counter to after it Ray Zhang
2022-10-07 6:50 ` [PATCH v2 3/3] mtd: mtdoops: panic caused mtdoops to call mtdoops_erase function immediately Ray Zhang
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=070d253e718c1a6d72fb52c1d2f02ec461d825a1.camel@perches.com \
--to=joe@perches.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=miquel.raynal@bootlin.com \
--cc=richard@nod.at \
--cc=sgzhang@google.com \
--cc=vigneshr@ti.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®