From patchwork Wed Nov 17 14:07:28 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mark Rutland X-Patchwork-Id: 12692897 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3CC3FC433F5 for ; Wed, 17 Nov 2021 14:09:23 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id F068361BFA for ; Wed, 17 Nov 2021 14:09:22 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org F068361BFA Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:MIME-Version:List-Subscribe:List-Help: List-Post:List-Archive:List-Unsubscribe:List-Id:Message-Id:Date:Subject:Cc:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=L/Rtm+POvzk/m4yeeDL8aqmGGpUIBvV/zU5DERvu740=; b=YsxPoFp8jDkKWt Dn7n8gPO5k+6xmkKLiXLYzGQn8X4FpTNk1EILylBTZLHM6X8ybGN3OoSxDHptBSqWe8xrfwPeFuh/ ELPrzOxeLEnEjpGT1JLroil7fdP+xzHKSjJMaowIIBVc4ji9Z0BziKjv/PmF0++LXZvTDAr2rXc5p e1/LyP4FS7KIihiPwjjN4x5JoDEE9cE7f4BISgDY7U3RIrUA6gZGoAHV2VOaZunwyxfW47g/kmHFu VbpdDrqGEue6sh1xHx9ttozj7K9UYAtC/ubhVvvN3BbH0PCU0g65JQganQuBLc0x2VykmgbIYoCWg Zt4ZF10ny5mSJvs/ANUA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mnLbO-0051Ig-Ub; Wed, 17 Nov 2021 14:07:55 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mnLbK-0051HJ-2l for linux-arm-kernel@lists.infradead.org; Wed, 17 Nov 2021 14:07:51 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 860F31FB; Wed, 17 Nov 2021 06:07:48 -0800 (PST) Received: from lakrids.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 01B9A3F70D; Wed, 17 Nov 2021 06:07:45 -0800 (PST) From: Mark Rutland To: linux-arm-kernel@lists.infradead.org Cc: aou@eecs.berkeley.edu, borntraeger@de.ibm.com, bp@alien8.de, broonie@kernel.org, catalin.marinas@arm.com, dave.hansen@linux.intel.com, gor@linux.ibm.com, hca@linux.ibm.com, linux-kernel@vger.kernel.org, madvenka@linux.microsoft.com, mark.rutland@arm.com, mhiramat@kernel.org, mingo@redhat.com, mpe@ellerman.id.au, palmer@dabbelt.com, paul.walmsley@sifive.com, peterz@infradead.org, rostedt@goodmis.org, tglx@linutronix.de, will@kernel.org Subject: [PATCH 0/9] arm64: stacktrace: unify unwind code Date: Wed, 17 Nov 2021 14:07:28 +0000 Message-Id: <20211117140737.44420-1-mark.rutland@arm.com> X-Mailer: git-send-email 2.11.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211117_060750_236953_C02A24A6 X-CRM114-Status: GOOD ( 16.46 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org For historical reasons arm64 has a number of open-coded unwind functions. We'd like to unify these to reduce the amount of unwind code we have to expose, and to make it easier for subsequent patches to rework the unwind code for RELIABLE_STACKTRACE. These patches unify the various unwinders using arch_stack_walk(). So that we can use arch_stack_walk() without having to expose /proc/${PID}/stack, I've picked Peter's patch decoupling ARCH_STACKWALK from STACKTRACE, which was previously posted at: https://lore.kernel.org/lkml/20211022152104.356586621@infradead.org/ As the direction of travel seems to be to not unify the get_wchan() implementations, Peter suggested I pick the patch for now. This is the only patch in the series touching other architectures. The bulk of the series was perviously posted in Madhavan's series adding reliability checks to the unwinder: https://lore.kernel.org/linux-arm-kernel/20211015025847.17694-1-madvenka@linux.microsoft.com/ I have made some minor tweaks and updated each commit message to explain why the transformation is safe. Largely the changes should have no functional effect, but in a couple of cases there is a (benign and/or desirable) functional change, which is described in the relevant commit message. To make it possible for get_wchan() to use arch_stack_walk(), and to correct the expected behaviour of stack_trace_consume_entry_nosched() and stack_trace_save_tsk(), we need to mark arm64's __switch_to() as __sched, for which I've added a preparatory patch. Currently this is based on the arm64 for-next/fixes branch, as the series depends on a patch making arm64 using HAVE_FUNCTION_GRAPH_RET_ADDR_PTR: https://lore.kernel.org/all/20211027132529.30027-1-mark.rutland@arm.com/ I expect that this will be part of v5.16-rc2, and intend to rebase the series once that's tagged. Thanks, Mark. Madhavan T. Venkataraman (5): arm64: Make perf_callchain_kernel() use arch_stack_walk() arm64: Make __get_wchan() use arch_stack_walk() arm64: Make return_address() use arch_stack_walk() arm64: Make profile_pc() use arch_stack_walk() arm64: Make dump_backtrace() use arch_stack_walk() Mark Rutland (3): arm64: Add comment for stack_info::kr_cur arm64: Mark __switch_to() as __sched arm64: Make some stacktrace functions private Peter Zijlstra (1): arch: Make ARCH_STACKWALK independent of STACKTRACE arch/arm64/include/asm/stacktrace.h | 10 +++---- arch/arm64/kernel/perf_callchain.c | 13 ++------ arch/arm64/kernel/process.c | 44 ++++++++++++++++----------- arch/arm64/kernel/return_address.c | 6 +--- arch/arm64/kernel/stacktrace.c | 60 ++++++++----------------------------- arch/arm64/kernel/time.c | 23 +++++++------- arch/powerpc/kernel/Makefile | 3 +- arch/riscv/kernel/stacktrace.c | 4 --- arch/s390/kernel/Makefile | 3 +- arch/x86/kernel/Makefile | 2 +- include/linux/stacktrace.h | 35 +++++++++++----------- 11 files changed, 79 insertions(+), 124 deletions(-)