All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Add missing “net” prefix in help net
@ 2025-12-27 18:18 Emmanuel Gil Peyrot
  2026-01-02 15:19 ` Jerome Forissier
  0 siblings, 1 reply; 6+ messages in thread
From: Emmanuel Gil Peyrot @ 2025-12-27 18:18 UTC (permalink / raw)
  To: u-boot; +Cc: Link Mauve

From: Link Mauve <linkmauve@linkmauve.fr>

The usage of the net sub-system was missing the complete command for “net
stats”.

Signed-off-by: Link Mauve <linkmauve@linkmauve.fr>
---
 cmd/net-common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/net-common.c b/cmd/net-common.c
index 1c6f11cd435..6f33d15d695 100644
--- a/cmd/net-common.c
+++ b/cmd/net-common.c
@@ -103,4 +103,4 @@ static int do_net(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
 
 U_BOOT_CMD(net, 3, 1, do_net, "NET sub-system",
 	   "list - list available devices\n"
-	   "stats <device> - dump statistics for specified device\n");
+	   "net stats <device> - dump statistics for specified device\n");
-- 
2.52.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] Add missing “net” prefix in help net
  2025-12-27 18:18 [PATCH] Add missing “net” prefix in help net Emmanuel Gil Peyrot
@ 2026-01-02 15:19 ` Jerome Forissier
  2026-01-02 15:43   ` Tom Rini
  0 siblings, 1 reply; 6+ messages in thread
From: Jerome Forissier @ 2026-01-02 15:19 UTC (permalink / raw)
  To: Emmanuel Gil Peyrot, u-boot; +Cc: Tom Rini

On 12/27/25 19:18, Emmanuel Gil Peyrot wrote:
> From: Link Mauve <linkmauve@linkmauve.fr>
> 
> The usage of the net sub-system was missing the complete command for “net
> stats”.
> 
> Signed-off-by: Link Mauve <linkmauve@linkmauve.fr>

Not sure this is a valid S-o-b as per the U-Boot guidelines (real name
required?). Tom?

> ---
>  cmd/net-common.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/cmd/net-common.c b/cmd/net-common.c
> index 1c6f11cd435..6f33d15d695 100644
> --- a/cmd/net-common.c
> +++ b/cmd/net-common.c
> @@ -103,4 +103,4 @@ static int do_net(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
>  
>  U_BOOT_CMD(net, 3, 1, do_net, "NET sub-system",
>  	   "list - list available devices\n"
> -	   "stats <device> - dump statistics for specified device\n");
> +	   "net stats <device> - dump statistics for specified device\n");

Apart from the S-o-b, the rest is:

Reviewed-by: Jerome Forissier <jerome@forissier.org>

Thanks,
-- 
Jerome

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Add missing “net” prefix in help net
  2026-01-02 15:19 ` Jerome Forissier
@ 2026-01-02 15:43   ` Tom Rini
  2026-01-02 16:03     ` Link Mauve
  2026-02-03 20:42     ` Tom Rini
  0 siblings, 2 replies; 6+ messages in thread
From: Tom Rini @ 2026-01-02 15:43 UTC (permalink / raw)
  To: Jerome Forissier; +Cc: Emmanuel Gil Peyrot, u-boot

[-- Attachment #1: Type: text/plain, Size: 610 bytes --]

On Fri, Jan 02, 2026 at 04:19:03PM +0100, Jerome Forissier wrote:

> On 12/27/25 19:18, Emmanuel Gil Peyrot wrote:
> > From: Link Mauve <linkmauve@linkmauve.fr>
> > 
> > The usage of the net sub-system was missing the complete command for “net
> > stats”.
> > 
> > Signed-off-by: Link Mauve <linkmauve@linkmauve.fr>
> 
> Not sure this is a valid S-o-b as per the U-Boot guidelines (real name
> required?). Tom?

As that is presumably Emmanuel's pseudonym, I would prefer their real
name, yes. It's also a trivial enough change that I don't think we need
to be overly concerned.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Add missing “net” prefix in help net
  2026-01-02 15:43   ` Tom Rini
@ 2026-01-02 16:03     ` Link Mauve
  2026-01-02 16:13       ` Tom Rini
  2026-02-03 20:42     ` Tom Rini
  1 sibling, 1 reply; 6+ messages in thread
From: Link Mauve @ 2026-01-02 16:03 UTC (permalink / raw)
  To: Tom Rini; +Cc: Jerome Forissier, u-boot

Hi,

On Fri, Jan 02, 2026 at 09:43:36AM -0600, Tom Rini wrote:
> On Fri, Jan 02, 2026 at 04:19:03PM +0100, Jerome Forissier wrote:
> 
> > On 12/27/25 19:18, Emmanuel Gil Peyrot wrote:
> > > From: Link Mauve <linkmauve@linkmauve.fr>
> > > 
> > > The usage of the net sub-system was missing the complete command for “net
> > > stats”.
> > > 
> > > Signed-off-by: Link Mauve <linkmauve@linkmauve.fr>
> > 
> > Not sure this is a valid S-o-b as per the U-Boot guidelines (real name
> > required?). Tom?
> 
> As that is presumably Emmanuel's pseudonym, I would prefer their real
> name, yes. It's also a trivial enough change that I don't think we need
> to be overly concerned.

I use both names undistinguishly, so pick whichever feels more real to
you.  I am more well-known as Link Mauve even outside of the Internet,
but haven’t changed my legal name to include it so far.

> 
> -- 
> Tom

-- 
Link Mauve

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Add missing “net” prefix in help net
  2026-01-02 16:03     ` Link Mauve
@ 2026-01-02 16:13       ` Tom Rini
  0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2026-01-02 16:13 UTC (permalink / raw)
  To: Link Mauve; +Cc: Jerome Forissier, u-boot

[-- Attachment #1: Type: text/plain, Size: 1065 bytes --]

On Fri, Jan 02, 2026 at 05:03:17PM +0100, Link Mauve wrote:
> Hi,
> 
> On Fri, Jan 02, 2026 at 09:43:36AM -0600, Tom Rini wrote:
> > On Fri, Jan 02, 2026 at 04:19:03PM +0100, Jerome Forissier wrote:
> > 
> > > On 12/27/25 19:18, Emmanuel Gil Peyrot wrote:
> > > > From: Link Mauve <linkmauve@linkmauve.fr>
> > > > 
> > > > The usage of the net sub-system was missing the complete command for “net
> > > > stats”.
> > > > 
> > > > Signed-off-by: Link Mauve <linkmauve@linkmauve.fr>
> > > 
> > > Not sure this is a valid S-o-b as per the U-Boot guidelines (real name
> > > required?). Tom?
> > 
> > As that is presumably Emmanuel's pseudonym, I would prefer their real
> > name, yes. It's also a trivial enough change that I don't think we need
> > to be overly concerned.
> 
> I use both names undistinguishly, so pick whichever feels more real to
> you.  I am more well-known as Link Mauve even outside of the Internet,
> but haven’t changed my legal name to include it so far.

Thanks for explaining, Link is fine then.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Add missing “net” prefix in help net
  2026-01-02 15:43   ` Tom Rini
  2026-01-02 16:03     ` Link Mauve
@ 2026-02-03 20:42     ` Tom Rini
  1 sibling, 0 replies; 6+ messages in thread
From: Tom Rini @ 2026-02-03 20:42 UTC (permalink / raw)
  To: Emmanuel Gil Peyrot; +Cc: Jerome Forissier, u-boot

[-- Attachment #1: Type: text/plain, Size: 866 bytes --]

On Fri, Jan 02, 2026 at 09:43:36AM -0600, Tom Rini wrote:
> On Fri, Jan 02, 2026 at 04:19:03PM +0100, Jerome Forissier wrote:
> 
> > On 12/27/25 19:18, Emmanuel Gil Peyrot wrote:
> > > From: Link Mauve <linkmauve@linkmauve.fr>
> > > 
> > > The usage of the net sub-system was missing the complete command for “net
> > > stats”.
> > > 
> > > Signed-off-by: Link Mauve <linkmauve@linkmauve.fr>
> > 
> > Not sure this is a valid S-o-b as per the U-Boot guidelines (real name
> > required?). Tom?
> 
> As that is presumably Emmanuel's pseudonym, I would prefer their real
> name, yes. It's also a trivial enough change that I don't think we need
> to be overly concerned.

Coming back to this thread, I've posted:
https://lore.kernel.org/u-boot/20260203191620.1476575-1-trini@konsulko.com/
and apologize for getting this wrong here.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-02-03 20:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-27 18:18 [PATCH] Add missing “net” prefix in help net Emmanuel Gil Peyrot
2026-01-02 15:19 ` Jerome Forissier
2026-01-02 15:43   ` Tom Rini
2026-01-02 16:03     ` Link Mauve
2026-01-02 16:13       ` Tom Rini
2026-02-03 20:42     ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.