Re: [PATCH v5 5/8] net: Remove ctl_table sentinel elements from several networking subsystems

2024-04-26 Thread Sabrina Dubroca
2024-04-26, 12:46:57 +0200, Joel Granados via B4 Relay wrote: > diff --git a/net/smc/smc_sysctl.c b/net/smc/smc_sysctl.c > index a5946d1b9d60..bd0b7e2f8824 100644 > --- a/net/smc/smc_sysctl.c > +++ b/net/smc/smc_sysctl.c > @@ -90,7 +90,6 @@ static struct ctl_table smc_table[] = { >

Re: [PATCH v4 1/8] net: Remove the now superfluous sentinel elements from ctl_table array

2024-04-26 Thread Jakub Kicinski
On Fri, 26 Apr 2024 08:59:31 +0200 Joel Granados wrote: > Sorry about this. I pulled the trigger way too early. This is already > fixed in my v4. > > |^~ > > -- > > netdev FAQ tl;dr: > > - designate your patch to a tree - [PATCH net] or [PATCH net-next] > > - for

Re: [PATCH v5 4/8] net: sunrpc: Remove the now superfluous sentinel elements from ctl_table array

2024-04-26 Thread Chuck Lever
On Fri, Apr 26, 2024 at 12:46:56PM +0200, Joel Granados via B4 Relay wrote: > From: Joel Granados > > This commit comes at the tail end of a greater effort to remove the > empty elements at the end of the ctl_table arrays (sentinels) which > will reduce the overall build time size of the kernel

Re: [PATCH v5 4/8] net: sunrpc: Remove the now superfluous sentinel elements from ctl_table array

2024-04-26 Thread Jeffrey Layton
On Fri, 2024-04-26 at 12:46 +0200, Joel Granados via B4 Relay wrote: > From: Joel Granados > > This commit comes at the tail end of a greater effort to remove the > empty elements at the end of the ctl_table arrays (sentinels) which > will reduce the overall build time size of the kernel and run

Re: [PATCH v5 6/8] netfilter: Remove the now superfluous sentinel elements from ctl_table array

2024-04-26 Thread Julian Anastasov
Hello, On Fri, 26 Apr 2024, Joel Granados via B4 Relay wrote: > From: Joel Granados > > This commit comes at the tail end of a greater effort to remove the > empty elements at the end of the ctl_table arrays (sentinels) which will > reduce the overall build time size of the kernel

[PATCH v5 6/8] netfilter: Remove the now superfluous sentinel elements from ctl_table array

2024-04-26 Thread Joel Granados via B4 Relay
From: Joel Granados This commit comes at the tail end of a greater effort to remove the empty elements at the end of the ctl_table arrays (sentinels) which will reduce the overall build time size of the kernel and run time memory bloat by ~64 bytes per sentinel (further information Link :

[PATCH v5 8/8] ax.25: x.25: Remove the now superfluous sentinel elements from ctl_table array

2024-04-26 Thread Joel Granados via B4 Relay
From: Joel Granados This commit comes at the tail end of a greater effort to remove the empty elements at the end of the ctl_table arrays (sentinels) which will reduce the overall build time size of the kernel and run time memory bloat by ~64 bytes per sentinel (further information Link :

[PATCH v5 5/8] net: Remove ctl_table sentinel elements from several networking subsystems

2024-04-26 Thread Joel Granados via B4 Relay
From: Joel Granados This commit comes at the tail end of a greater effort to remove the empty elements at the end of the ctl_table arrays (sentinels) which will reduce the overall build time size of the kernel and run time memory bloat by ~64 bytes per sentinel (further information Link :

[PATCH v5 7/8] appletalk: Remove the now superfluous sentinel elements from ctl_table array

2024-04-26 Thread Joel Granados via B4 Relay
From: Joel Granados This commit comes at the tail end of a greater effort to remove the empty elements at the end of the ctl_table arrays (sentinels) which will reduce the overall build time size of the kernel and run time memory bloat by ~64 bytes per sentinel (further information Link :

[PATCH v5 4/8] net: sunrpc: Remove the now superfluous sentinel elements from ctl_table array

2024-04-26 Thread Joel Granados via B4 Relay
From: Joel Granados This commit comes at the tail end of a greater effort to remove the empty elements at the end of the ctl_table arrays (sentinels) which will reduce the overall build time size of the kernel and run time memory bloat by ~64 bytes per sentinel (further information Link :

[PATCH v5 3/8] net: rds: Remove the now superfluous sentinel elements from ctl_table array

2024-04-26 Thread Joel Granados via B4 Relay
From: Joel Granados This commit comes at the tail end of a greater effort to remove the empty elements at the end of the ctl_table arrays (sentinels) which will reduce the overall build time size of the kernel and run time memory bloat by ~64 bytes per sentinel (further information Link :

[PATCH v5 1/8] net: Remove the now superfluous sentinel elements from ctl_table array

2024-04-26 Thread Joel Granados via B4 Relay
From: Joel Granados This commit comes at the tail end of a greater effort to remove the empty elements at the end of the ctl_table arrays (sentinels) which will reduce the overall build time size of the kernel and run time memory bloat by ~64 bytes per sentinel (further information Link :

[PATCH v5 2/8] net: ipv{6,4}: Remove the now superfluous sentinel elements from ctl_table array

2024-04-26 Thread Joel Granados via B4 Relay
From: Joel Granados This commit comes at the tail end of a greater effort to remove the empty elements at the end of the ctl_table arrays (sentinels) which will reduce the overall build time size of the kernel and run time memory bloat by ~64 bytes per sentinel (further information Link :

[PATCH v5 0/8] sysctl: Remove sentinel elements from networking

2024-04-26 Thread Joel Granados via B4 Relay
From: Joel Granados What? These commits remove the sentinel element (last empty element) from the sysctl arrays of all the files under the "net/" directory that register a sysctl array. The merging of the preparation patches [4] to mainline allows us to just remove sentinel elements without

Re: [PATCH v4 1/8] net: Remove the now superfluous sentinel elements from ctl_table array

2024-04-26 Thread Joel Granados
On Thu, Apr 25, 2024 at 03:58:04PM -0700, Jakub Kicinski wrote: > On Thu, 25 Apr 2024 14:02:59 +0200 Joel Granados via B4 Relay wrote: > > - for (i = 0; i < ARRAY_SIZE(mpls_table) - 1; i++) > > + for (i = 0; i < tabel_size; i++) > > table[i].data = (char *)net +