summaryrefslogtreecommitdiff
path: root/net/rds/ib_sysctl.c
diff options
context:
space:
mode:
authorJoel Granados <j.granados@samsung.com>2024-05-01 12:29:27 +0300
committerDavid S. Miller <davem@davemloft.net>2024-05-03 15:29:42 +0300
commit92bedf07836bf0971dc18a97307bc3d5dc9db787 (patch)
tree3854749278f6514d7a058bd2e076fe5b94860d30 /net/rds/ib_sysctl.c
parent1c106eb01ceefa1ceec56af497e628593fb5fd9f (diff)
downloadlinux-92bedf07836bf0971dc18a97307bc3d5dc9db787.tar.xz
net: rds: Remove the now superfluous sentinel elements from ctl_table array
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 : https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/) * Remove sentinel element from ctl_table structs. Signed-off-by: Joel Granados <j.granados@samsung.com> Acked-by: Allison Henderson <allison.henderson@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rds/ib_sysctl.c')
-rw-r--r--net/rds/ib_sysctl.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/rds/ib_sysctl.c b/net/rds/ib_sysctl.c
index e4e41b3afce7..2af678e71e3c 100644
--- a/net/rds/ib_sysctl.c
+++ b/net/rds/ib_sysctl.c
@@ -103,7 +103,6 @@ static struct ctl_table rds_ib_sysctl_table[] = {
.mode = 0644,
.proc_handler = proc_dointvec,
},
- { }
};
void rds_ib_sysctl_exit(void)