From patchwork Fri Nov 6 17:51:20 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Catalin Marinas X-Patchwork-Id: 56140 Delivered-To: patch@linaro.org Received: by 10.112.61.134 with SMTP id p6csp1149633lbr; Fri, 6 Nov 2015 09:51:42 -0800 (PST) X-Received: by 10.68.179.101 with SMTP id df5mr19649178pbc.73.1446832301936; Fri, 06 Nov 2015 09:51:41 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id rp3si1537990pbc.75.2015.11.06.09.51.40; Fri, 06 Nov 2015 09:51:41 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966246AbbKFRvZ (ORCPT + 28 others); Fri, 6 Nov 2015 12:51:25 -0500 Received: from foss.arm.com ([217.140.101.70]:43282 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S966227AbbKFRvY (ORCPT ); Fri, 6 Nov 2015 12:51:24 -0500 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id EAEAAF5; Fri, 6 Nov 2015 09:51:12 -0800 (PST) Received: from e104818-lin.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.72.51.249]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id B246D3F267; Fri, 6 Nov 2015 09:51:22 -0800 (PST) Date: Fri, 6 Nov 2015 17:51:20 +0000 From: Catalin Marinas To: "Shi, Yang" Cc: Mark Rutland , linaro-kernel@lists.linaro.org, Will Deacon , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH] arm64: remove redundant FRAME_POINTER kconfig option Message-ID: <20151106175119.GD7637@e104818-lin.cambridge.arm.com> References: <1446658671-16238-1-git-send-email-yang.shi@linaro.org> <20151106123008.GK6087@arm.com> <20151106125002.GA8116@leverpostej> <20151106162109.GZ7637@e104818-lin.cambridge.arm.com> <20151106162538.GU6087@arm.com> <563CE21A.6060803@linaro.org> <20151106173558.GC7637@e104818-lin.cambridge.arm.com> <563CE5BB.2080701@linaro.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <563CE5BB.2080701@linaro.org> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Nov 06, 2015 at 09:39:07AM -0800, Shi, Yang wrote: > On 11/6/2015 9:35 AM, Catalin Marinas wrote: > >On Fri, Nov 06, 2015 at 09:23:38AM -0800, Shi, Yang wrote: > >>On 11/6/2015 8:25 AM, Will Deacon wrote: > >>>However, the patch would allow one to > >>>disable FRAME_POINTERS (not sure it has any effect on the aarch64 gcc > >>>though). > >> > >>No, it doesn't. Actually, FRAME_POINTER could be disabled regardless of the > >>patch. > > > >In which case I suggest that we always select it just as a clearer > >statement that the feature cannot be disabled (and you never know what > >the compiler people decide to do in the future). > > Do you mean select FRAME_POINTER in ARCH_WANT_FRAME_POINTERS? > > Yes, we could, but this may cause other architectures which select > ARCH_WANT_FRAME_POINTERS to have FRAME_POINTER selected too. This would have been the ideal option, something like: -- Catalin -- 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/ --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -322,7 +322,7 @@ config ARCH_WANT_FRAME_POINTERS help config FRAME_POINTER - bool "Compile the kernel with frame pointers" + bool "Compile the kernel with frame pointers" if !ARCH_WANT_FRAME_POINTERS depends on DEBUG_KERNEL && \ (CRIS || M68K || FRV || UML || \ AVR32 || SUPERH || BLACKFIN || MN10300 || METAG) || \ But, as you said, we would need to check the other architectures selecting ARCH_WANT_FRAME_POINTERS. In the meantime: --- a/arch/arm64/Kconfig +++ b/arch/arm64/Kconfig @@ -27,6 +27,7 @@ config ARM64 select CPU_PM if (SUSPEND || CPU_IDLE) select DCACHE_WORD_ACCESS select EDAC_SUPPORT + select FRAME_POINTER select GENERIC_ALLOCATOR select GENERIC_CLOCKEVENTS select GENERIC_CLOCKEVENTS_BROADCAST