From: Aaron Tomlin Date: Mon, 20 Jan 2014 17:34:12 +0000 (+0000) Subject: sysctl: Add neg_one as a standard constraint X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2397efb1bb17595b35f31abb40d95074ebc04f1b;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git sysctl: Add neg_one as a standard constraint Add neg_one to the list of standard constraints - will be used by the next patch. Signed-off-by: Aaron Tomlin Acked-by: Rik van Riel Acked-by: David Rientjes Cc: oleg@redhat.com Link: http://lkml.kernel.org/r/1390239253-24030-2-git-send-email-atomlin@redhat.com Signed-off-by: Ingo Molnar --- diff --git a/kernel/sysctl.c b/kernel/sysctl.c index c8da99f905cf..c398a58673a7 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -122,6 +122,7 @@ extern int blk_iopoll_enabled; static int sixty = 60; #endif +static int neg_one = -1; static int zero; static int __maybe_unused one = 1; static int __maybe_unused two = 2;