Re: [PATCH net-next 5/7] netconsole: add task name to extra data fields

2025-03-04 Thread Paolo Abeni
On 2/25/25 2:11 PM, Breno Leitao wrote: > Ack. I will remove the check then, and check if the UDP stack has been > initialized before calling netpoll helpers. > > What is the best way to make sure taht the UDP stack has been > initialized? [brosers!] Sorry for the latency. My statement was intend

Re: [PATCH net-next 5/7] netconsole: add task name to extra data fields

2025-02-25 Thread Simon Horman
On Tue, Feb 25, 2025 at 03:17:33AM -0800, Breno Leitao wrote: > Hello Simon, > > On Tue, Feb 25, 2025 at 10:19:10AM +, Simon Horman wrote: > > On Fri, Feb 21, 2025 at 05:52:10AM -0800, Breno Leitao wrote: > > > This is the core patch for this whole patchset. Add support for > > > including the

Re: [PATCH net-next 5/7] netconsole: add task name to extra data fields

2025-02-25 Thread Breno Leitao
Hello Paolo, On Tue, Feb 25, 2025 at 12:53:49PM +0100, Paolo Abeni wrote: > On 2/25/25 12:17 PM, Breno Leitao wrote: > > On Tue, Feb 25, 2025 at 10:19:10AM +, Simon Horman wrote: > >> On Fri, Feb 21, 2025 at 05:52:10AM -0800, Breno Leitao wrote: > >>> This is the core patch for this whole patc

Re: [PATCH net-next 5/7] netconsole: add task name to extra data fields

2025-02-25 Thread Paolo Abeni
On 2/25/25 12:17 PM, Breno Leitao wrote: > On Tue, Feb 25, 2025 at 10:19:10AM +, Simon Horman wrote: >> On Fri, Feb 21, 2025 at 05:52:10AM -0800, Breno Leitao wrote: >>> This is the core patch for this whole patchset. Add support for >>> including the current task's name in netconsole's extra d

Re: [PATCH net-next 5/7] netconsole: add task name to extra data fields

2025-02-25 Thread Breno Leitao
Hello Simon, On Tue, Feb 25, 2025 at 10:19:10AM +, Simon Horman wrote: > On Fri, Feb 21, 2025 at 05:52:10AM -0800, Breno Leitao wrote: > > This is the core patch for this whole patchset. Add support for > > including the current task's name in netconsole's extra data output. > > This adds a ne

Re: [PATCH net-next 5/7] netconsole: add task name to extra data fields

2025-02-25 Thread Simon Horman
On Fri, Feb 21, 2025 at 05:52:10AM -0800, Breno Leitao wrote: > This is the core patch for this whole patchset. Add support for > including the current task's name in netconsole's extra data output. > This adds a new append_taskname() function that writes the task name > (from current->comm) into t

[PATCH net-next 5/7] netconsole: add task name to extra data fields

2025-02-21 Thread Breno Leitao
This is the core patch for this whole patchset. Add support for including the current task's name in netconsole's extra data output. This adds a new append_taskname() function that writes the task name (from current->comm) into the target's extradata buffer, similar to how CPU numbers are handled.