Skip to content

Commit b52b716

Browse files
Joelgranadosmcgrof
authored andcommitted
scsi: Remove now superfluous sentinel element 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 from scsi_table and sg_sysctls. Signed-off-by: Joel Granados <j.granados@samsung.com> Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
1 parent 06a743a commit b52b716

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

drivers/scsi/scsi_sysctl.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ static struct ctl_table scsi_table[] = {
1818
.maxlen = sizeof(scsi_logging_level),
1919
.mode = 0644,
2020
.proc_handler = proc_dointvec },
21-
{ }
2221
};
2322

2423
static struct ctl_table_header *scsi_table_header;

drivers/scsi/sg.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1650,7 +1650,6 @@ static struct ctl_table sg_sysctls[] = {
16501650
.mode = 0444,
16511651
.proc_handler = proc_dointvec,
16521652
},
1653-
{}
16541653
};
16551654

16561655
static struct ctl_table_header *hdr;

0 commit comments

Comments
 (0)