Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp669307pxk; Wed, 16 Sep 2020 13:56:49 -0700 (PDT) X-Google-Smtp-Source: ABdhPJx102GIdw2LYrjyscHc/D+R3UmykrXcYNMbvw8OFUS3WrlCpfpsxNtlG02kAUmw3dsKMWAn X-Received: by 2002:a17:906:770c:: with SMTP id q12mr26709188ejm.518.1600289809335; Wed, 16 Sep 2020 13:56:49 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1600289809; cv=none; d=google.com; s=arc-20160816; b=GQEyQftaxa70kyUNia+CwnwjQjycBdhmKNkFE/M9+izZOqXzjgrsVxRL1ue9KudL1V qAfFvV3pru7TN4irxzZdYOY+qLkdZI6qyiCmFRhKP9OdINfEghJthuP1aEiWgTTPrQqv Cd9A8py3NQkJrLEEKC8BAg50zUaOoUDa1IweUzJkW9ALdlLj/o+CTgf7Ts3AhZn7SqQH K2G4+v5tMU2nDOb0jJn1sLSF7Im4pr3UCz8xEzVcpqC0SZekvlrQgLKTaPzoynqDUSLM 5PjbOGzEU7FQFCBJGDQEvJLc644f1XDWdxBFuehrmOIjqc3kyFT4h9TwrEnEeaL8Rt5m vuEQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :message-id:in-reply-to:subject:cc:to:from:date; bh=h0bdcNl1B9V7YZNJjjkXQEmrVopwf+JxYzJpB9xy5/A=; b=CxBWT4vPP7VjI2husTIwmRdK/vQrv2FUi1u4q1+vjJ/eH6frAe2Uv72t/8thLn0co9 H5oQfBqEFW0lfo9NnROPG+FO9ubaeEpFajvk6pDt8Fev7QsMA6VRMBD97GqHnzSGwQDO Swtll2hT3hNHRJzimXSoPutZuJxRC0a1S54wApnn6GHJ//Z0N1kRcCAYI0xJT2iDXALx kyJdPhIywsRshK/53CbGbyTRLLAMY+CS/7rt1jWjhAjFJCPWOy5vwH+GSClVlqHvWSd+ 0FVjEp525LATyjHVOhaNVacG8YebXoELZ/1f0EAfydoQLN4QZmNJcwwNRKwwZHpPh1y9 xb0g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id c3si9843825ejk.666.2020.09.16.13.56.25; Wed, 16 Sep 2020 13:56:49 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726592AbgIPUxT (ORCPT + 99 others); Wed, 16 Sep 2020 16:53:19 -0400 Received: from mx2.suse.de ([195.135.220.15]:44522 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726598AbgIPQyM (ORCPT ); Wed, 16 Sep 2020 12:54:12 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id AD3B3AF0E; Wed, 16 Sep 2020 13:13:58 +0000 (UTC) Date: Wed, 16 Sep 2020 15:13:42 +0200 (CEST) From: Miroslav Benes To: Mark Brown cc: Catalin Marinas , Will Deacon , Mark Rutland , Vasily Gorbik , Heiko Carstens , Borislav Petkov , Thomas Gleixner , "H . Peter Anvin" , Christian Borntraeger , Ingo Molnar , Jiri Slaby , x86@kernel.org, linux-arm-kernel@lists.infradead.org, linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 0/3] arm64: Convert to ARCH_STACKWALK In-Reply-To: <20200914153409.25097-1-broonie@kernel.org> Message-ID: References: <20200914153409.25097-1-broonie@kernel.org> User-Agent: Alpine 2.21 (LSU 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 14 Sep 2020, Mark Brown wrote: > This series updates the arm64 stacktrace code to use the newer and much > simpler arch_stack_walk() interface, the main benefit being a single > entry point to the arch code with no need for the arch code to worry > about skipping frames. Along the way I noticed that the reliable > parameter to the arch_stack_walk() callback appears to be redundant > so there's also a patch here removing that from the existing code to > simplify the interface. > > This is preparatory work for implementing reliable stack trace for > arm64. > > v3: > - Rebase onto v5.9-rc3. > - Fix handling of task == current. > - Flip the sense of the walk_stackframe() callback. > v2: > - Rebase onto v5.9-rc1. > > Mark Brown (3): > stacktrace: Remove reliable argument from arch_stack_walk() callback > arm64: stacktrace: Make stack walk callback consistent with generic > code > arm64: stacktrace: Convert to ARCH_STACKWALK The patches look good to me. Reviewed-by: Miroslav Benes M