From: Frank Rowand <frowand.list@gmail.com>
To: Rob Herring <robh+dt@kernel.org>
Cc: Bartosz Golaszewski <brgl@bgdev.pl>,
Linus Walleij <linus.walleij@linaro.org>,
Kent Gibson <warthog618@gmail.com>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org,
Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Subject: Re: [PATCH] gpiolib: demote the hogging log messages to debug
Date: Tue, 13 Jun 2023 19:04:59 -0500 [thread overview]
Message-ID: <4566b922-c564-5847-facf-1a68ea6adcf4@gmail.com> (raw)
In-Reply-To: <CAL_JsqKDQy+tq7uDJ9impTr+uetkb7vz-K4BYX8bZBkpvZ=8uQ@mail.gmail.com>
On 6/12/23 10:42, Rob Herring wrote:
> On Sun, Jun 11, 2023 at 6:48 AM Frank Rowand <frowand.list@gmail.com> wrote:
>>
>> On 6/11/23 07:39, Frank Rowand wrote:
>>> On 6/9/23 08:47, Rob Herring wrote:
>>>> On Mon, Jun 5, 2023 at 6:53 AM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
>>>>>
>>>>> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>>>>>
>>>>> Drivers should be silent when they work correctly. There's no reason to
>>>>> emit info messages when GPIO lines are hogged. Demote the message to
>>>>> debug.
>>>>>
>>>>> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>>>>> Suggested-by: Kent Gibson <warthog618@gmail.com>
>>>>> ---
>>>>> drivers/gpio/gpiolib.c | 2 +-
>>>>> drivers/of/unittest.c | 16 ++++++++--------
>>>>> 2 files changed, 9 insertions(+), 9 deletions(-)
>>>>>
>>>>> diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
>>>>> index a7220e04a93e..e4515bda8915 100644
>>>>> --- a/drivers/gpio/gpiolib.c
>>>>> +++ b/drivers/gpio/gpiolib.c
>>>>> @@ -4243,7 +4243,7 @@ int gpiod_hog(struct gpio_desc *desc, const char *name,
>>>>> /* Mark GPIO as hogged so it can be identified and removed later */
>>>>> set_bit(FLAG_IS_HOGGED, &desc->flags);
>>>>>
>>>>> - gpiod_info(desc, "hogged as %s%s\n",
>>>>> + gpiod_dbg(desc, "hogged as %s%s\n",
>>>>> (dflags & GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
>>>>> (dflags & GPIOD_FLAGS_BIT_DIR_OUT) ?
>>>>> (dflags & GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low" : "");
>>>>> diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
>>>>> index 2191c0136531..0060334a98a7 100644
>>>>> --- a/drivers/of/unittest.c
>>>>> +++ b/drivers/of/unittest.c
>>>>> @@ -1849,19 +1849,19 @@ static void __init of_unittest_overlay_gpio(void)
>>>>> * driver is registered
>>>>> */
>>>>>
>>>>> - EXPECT_BEGIN(KERN_INFO,
>>>>> + EXPECT_BEGIN(KERN_DEBUG,
>>>>> "gpio-<<int>> (line-B-input): hogged as input\n");
>>>>
>>>> As debug messages are normally off, I think you can just remove these.
>>>
>>> This patch is an example of exactly why the message level is the first parameter
>>> passed to EXPECT_*(). The test results are then _always_ valid, not just
>>> _normally_.
>>
>> One should never say never. One should never say always. :-)
>>
>> Yes, there is still the exception where debug can be enabled independently
>> for drivers/gpio/gpiolib.c vs for drivers/of/unittest.c. And dynamic
>> debug can make things even more wonky.
>
> If we turned on debug messages for drivers/of/, the unittest would be
> hopelessly broken.
>
> Debug messages are special compared to all the other levels as they
> are normally off whereas the rest are always on. For the unittest we
> should assume they are off.
Sorry, I wasn't clear enough in my last email. My intent in that email
is to essentially agree with what you say here - if debug is enabled
then we are in a special world where the person who enabled debug has
to deal with all of the side effects and consequences of enabling
debug.
-Frank
>
> Rob
prev parent reply other threads:[~2023-06-14 0:05 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-05 12:52 [PATCH] gpiolib: demote the hogging log messages to debug Bartosz Golaszewski
2023-06-06 14:57 ` Andy Shevchenko
2023-06-09 7:33 ` Linus Walleij
2023-06-09 13:47 ` Rob Herring
2023-06-09 14:20 ` Bartosz Golaszewski
2023-06-11 12:39 ` Frank Rowand
2023-06-11 12:48 ` Frank Rowand
2023-06-12 15:42 ` Rob Herring
2023-06-14 0:04 ` Frank Rowand [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=4566b922-c564-5847-facf-1a68ea6adcf4@gmail.com \
--to=frowand.list@gmail.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=bartosz.golaszewski@linaro.org \
--cc=brgl@bgdev.pl \
--cc=devicetree@vger.kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robh+dt@kernel.org \
--cc=warthog618@gmail.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