[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <aWEKpH9JxYtyInvG@pathway.suse.cz>
Date: Fri, 9 Jan 2026 15:03:16 +0100
From: Petr Mladek <pmladek@...e.com>
To: John Ogness <john.ogness@...utronix.de>
Cc: Breno Leitao <leitao@...ian.org>, mpdesouza@...e.com,
netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
asantostc@...il.com, efault@....de, gustavold@...il.com,
calvin@...nvd.org, jv@...sburgh.net, kernel-team@...a.com,
Simon Horman <horms@...nel.org>,
Andrew Lunn <andrew+netdev@...n.ch>,
"David S. Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>,
rostedt@...dmis.org
Subject: Re: [PATCH net-next 0/2] net: netconsole: convert to NBCON console
infrastructure
On Fri 2026-01-09 14:29:54, Petr Mladek wrote:
> On Thu 2026-01-08 17:56:44, John Ogness wrote:
> > On 2026-01-08, Breno Leitao <leitao@...ian.org> wrote:
> > > On Wed, Jan 07, 2026 at 08:58:39AM -0800, Breno Leitao wrote:
> > > This is what I am thinking about. How bad is it?
> > >
> > > (I've also implemented the netconsole part as well, so, if you want to
> > > have a tree, you can find it in
> > > https://github.com/leitao/linux/tree/execution_context)
> >
> > Thanks. It is very helpful to see how you intend to use it.
> >
> > > commit fe79961da6cabe42343185cf1a7308162bf6bad3
> > > Author: Breno Leitao <leitao@...ian.org>
> > > Date: Thu Jan 8 03:00:46 2026 -0800
> > >
> > > printk: Add execution context (PID/CPU) to dev_printk_info
> > >
> > > Extend struct dev_printk_info to include the task PID and CPU number
> > > where printk messages originate. This information is captured at
> > > vprintk_store() time and propagated through printk_message to
> > > nbcon_write_context, making it available to nbcon console drivers.
> > >
> > > This is useful for consoles like netconsole that want to include
> > > execution context in their output, allowing correlation of messages
> > > with specific tasks and CPUs regardless of where the console driver
> > > actually runs.
> > >
> > > The feature is controlled by CONFIG_PRINTK_EXECUTION_CTX, which is
> > > automatically selected by CONFIG_NETCONSOLE_DYNAMIC. When disabled,
> > > the helper functions compile to no-ops with no overhead.
> > >
> > > Suggested-by: John Ogness <john.ogness@...utronix.de>
> > > Signed-off-by: Breno Leitao <leitao@...ian.org>
> > >
> > > diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
> > > index ac12eaf11755..e6a9369be202 100644
> > > --- a/drivers/net/Kconfig
> > > +++ b/drivers/net/Kconfig
> > > @@ -341,6 +341,7 @@ config NETCONSOLE_DYNAMIC
> > > bool "Dynamic reconfiguration of logging targets"
> > > depends on NETCONSOLE && SYSFS && CONFIGFS_FS && \
> > > !(NETCONSOLE=y && CONFIGFS_FS=m)
> > > + select PRINTK_EXECUTION_CTX
> > > help
> > > This option enables the ability to dynamically reconfigure target
> > > parameters (interface, IP addresses, port numbers, MAC addresses)
> > > diff --git a/include/linux/console.h b/include/linux/console.h
> > > index fc9f5c5c1b04..c724f59f96e6 100644
> > > --- a/include/linux/console.h
> > > +++ b/include/linux/console.h
> > > @@ -298,12 +298,18 @@ struct nbcon_context {
> > > * @outbuf: Pointer to the text buffer for output
> > > * @len: Length to write
> > > * @unsafe_takeover: If a hostile takeover in an unsafe state has occurred
> > > + * @pid: PID of the task that generated the message
> > > + * @cpu: CPU on which the message was generated
> > > */
> > > struct nbcon_write_context {
> > > struct nbcon_context __private ctxt;
> > > char *outbuf;
> > > unsigned int len;
> > > bool unsafe_takeover;
> > > +#ifdef CONFIG_PRINTK_EXECUTION_CTX
> > > + pid_t pid;
> > > + int cpu;
> > > +#endif
> >
> > Something like msg_pid/msg_cpu or printk_pid/printk_cpu might be better
> > to make it clear we are not talking about _this_ context. This struct is
> > used by code outside of the printk subsystem, which is why I think it
> > needs to be more obvious what these represent.
> >
> > @Petr: Any suggestions for names (assuming this is even acceptable)?
> >
> > > };
> > >
> > > /**
> > > diff --git a/include/linux/dev_printk.h b/include/linux/dev_printk.h
> > > index eb2094e43050..42ee778b29dd 100644
> > > --- a/include/linux/dev_printk.h
> > > +++ b/include/linux/dev_printk.h
> > > @@ -27,6 +27,10 @@ struct device;
> > > struct dev_printk_info {
> > > char subsystem[PRINTK_INFO_SUBSYSTEM_LEN];
> > > char device[PRINTK_INFO_DEVICE_LEN];
> > > +#ifdef CONFIG_PRINTK_EXECUTION_CTX
> > > + pid_t pid;
> >
> > I am not happy about this being resolved by the netconsole printer to
> > get the task name. A lot can happen between now and then. But I also
> > shudder at the thought of making dev_printk_info much larger. This is
> > already a horrible waste of memory (which I talked about here[0]).
> >
> > I also do not think dev_printk_info is the appropriate place to store
> > this information. These new fields are not related to the dev_printk
> > API. They belong in printk_info.
> >
> > > + int cpu;
> > > +#endif
> > > };
> > >
> > > #ifdef CONFIG_PRINTK
> > > diff --git a/kernel/printk/internal.h b/kernel/printk/internal.h
> > > index 5f5f626f4279..81e5cd336677 100644
> > > --- a/kernel/printk/internal.h
> > > +++ b/kernel/printk/internal.h
> > > @@ -287,6 +287,10 @@ struct printk_message {
> > > unsigned int outbuf_len;
> > > u64 seq;
> > > unsigned long dropped;
> > > +#ifdef CONFIG_PRINTK_EXECUTION_CTX
> > > + pid_t pid;
> > > + int cpu;
> > > +#endif
> > > };
> > >
> > > bool printk_get_next_message(struct printk_message *pmsg, u64 seq,
> > > diff --git a/kernel/printk/nbcon.c b/kernel/printk/nbcon.c
> > > index 3fa403f9831f..2465fafd7727 100644
> > > --- a/kernel/printk/nbcon.c
> > > +++ b/kernel/printk/nbcon.c
> > > @@ -946,6 +946,18 @@ void nbcon_reacquire_nobuf(struct nbcon_write_context *wctxt)
> > > }
> > > EXPORT_SYMBOL_GPL(nbcon_reacquire_nobuf);
> > >
> > > +#ifdef CONFIG_PRINTK_EXECUTION_CTX
> > > +static inline void wctxt_load_execution_ctx(struct nbcon_write_context *wctxt,
> > > + struct printk_message *pmsg)
> > > +{
> > > + wctxt->pid = pmsg->pid;
> > > + wctxt->cpu = pmsg->cpu;
> > > +}
> > > +#else
> > > +static inline void wctxt_load_execution_ctx(struct nbcon_write_context *wctxt,
> > > + struct printk_message *pmsg) {}
> > > +#endif
> > > +
> > > /**
> > > * nbcon_emit_next_record - Emit a record in the acquired context
> > > * @wctxt: The write context that will be handed to the write function
> > > @@ -1048,6 +1060,8 @@ static bool nbcon_emit_next_record(struct nbcon_write_context *wctxt, bool use_a
> > > /* Initialize the write context for driver callbacks. */
> > > nbcon_write_context_set_buf(wctxt, &pmsg.pbufs->outbuf[0], pmsg.outbuf_len);
> > >
> > > + wctxt_load_execution_ctx(wctxt, &pmsg);
> > > +
> > > if (use_atomic)
> > > con->write_atomic(con, wctxt);
> > > else
> > > diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
> > > index 1d765ad242b8..ff47b5384f20 100644
> > > --- a/kernel/printk/printk.c
> > > +++ b/kernel/printk/printk.c
> > > @@ -2213,6 +2213,26 @@ static u16 printk_sprint(char *text, u16 size, int facility,
> > > return text_len;
> > > }
> > >
> > > +#ifdef CONFIG_PRINTK_EXECUTION_CTX
> > > +static inline void printk_save_execution_ctx(struct dev_printk_info *dev_info)
> > > +{
> > > + dev_info->pid = task_pid_nr(current);
> > > + dev_info->cpu = smp_processor_id();
> > > +}
> > > +
> > > +static inline void pmsg_load_execution_ctx(struct printk_message *pmsg,
> > > + const struct dev_printk_info *dev_info)
> > > +{
> > > + pmsg->pid = dev_info->pid;
> > > + pmsg->cpu = dev_info->cpu;
> > > +}
> > > +#else
> > > +static inline void printk_save_execution_ctx(struct dev_printk_info *dev_info) {}
> > > +
> > > +static inline void pmsg_load_execution_ctx(struct printk_message *pmsg,
> > > + const struct dev_printk_info *dev_info) {}
> > > +#endif
> > > +
> > > __printf(4, 0)
> > > int vprintk_store(int facility, int level,
> > > const struct dev_printk_info *dev_info,
> > > @@ -2320,6 +2340,7 @@ int vprintk_store(int facility, int level,
> > > r.info->caller_id = caller_id;
> > > if (dev_info)
> > > memcpy(&r.info->dev_info, dev_info, sizeof(r.info->dev_info));
> > > + printk_save_execution_ctx(&r.info->dev_info);
> > >
> > > /* A message without a trailing newline can be continued. */
> > > if (!(flags & LOG_NEWLINE))
> > > @@ -3002,6 +3023,7 @@ bool printk_get_next_message(struct printk_message *pmsg, u64 seq,
> > > pmsg->seq = r.info->seq;
> > > pmsg->dropped = r.info->seq - seq;
> > > force_con = r.info->flags & LOG_FORCE_CON;
> > > + pmsg_load_execution_ctx(pmsg, &r.info->dev_info);
> > >
> > > /*
> > > * Skip records that are not forced to be printed on consoles and that
> > > diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
> > > index ba36939fda79..197022099dd8 100644
> > > --- a/lib/Kconfig.debug
> > > +++ b/lib/Kconfig.debug
> > > @@ -35,6 +35,17 @@ config PRINTK_CALLER
> > > no option to enable/disable at the kernel command line parameter or
> > > sysfs interface.
> > >
> > > +config PRINTK_EXECUTION_CTX
> > > + bool
> > > + depends on PRINTK
> > > + help
> > > + This option extends struct dev_printk_info to include extra execution
> >
> > It should extend printk_info instead.
> >
> > > + context in pritnk, such as task PID and CPU number from where the
> >
> > printk
> >
> > > + message originated. This is useful for correlating device messages
> >
> > Rather than "device messages" I suggest "printk messages".
> >
> > > + with specific execution contexts.
> > > +
> > > + One of the main user for this config is netconsole.
> >
> > Rather than saying which drivers might support this, it would probably
> > be better to make it explicit. For example introducing a new config
> > like:
> >
> > CONFIG_CONSOLE_HAS_EXECUTION_CTX
> >
> > that can only be selected by the console driver (or in your case, the
> > console driver option NETCONSOLE_DYNAMIC). Then make
> > PRINTK_EXECUTION_CTX depend only on CONSOLE_HAS_EXECUTION_CTX. That way
> > it is only available if the console driver supports it.
> >
> > > +
> > > config STACKTRACE_BUILD_ID
> > > bool "Show build ID information in stacktraces"
> > > depends on PRINTK
> >
> > While this patch might be "good enough" to preserve the current
> > CONFIG_NETCONSOLE_DYNAMIC features for NBCON, I am not happy about it:
> >
> > 1. It relies on the printer context being able to determine context
> > information about the printk() caller. I would prefer adding the task
> > name directly to printk_info instead.
>
> Good question. I think that both appraches might have users.
> I see the machines on the opposite sides of a spectrum.
>
> a) Huge machines, with hunderds of CPUs and TBs of RAM, might afford
> allocation of more space for kernel messages. And it might be even
> useful when they run containers which are quickly comming and
> going.
>
> b) Small embeded systems want to keep kernel message buffer as small
> as possible. I guess that they mostly run just few processes all
> the time. So the mapping PID <-> COMM is stable.
>
> Let's see how complicated it would be to make this configurable.
>
> > 2. It adds information to printk records that only netconsole can
> > use. If we want other consoles to support this, we would need to modify
> > all the console code. I would prefer it is dynamically added to the
> > generic printing text. We could do this by extending
> > msg_print_ext_body() based on some user configuration. But it would
> > conflict with the current netconsole format.
> >
> > Despite my concerns, adding the PID and CPU information is generally
> > useful. So I am not against expanding printk_info. My concerns are more
> > about how this information is being used by netconsole.
>
> I agree. I see how useful is even the current print_caller() which
> shows either PID or CPU number depending on the context. And it does
> not make sense to store this info twice.
>
> If we were adding this info, I would add it for all users, definitely.
> We are going to touch the internal printk ringbuffer format anyway.
> Now, the main question is how far we want to go.
>
> I see the following possibilities:
>
> A) caller_id -> pid + cpu + atomic/task context bit
> ===================================================
>
> A) caller_id -> pid + cpu + contex
^
Should have been B /o\
> ==================================
>
> Same as above but the caller context info is stored separately and
> might allow to distinguish more types. Something like:
>
> diff --git a/kernel/printk/printk_ringbuffer.h b/kernel/printk/printk_ringbuffer.h
> index 4ef81349d9fb..44aa60a3f84c 100644
> --- a/kernel/printk/printk_ringbuffer.h
> +++ b/kernel/printk/printk_ringbuffer.h
> @@ -9,6 +9,19 @@
> #include <linux/stddef.h>
> #include <linux/types.h>
>
> +#define PRINTK_CALLER_CTXT_PREEMPT_BIT 1
> +#define PRINTK_CALLER_CTXT_SOFTIRQ_BIT 2
> +#define PRINTK_CALLER_CTXT_HARDIRQ_BIT 3
> +#define PRINTK_CALLER_CTXT_NMI 4
> +/* This is not supported on all platforms, see irqs_disabled() */
> +#define PRINTK_CALLER_CTXT_IRQS_DISABLED 5
> +
> +struct printk_caller {
> + u8 ctxt; /* caller context: task, irq, ... */
> + pid_t pid; /* caller pid */
> + int cpu; /* caller CPU number */
> +};
> +
> /*
> * Meta information about each stored message.
> *
> @@ -22,8 +35,8 @@ struct printk_info {
> u8 facility; /* syslog facility */
> u8 flags:5; /* internal record flags */
> u8 level:3; /* syslog level */
> - u32 caller_id; /* thread id or processor id */
>
> + struct printk_caller caller;
> struct dev_printk_info dev_info;
> };
>
>
> C) caller_id -> pid + cpu + comm + atomic/task context bit
> ==========================================================
>
> Similar to A and B but add also
>
> char comm[TASK_COMM_LEN];
>
> into struct printk_caller.
>
>
> D) caller_id -> pid + cpu + comm + atomic/task context bit
> and move printk_caller + printk_dev_info into text buffer
> as suggested as mentioned at
> https://lore.kernel.org/lkml/84y10vz7ty.fsf@jogness.linutronix.de
> ====================================================================
>
> My opinion:
> ===========
>
> I personally think that the approach B) is the best compromise for now
> because:
Note that my proposed code shown only how to store the information
so that it was available for the netconsole.
Once we decide how to store it then we could talk about how to show
it on other consoles and via /dev/kmsg. All the proposals allowed
to keep the output backward compatible for now.
Best Regards,
Petr
Powered by blists - more mailing lists