The patch titled Subject: kernel/sysctl: Resolve missing-field-initializers warnings has been removed from the -mm tree. Its filename was kernel-sysctl-resolve-missing-field-initializers-warnings.patch This patch was dropped because it was nacked ------------------------------------------------------ From: Mark Rustad <mark.d.rustad@xxxxxxxxx> Subject: kernel/sysctl: Resolve missing-field-initializers warnings Resolve missing-field-initializers warnings in W=2 builds by using designated initialization. Signed-off-by: Mark Rustad <mark.d.rustad@xxxxxxxxx> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/sysctl.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff -puN kernel/sysctl.c~kernel-sysctl-resolve-missing-field-initializers-warnings kernel/sysctl.c --- a/kernel/sysctl.c~kernel-sysctl-resolve-missing-field-initializers-warnings +++ a/kernel/sysctl.c @@ -257,7 +257,7 @@ static struct ctl_table sysctl_base_tabl .mode = 0555, .child = dev_table, }, - { } + { .procname = NULL } }; #ifdef CONFIG_SCHED_DEBUG @@ -1103,7 +1103,7 @@ static struct ctl_table kern_table[] = { .proc_handler = proc_dointvec, }, #endif - { } + { .procname = NULL } }; static struct ctl_table vm_table[] = { @@ -1485,12 +1485,12 @@ static struct ctl_table vm_table[] = { .mode = 0644, .proc_handler = proc_doulongvec_minmax, }, - { } + { .procname = NULL } }; #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE) static struct ctl_table binfmt_misc_table[] = { - { } + { .procname = NULL } }; #endif @@ -1658,7 +1658,7 @@ static struct ctl_table fs_table[] = { .proc_handler = &pipe_proc_fn, .extra1 = &pipe_min_size, }, - { } + { .procname = NULL } }; static struct ctl_table debug_table[] = { @@ -1682,11 +1682,11 @@ static struct ctl_table debug_table[] = .extra2 = &one, }, #endif - { } + { .procname = NULL } }; static struct ctl_table dev_table[] = { - { } + { .procname = NULL } }; int __init sysctl_init(void) _ Patches currently in -mm which might be from mark.d.rustad@xxxxxxxxx are linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html