Skip to content

Commit

Permalink
ipc: remove the now superfluous sentinel element from ctl_table array
Browse files Browse the repository at this point in the history
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%[email protected]/)

Remove the sentinels from ipc_sysctls and mq_sysctls

Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Joel Granados <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
  • Loading branch information
Joelgranados authored and akpm00 committed Apr 26, 2024
1 parent 5f08383 commit 029c45b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion ipc/ipc_sysctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ static struct ctl_table ipc_sysctls[] = {
.extra2 = SYSCTL_INT_MAX,
},
#endif
{}
};

static struct ctl_table_set *set_lookup(struct ctl_table_root *root)
Expand Down
1 change: 0 additions & 1 deletion ipc/mq_sysctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ static struct ctl_table mq_sysctls[] = {
.extra1 = &msg_maxsize_limit_min,
.extra2 = &msg_maxsize_limit_max,
},
{}
};

static struct ctl_table_set *set_lookup(struct ctl_table_root *root)
Expand Down

0 comments on commit 029c45b

Please sign in to comment.