From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Adrian Ratiu <adrian.ratiu@collabora.com>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>,
"Andrew Morton" <akpm@linux-foundation.org>,
kernel@collabora.com, linux-kernel@vger.kernel.org,
"Guillaume Tucker" <gtucker.collabora@gmail.com>,
"Enric Balletbò" <enric.balletbo@collabora.com>
Subject: Re: [RFC PATCH 1/1] drivers: base: Expose probe failures via debugfs
Date: Fri, 4 Jun 2021 14:58:40 +0200 [thread overview]
Message-ID: <YLojgGvjAO0v/4l2@kroah.com> (raw)
In-Reply-To: <87wnrawwfl.fsf@collabora.com>
On Thu, Jun 03, 2021 at 11:00:14PM +0300, Adrian Ratiu wrote:
> On Thu, 03 Jun 2021, Greg Kroah-Hartman <gregkh@linuxfoundation.org> wrote:
> > On Thu, Jun 03, 2021 at 03:55:34PM +0300, Adrian Ratiu wrote:
> > > This adds a new devices_failed debugfs attribute to list driver
> > > probe failures excepting -EPROBE_DEFER which are still handled as
> > > before via their own devices_deferred attribute.
> >
> > Who is going to use this?
> >
>
> It's for KernelCI testing, I explained the background in my other reply.
>
> > > This is useful on automated test systems like KernelCI to avoid
> > > filtering dmesg dev_err() messages to extract potential probe
> > > failures.
> >
> > I thought we listed these already some other way today?
> >
>
> The only other place is the printk buffer via dev_err() and only the result
> subset of -EPROBE_DEFER info is exported via debugfs.
>
> An additional problem with this new interface implementation is that it is
> based on the new-ish driver core "dev_err_probe" helper to which not all
> drivers have been converted (yet...), so there will be a mismatch between
> printk and this new interface.
Then why not move to use the new interface :)
> > > Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: "Rafael J.
> > > Wysocki" <rafael@kernel.org> Cc: Guillaume Tucker
> > > <gtucker.collabora@gmail.com> Suggested-by: Enric Balletbò
> > > <enric.balletbo@collabora.com> Signed-off-by: Adrian Ratiu
> > > <adrian.ratiu@collabora.com> --- drivers/base/core.c | 76
> > > +++++++++++++++++++++++++++++++++++++++++++-- lib/Kconfig.debug |
> > > 23 ++++++++++++++ 2 files changed, 96 insertions(+), 3 deletions(-)
> > > diff --git a/drivers/base/core.c b/drivers/base/core.c index
> > > b8a8c96dca58..74bf057234b8 100644 --- a/drivers/base/core.c +++
> > > b/drivers/base/core.c @@ -9,7 +9,9 @@ */ #include <linux/acpi.h>
> > > +#include <linux/circ_buf.h> #include <linux/cpufreq.h> +#include
> > > <linux/debugfs.h> #include <linux/device.h> #include <linux/err.h>
> > > #include <linux/fwnode.h> @@ -53,6 +55,15 @@ static
> > > DEFINE_MUTEX(fwnode_link_lock); static bool
> > > fw_devlink_is_permissive(void); static bool
> > > fw_devlink_drv_reg_done; +#ifdef CONFIG_DEBUG_FS_PROBE_ERR +#define
> > > PROBE_ERR_BUF_ELEM_SIZE 64 +#define PROBE_ERR_BUF_SIZE (1 <<
> > > CONFIG_DEBUG_FS_PROBE_ERR_BUF_SHIFT) +static struct circ_buf
> > > probe_err_crbuf; +static char
> > > failed_probe_buffer[PROBE_ERR_BUF_SIZE]; +static
> > > DEFINE_MUTEX(failed_probe_mutex); +static struct dentry
> > > *devices_failed_probe; +#endif
> >
> > All of this just for a log buffer? The kernel provides a great one,
> > printk, let's not create yet-another-log-buffer if at all possible
> > please.
>
> Yes, that is correct, this is esentially duplicating information already
> exposed via the printk buffer.
Not good, I will not take this for that reason alone. Also I don't want
to maintain something like this for the next 10+ years for no good
reason.
> > If the existing messages are "hard to parse", what can we do to make
> > them "easier" that would allow systems to do something with them?
> >
> > What _do_ systems want to do with this information anyway? What does it
> > help with exactly?
> >
>
> I know driver core probe error message formats are unlikely to change over
> time and debugfs in theory is as "stable" as printk, but I think the main
> concern is to find a a more reliable way than parsing printk to extract
> probe erros, like for the existing devices_deferred in debugfs.
But what exactly are you trying to detect? And what are you going to do
if you detect it?
> The idea in my specific case is to be able to reliably run driver tests in
> KernelCI for expected or unexpected probe errors like -EINVAL.
How about making a "real" test for this type of thing and we add that to
the kernel itself? Wouldn't that be a better thing to have?
thanks,
greg k-h
next prev parent reply other threads:[~2021-06-04 12:58 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-03 12:55 [RFC PATCH 0/1] Initialize debugfs/ksysfs earlier? Adrian Ratiu
2021-06-03 12:55 ` [RFC PATCH 1/1] drivers: base: Expose probe failures via debugfs Adrian Ratiu
2021-06-03 13:16 ` Greg Kroah-Hartman
2021-06-03 20:00 ` Adrian Ratiu
2021-06-04 12:58 ` Greg Kroah-Hartman [this message]
2021-06-03 13:13 ` [RFC PATCH 0/1] Initialize debugfs/ksysfs earlier? Greg Kroah-Hartman
2021-06-03 20:00 ` Adrian Ratiu
2021-06-04 12:56 ` Greg Kroah-Hartman
2021-06-04 16:06 ` Adrian Ratiu
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=YLojgGvjAO0v/4l2@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=adrian.ratiu@collabora.com \
--cc=akpm@linux-foundation.org \
--cc=enric.balletbo@collabora.com \
--cc=gtucker.collabora@gmail.com \
--cc=kernel@collabora.com \
--cc=linux-kernel@vger.kernel.org \
--cc=rafael@kernel.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