From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756623AbaAMRQJ (ORCPT ); Mon, 13 Jan 2014 12:16:09 -0500 Received: from mx1.redhat.com ([209.132.183.28]:13697 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753806AbaAMRPg (ORCPT ); Mon, 13 Jan 2014 12:15:36 -0500 From: atomlin@redhat.com To: linux-kernel@vger.kernel.org Cc: mingo@kernel.org, oleg@redhat.com, riel@redhat.com, akpm@linux-foundation.org Subject: [RFC PATCH 1/2] sysctl: Make neg_one a standard constraint Date: Mon, 13 Jan 2014 17:14:51 +0000 Message-Id: <1389633292-23588-2-git-send-email-atomlin@redhat.com> In-Reply-To: <1389633292-23588-1-git-send-email-atomlin@redhat.com> References: <1389633292-23588-1-git-send-email-atomlin@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Aaron Tomlin Add neg_one to the list of standard constraints. Signed-off-by: Aaron Tomlin --- kernel/sysctl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 34a6047..dd531a6 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; -- 1.8.4.2