From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755490AbbCEMf7 (ORCPT ); Thu, 5 Mar 2015 07:35:59 -0500 Received: from mga09.intel.com ([134.134.136.24]:30230 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755382AbbCEMf5 (ORCPT ); Thu, 5 Mar 2015 07:35:57 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.11,346,1422950400"; d="scan'208";a="675557010" Date: Thu, 5 Mar 2015 20:35:34 +0800 From: kbuild test robot To: Toshi Kani Cc: kbuild-all@01.org, Johannes Weiner , Andrew Morton , Linux Memory Management List , linux-kernel@vger.kernel.org Subject: [PATCH mmotm] x86, mm: ioremap_pud_capable can be static Message-ID: <20150305123534.GA21563@snb> References: <201503052019.YDsQ378S%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201503052019.YDsQ378S%fengguang.wu@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Fengguang Wu --- ioremap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ioremap.c b/lib/ioremap.c index 3055ada..1634c53 100644 --- a/lib/ioremap.c +++ b/lib/ioremap.c @@ -14,9 +14,9 @@ #include #ifdef CONFIG_HAVE_ARCH_HUGE_VMAP -int __read_mostly ioremap_pud_capable; -int __read_mostly ioremap_pmd_capable; -int __read_mostly ioremap_huge_disabled; +static int __read_mostly ioremap_pud_capable; +static int __read_mostly ioremap_pmd_capable; +static int __read_mostly ioremap_huge_disabled; static int __init set_nohugeiomap(char *str) {