From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753918AbcLFS7N (ORCPT ); Tue, 6 Dec 2016 13:59:13 -0500 Received: from foss.arm.com ([217.140.101.70]:50690 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752965AbcLFS7M (ORCPT ); Tue, 6 Dec 2016 13:59:12 -0500 Date: Tue, 6 Dec 2016 18:58:24 +0000 From: Mark Rutland To: Laura Abbott Cc: Ard Biesheuvel , Will Deacon , Catalin Marinas , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , x86@kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, Andrew Morton , Marek Szyprowski , Joonsoo Kim , linux-arm-kernel@lists.infradead.org Subject: Re: [PATCHv4 10/10] arm64: Add support for CONFIG_DEBUG_VIRTUAL Message-ID: <20161206185823.GJ24177@leverpostej> References: <1480445729-27130-1-git-send-email-labbott@redhat.com> <1480445729-27130-11-git-send-email-labbott@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1480445729-27130-11-git-send-email-labbott@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Nov 29, 2016 at 10:55:29AM -0800, Laura Abbott wrote: > > + WARN(!__is_lm_address(x), > + "virt_to_phys used for non-linear address :%pK\n", (void *)x); Nit: s/ :/: / It might be worth adding %pS too; i.e. WARN(!__is_lm_address(x), "virt_to_phys used for non-linear address: %pK (%pS)\n", (void *)x, (void *)x); ... that way we might get a better idea before we have to resort to grepping objdump output. Other than that this looks good to me. This builds cleanly with and without DEBUG_VIRTUAL enabled, and boots happily with DEBUG_VIRTUAL disabled. With both DEBUG_VIRTUAL and KASAN, I'm hitting a sea of warnings from kasan_init at boot time, but I don't think that's a problem with this patch as such, so FWIW: Reviewed-by: Mark Rutland Tested-by: Mark Rutland Thanks, Mark.