From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qg0-f50.google.com (mail-qg0-f50.google.com [209.85.192.50]) by kanga.kvack.org (Postfix) with ESMTP id 9B93F6B0039 for ; Wed, 20 Aug 2014 11:26:02 -0400 (EDT) Received: by mail-qg0-f50.google.com with SMTP id z107so3954949qgd.23 for ; Wed, 20 Aug 2014 08:26:02 -0700 (PDT) Received: from mx1.redhat.com (mx1.redhat.com. [209.132.183.28]) by mx.google.com with ESMTPS id f65si34369600qga.117.2014.08.20.08.25.58 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 20 Aug 2014 08:25:58 -0700 (PDT) From: Frantisek Hrbata Subject: [PATCH 2/2] x86: remove high_memory check from valid_phys_addr_range Date: Wed, 20 Aug 2014 17:25:26 +0200 Message-Id: <1408548326-18665-3-git-send-email-fhrbata@redhat.com> In-Reply-To: <1408548326-18665-1-git-send-email-fhrbata@redhat.com> References: <1408103043-31015-1-git-send-email-fhrbata@redhat.com> <1408548326-18665-1-git-send-email-fhrbata@redhat.com> Sender: owner-linux-mm@kvack.org List-ID: To: linux-kernel@vger.kernel.org Cc: linux-mm@kvack.org, tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com, x86@kernel.org, oleg@redhat.com, kamaleshb@in.ibm.com, hechjie@cn.ibm.com, akpm@linux-foundation.org, dave.hansen@intel.com, dvlasenk@redhat.com, prarit@redhat.com, lwoodman@redhat.com, hannsj_uhl@de.ibm.com There is no need to block read/write access to /dev/mem for phys. addr. above high_memory for non-system RAM. The only limitation should be boot_cpu_data.x86_phys_bits(max phys. addr. size). Signed-off-by: Frantisek Hrbata --- arch/x86/mm/mmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/mm/mmap.c b/arch/x86/mm/mmap.c index 110473e..16f222d 100644 --- a/arch/x86/mm/mmap.c +++ b/arch/x86/mm/mmap.c @@ -127,7 +127,7 @@ void arch_pick_mmap_layout(struct mm_struct *mm) int valid_phys_addr_range(phys_addr_t addr, size_t count) { - return addr + count <= __pa(high_memory); + return arch_pfn_possible((addr + count) >> PAGE_SHIFT); } int valid_mmap_phys_addr_range(unsigned long pfn, size_t count) -- 1.9.3 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org