Browse Source

sysctl: remove the binary interface for aio-nr, aio-max-nr, acpi_video_flags

aio-nr, aio-max-nr, acpi_video_flags are unsigned long values which sysctl
does not handle properly with a 64bit kernel and a 32bit user space.

Since no one is likely to be using the binary sysctl values and the ascii
interface still works, this patch just removes support for the binary sysctl
interface from the kernel.

Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Cc: Alexey Dobriyan <adobriyan@sw.ru>
Cc: Benjamin LaHaise <bcrl@kvack.org>
Cc: Zach Brown <zach.brown@oracle.com>
Cc: Badari Pulavarty <pbadari@us.ibm.com>
Cc: Len Brown <lenb@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Eric W. Biederman 17 years ago
parent
commit
0d135a4a8c
1 changed files with 0 additions and 3 deletions
  1. 0 3
      kernel/sysctl.c

+ 0 - 3
kernel/sysctl.c

@@ -703,7 +703,6 @@ static struct ctl_table kern_table[] = {
 #endif
 #endif
 #if	defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
 #if	defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
 	{
 	{
-		.ctl_name	= KERN_ACPI_VIDEO_FLAGS,
 		.procname	= "acpi_video_flags",
 		.procname	= "acpi_video_flags",
 		.data		= &acpi_realmode_flags,
 		.data		= &acpi_realmode_flags,
 		.maxlen		= sizeof (unsigned long),
 		.maxlen		= sizeof (unsigned long),
@@ -1185,7 +1184,6 @@ static struct ctl_table fs_table[] = {
 		.extra2		= &two,
 		.extra2		= &two,
 	},
 	},
 	{
 	{
-		.ctl_name	= FS_AIO_NR,
 		.procname	= "aio-nr",
 		.procname	= "aio-nr",
 		.data		= &aio_nr,
 		.data		= &aio_nr,
 		.maxlen		= sizeof(aio_nr),
 		.maxlen		= sizeof(aio_nr),
@@ -1193,7 +1191,6 @@ static struct ctl_table fs_table[] = {
 		.proc_handler	= &proc_doulongvec_minmax,
 		.proc_handler	= &proc_doulongvec_minmax,
 	},
 	},
 	{
 	{
-		.ctl_name	= FS_AIO_MAX_NR,
 		.procname	= "aio-max-nr",
 		.procname	= "aio-max-nr",
 		.data		= &aio_max_nr,
 		.data		= &aio_max_nr,
 		.maxlen		= sizeof(aio_max_nr),
 		.maxlen		= sizeof(aio_max_nr),