Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752603AbbKJMms (ORCPT ); Tue, 10 Nov 2015 07:42:48 -0500 Received: from mail.skyhub.de ([78.46.96.112]:38919 "EHLO mail.skyhub.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752065AbbKJMmq (ORCPT ); Tue, 10 Nov 2015 07:42:46 -0500 Date: Tue, 10 Nov 2015 13:34:29 +0100 From: Borislav Petkov To: "Kirill A. Shutemov" Cc: hpa@zytor.com, tglx@linutronix.de, mingo@redhat.com, akpm@linux-foundation.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org, x86@kernel.org, jgross@suse.com, konrad.wilk@oracle.com, elliott@hpe.com, boris.ostrovsky@oracle.com, Toshi Kani Subject: Re: [PATCH] x86/mm: fix regression with huge pages on PAE Message-ID: <20151110123429.GE19187@pd.tnic> References: <1447111090-8526-1-git-send-email-kirill.shutemov@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1447111090-8526-1-git-send-email-kirill.shutemov@linux.intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2129 Lines: 45 On Tue, Nov 10, 2015 at 01:18:10AM +0200, Kirill A. Shutemov wrote: > diff --git a/arch/x86/include/asm/pgtable_types.h b/arch/x86/include/asm/pgtable_types.h > index dd5b0aa9dd2f..c1e797266ce9 100644 > --- a/arch/x86/include/asm/pgtable_types.h > +++ b/arch/x86/include/asm/pgtable_types.h > @@ -279,17 +279,14 @@ static inline pmdval_t native_pmd_val(pmd_t pmd) > static inline pudval_t pud_pfn_mask(pud_t pud) > { > if (native_pud_val(pud) & _PAGE_PSE) > - return PUD_PAGE_MASK & PHYSICAL_PAGE_MASK; > + return ~((1ULL << PUD_SHIFT) - 1) & PHYSICAL_PAGE_MASK; In file included from ./arch/x86/include/asm/boot.h:5:0, from ./arch/x86/boot/boot.h:26, from arch/x86/realmode/rm/wakemain.c:2: ./arch/x86/include/asm/pgtable_types.h: In function ‘pud_pfn_mask’: ./arch/x86/include/asm/pgtable_types.h:282:10: warning: large integer implicitly truncated to unsigned type [-Woverflow] return ~((1ULL << PUD_SHIFT) - 1) & PHYSICAL_PAGE_MASK; ^ ./arch/x86/include/asm/pgtable_types.h: In function ‘pmd_pfn_mask’: ./arch/x86/include/asm/pgtable_types.h:300:10: warning: large integer implicitly truncated to unsigned type [-Woverflow] return ~((1ULL << PMD_SHIFT) - 1) & PHYSICAL_PAGE_MASK; ^ In file included from ./arch/x86/include/asm/boot.h:5:0, from arch/x86/realmode/rm/../../boot/boot.h:26, from arch/x86/realmode/rm/../../boot/video-mode.c:18, from arch/x86/realmode/rm/video-mode.c:1: ./arch/x86/include/asm/pgtable_types.h: In function ‘pud_pfn_mask’: ./arch/x86/include/asm/pgtable_types.h:282:10: warning: large integer implicitly truncated to unsigned type [-Woverflow] return ~((1ULL << PUD_SHIFT) - 1) & PHYSICAL_PAGE_MASK; ^ ... That's a 64-bit config. -- Regards/Gruss, Boris. ECO tip #101: Trim your mails when you reply. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/