diff options
-rw-r--r-- | kernel/sysctl_binary.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kernel/sysctl_binary.c b/kernel/sysctl_binary.c index b75dbf40f573..112533d5fc08 100644 --- a/kernel/sysctl_binary.c +++ b/kernel/sysctl_binary.c | |||
@@ -1399,6 +1399,13 @@ static void deprecated_sysctl_warning(const int *name, int nlen) | |||
1399 | { | 1399 | { |
1400 | int i; | 1400 | int i; |
1401 | 1401 | ||
1402 | /* | ||
1403 | * CTL_KERN/KERN_VERSION is used by older glibc and cannot | ||
1404 | * ever go away. | ||
1405 | */ | ||
1406 | if (name[0] == CTL_KERN && name[1] == KERN_VERSION) | ||
1407 | return; | ||
1408 | |||
1402 | if (printk_ratelimit()) { | 1409 | if (printk_ratelimit()) { |
1403 | printk(KERN_INFO | 1410 | printk(KERN_INFO |
1404 | "warning: process `%s' used the deprecated sysctl " | 1411 | "warning: process `%s' used the deprecated sysctl " |