The patch titled sysctl: use proc_dointvec_unsigned() where appropriate has been removed from the -mm tree. Its filename was sysctl-use-proc_dointvec_unsigned-where-appropriate.patch This patch was dropped because an updated version will be merged The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: sysctl: use proc_dointvec_unsigned() where appropriate From: Dave Young <hidave.darkstar@xxxxxxxxx> Use the new proc_do_intvec_unsigned() handler for various unsigned inputs. Signed-off-by: Dave Young <hidave.darkstar@xxxxxxxxx> Cc: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: "Eric W. Biederman" <ebiederm@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/sysctl.c | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff -puN kernel/sysctl.c~sysctl-use-proc_dointvec_unsigned-where-appropriate kernel/sysctl.c --- a/kernel/sysctl.c~sysctl-use-proc_dointvec_unsigned-where-appropriate +++ a/kernel/sysctl.c @@ -1194,8 +1194,7 @@ static struct ctl_table vm_table[] = { .data = &sysctl_max_map_count, .maxlen = sizeof(sysctl_max_map_count), .mode = 0644, - .proc_handler = proc_dointvec_minmax, - .extra1 = &zero, + .proc_handler = proc_dointvec_unsigned, }, #else { @@ -1203,8 +1202,7 @@ static struct ctl_table vm_table[] = { .data = &sysctl_nr_trim_pages, .maxlen = sizeof(sysctl_nr_trim_pages), .mode = 0644, - .proc_handler = proc_dointvec_minmax, - .extra1 = &zero, + .proc_handler = proc_dointvec_unsigned, }, #endif { @@ -1219,16 +1217,14 @@ static struct ctl_table vm_table[] = { .data = &block_dump, .maxlen = sizeof(block_dump), .mode = 0644, - .proc_handler = proc_dointvec, - .extra1 = &zero, + .proc_handler = proc_dointvec_unsigned, }, { .procname = "vfs_cache_pressure", .data = &sysctl_vfs_cache_pressure, .maxlen = sizeof(sysctl_vfs_cache_pressure), .mode = 0644, - .proc_handler = proc_dointvec, - .extra1 = &zero, + .proc_handler = proc_dointvec_unsigned, }, #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT { @@ -1236,8 +1232,7 @@ static struct ctl_table vm_table[] = { .data = &sysctl_legacy_va_layout, .maxlen = sizeof(sysctl_legacy_va_layout), .mode = 0644, - .proc_handler = proc_dointvec, - .extra1 = &zero, + .proc_handler = proc_dointvec_unsigned, }, #endif #ifdef CONFIG_NUMA @@ -1246,8 +1241,7 @@ static struct ctl_table vm_table[] = { .data = &zone_reclaim_mode, .maxlen = sizeof(zone_reclaim_mode), .mode = 0644, - .proc_handler = proc_dointvec, - .extra1 = &zero, + .proc_handler = proc_dointvec_unsigned, }, { .procname = "min_unmapped_ratio", @@ -1302,8 +1296,7 @@ static struct ctl_table vm_table[] = { .data = &vdso_enabled, .maxlen = sizeof(vdso_enabled), .mode = 0644, - .proc_handler = proc_dointvec, - .extra1 = &zero, + .proc_handler = proc_dointvec_unsigned, }, #endif #ifdef CONFIG_HIGHMEM _ Patches currently in -mm which might be from hidave.darkstar@xxxxxxxxx are -- 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