From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 03B8EFA372C for ; Thu, 7 Nov 2019 03:30:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C6665222CB for ; Thu, 7 Nov 2019 03:30:13 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="Y4EUwgll" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727581AbfKGDaM (ORCPT ); Wed, 6 Nov 2019 22:30:12 -0500 Received: from us-smtp-1.mimecast.com ([205.139.110.61]:54198 "EHLO us-smtp-delivery-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727751AbfKGDaM (ORCPT ); Wed, 6 Nov 2019 22:30:12 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1573097411; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=ysog8BJEqUBkq8d1ilBdsk1voJg26ciFZ92elSxaQhs=; b=Y4EUwgllUaguvTwN7v0CMliHxaRJdJoD5WJiWP9sNQD/wmF2f7HXLmEOmRq2PTRpXKXJf4 rttdXbJC+xEondGkGRa8yzVn7n5ZpYq6xLlGY+V820K14aLCRkRriV2Kvt5ZHSf89PRPW7 OevWyO63cT+NtS7i70IWjH/lTUJp3wg= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-66-0D2ve2QbP6m0-ulIW5FPqw-1; Wed, 06 Nov 2019 22:30:08 -0500 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 4A1161800D7B; Thu, 7 Nov 2019 03:30:07 +0000 (UTC) Received: from jlaw-desktop.bos.redhat.com (dhcp-17-119.bos.redhat.com [10.18.17.119]) by smtp.corp.redhat.com (Postfix) with ESMTP id E42975D9CD; Thu, 7 Nov 2019 03:30:02 +0000 (UTC) From: Joe Lawrence To: linux-kernel@vger.kernel.org, live-patching@vger.kernel.org Cc: Josh Poimboeuf Subject: [PATCH v2] x86/stacktrace: update kconfig help text for reliable unwinders Date: Wed, 6 Nov 2019 22:29:58 -0500 Message-Id: <20191107032958.14034-1-joe.lawrence@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-MC-Unique: 0D2ve2QbP6m0-ulIW5FPqw-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable Sender: live-patching-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: live-patching@vger.kernel.org Archived-At: List-Archive: List-Post: commit 6415b38bae26 ("x86/stacktrace: Enable HAVE_RELIABLE_STACKTRACE for the ORC unwinder") added the ORC unwinder as a "reliable" unwinder. Update the help text to reflect that change: the frame pointer unwinder is no longer the only one that can provide HAVE_RELIABLE_STACKTRACE. Signed-off-by: Joe Lawrence --- v2: dropped hunk that added unnecessary text to UNWIND_GUESS arch/x86/Kconfig.debug | 4 ---- 1 file changed, 4 deletions(-) diff --git a/arch/x86/Kconfig.debug b/arch/x86/Kconfig.debug index bf9cd83de777..409c00f74e60 100644 --- a/arch/x86/Kconfig.debug +++ b/arch/x86/Kconfig.debug @@ -316,10 +316,6 @@ config UNWINDER_FRAME_POINTER =09 unwinder, but the kernel text size will grow by ~3% and the kernel's =09 overall performance will degrade by roughly 5-10%. =20 -=09 This option is recommended if you want to use the livepatch -=09 consistency model, as this is currently the only way to get a -=09 reliable stack trace (CONFIG_HAVE_RELIABLE_STACKTRACE). - config UNWINDER_GUESS =09bool "Guess unwinder" =09depends on EXPERT --=20 2.21.0