From patchwork Thu Aug 14 15:19:46 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ganapatrao Kulkarni X-Patchwork-Id: 4724531 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 872D1C0338 for ; Thu, 14 Aug 2014 15:24:28 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id CE53E20160 for ; Thu, 14 Aug 2014 15:24:27 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 8C358201DE for ; Thu, 14 Aug 2014 15:24:26 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1XHwr0-0002sT-GK; Thu, 14 Aug 2014 15:22:14 +0000 Received: from mail-bn1blp0185.outbound.protection.outlook.com ([207.46.163.185] helo=na01-bn1-obe.outbound.protection.outlook.com) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1XHwqc-0002Yk-UD for linux-arm-kernel@lists.infradead.org; Thu, 14 Aug 2014 15:21:51 +0000 Received: from mypc.cavium.com.com (111.93.218.67) by CO2PR07MB459.namprd07.prod.outlook.com (10.141.196.148) with Microsoft SMTP Server (TLS) id 15.0.1005.10; Thu, 14 Aug 2014 15:20:23 +0000 From: Ganapatrao Kulkarni To: , Subject: [PATCH] arm64:mm: Update max pa bits to 48 Date: Thu, 14 Aug 2014 20:49:46 +0530 Message-ID: <1408029586-10362-1-git-send-email-ganapatrao.kulkarni@caviumnetworks.com> X-Mailer: git-send-email 1.8.1.4 MIME-Version: 1.0 X-Originating-IP: [111.93.218.67] X-ClientProxiedBy: BY2PR03CA061.namprd03.prod.outlook.com (10.141.249.34) To CO2PR07MB459.namprd07.prod.outlook.com (10.141.196.148) X-Microsoft-Antispam: BCL:0;PCL:0;RULEID:;UriScan:; X-Forefront-PRVS: 03030B9493 X-Forefront-Antispam-Report: SFV:NSPM; SFS:(6009001)(189002)(199003)(42186005)(79102001)(76482001)(4396001)(77096002)(21056001)(36756003)(77156001)(50226001)(88136002)(46102001)(99396002)(102836001)(87976001)(101416001)(64706001)(104166001)(87286001)(83322001)(33646002)(83072002)(80022001)(106356001)(47776003)(50986999)(95666004)(105586002)(19580395003)(48376002)(62966002)(77982001)(19580405001)(74502001)(74662001)(85306004)(229853001)(31966008)(50466002)(81542001)(66066001)(20776003)(85852003)(81342001)(86362001)(92726001)(92566001)(93916002)(107046002)(89996001); DIR:OUT; SFP:; SCL:1; SRVR:CO2PR07MB459; H:mypc.cavium.com.com; FPR:; MLV:sfv; PTR:InfoNoRecords; MX:1; A:1; LANG:en; X-OriginatorOrg: caviumnetworks.com X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140814_082151_132161_5D847C13 X-CRM114-Status: UNSURE ( 6.17 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -0.7 (/) Cc: Ganapatrao Kulkarni , gpkulkarni@gmail.com X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Setting the Macro MAX_PHYSMEM_BITS to 48 since arm64 enabled with 48 bit PA support. Signed-off-by: Ganapatrao Kulkarni Acked-by: Catalin Marinas --- arch/arm64/include/asm/sparsemem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/include/asm/sparsemem.h b/arch/arm64/include/asm/sparsemem.h index 1be62bc..74a9d30 100644 --- a/arch/arm64/include/asm/sparsemem.h +++ b/arch/arm64/include/asm/sparsemem.h @@ -17,7 +17,7 @@ #define __ASM_SPARSEMEM_H #ifdef CONFIG_SPARSEMEM -#define MAX_PHYSMEM_BITS 40 +#define MAX_PHYSMEM_BITS 48 #define SECTION_SIZE_BITS 30 #endif