From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755680AbdKNUVN (ORCPT ); Tue, 14 Nov 2017 15:21:13 -0500 Received: from mail-wm0-f65.google.com ([74.125.82.65]:35714 "EHLO mail-wm0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754847AbdKNUVF (ORCPT ); Tue, 14 Nov 2017 15:21:05 -0500 X-Google-Smtp-Source: AGs4zMamSytdPWFAlORGkUfrqemfYxxkpjzzCIJCCS8f2PHNtdw1e8Un2xJvGveHycEkCs9k9CJTkA== Date: Tue, 14 Nov 2017 23:21:02 +0300 From: "Kirill A. Shutemov" To: Thomas Gleixner Cc: "Kirill A. Shutemov" , Ingo Molnar , x86@kernel.org, "H. Peter Anvin" , Linus Torvalds , Andy Lutomirski , Nicholas Piggin , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCHv2 1/2] x86/mm: Do not allow non-MAP_FIXED mapping across DEFAULT_MAP_WINDOW border Message-ID: <20171114202102.crpgiwgv2lu5aboq@node.shutemov.name> References: <20171114134322.40321-1-kirill.shutemov@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20170609 (1.8.3) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Nov 14, 2017 at 05:01:50PM +0100, Thomas Gleixner wrote: > @@ -198,11 +199,14 @@ arch_get_unmapped_area_topdown(struct fi > /* requesting a specific address */ > if (addr) { > addr = PAGE_ALIGN(addr); > + if (!mmap_address_hint_valid(addr, len)) > + goto get_unmapped_area; > + Here and in hugetlb_get_unmapped_area(), we should align the addr after the check, not before. Otherwise the alignment itself can bring us over the borderline as we align up. -- Kirill A. Shutemov