From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752681AbaBJKln (ORCPT ); Mon, 10 Feb 2014 05:41:43 -0500 Received: from fw-tnat.austin.arm.com ([217.140.110.23]:27765 "EHLO collaborate-mta1.arm.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752214AbaBJKll (ORCPT ); Mon, 10 Feb 2014 05:41:41 -0500 Date: Mon, 10 Feb 2014 10:41:36 +0000 From: Catalin Marinas To: Kees Cook Cc: "linux-arm-kernel@lists.infradead.org" , Russell King , Will Deacon , Steven Capper , Christoffer Dall , Cyril Chemparathy , Marc Zyngier , Laura Abbott , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH] ARM: mm: report both sections from PMD Message-ID: <20140210104135.GD25305@arm.com> References: <20140209221826.GA30556@www.outflux.net> <20140210102935.GC25305@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140210102935.GC25305@arm.com> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Feb 10, 2014 at 10:29:35AM +0000, Catalin Marinas wrote: > On Sun, Feb 09, 2014 at 10:18:26PM +0000, Kees Cook wrote: > > diff --git a/arch/arm/mm/dump.c b/arch/arm/mm/dump.c > > index 1f7b1e13d945..ff1559f9200c 100644 > > --- a/arch/arm/mm/dump.c > > +++ b/arch/arm/mm/dump.c > > @@ -264,6 +264,9 @@ static void walk_pmd(struct pg_state *st, pud_t *pud, unsigned long start) > > note_page(st, addr, 3, pmd_val(*pmd)); > > else > > walk_pte(st, pmd, addr); > > + > > + if (SECTION_SIZE < PMD_SIZE && pmd_sect(*pmd)) > > + note_page(st, addr + SECTION_SIZE, 3, pmd_val(pmd[1])); > > You can use pmd_large() here as well. > > But I think this function is broken (the "for" statement not shown > here). The pmd_t is 32-bit with classic MMU and it uses pmd++ while the > address grows by PMD_SIZE (two pmd_t entries). Actually it's ok since PTRS_PER_PMD is 1, so it only goes through this loop once. But in your patch shouldn't you check for pmd_large(*(pmd+1))? The first pmd is already caught by the 'if' statement. -- Catalin