Received: by 10.192.165.148 with SMTP id m20csp517912imm; Wed, 2 May 2018 04:30:37 -0700 (PDT) X-Google-Smtp-Source: AB8JxZqqdJivVnZG8Ci9do6HQx5raQlJ+iDyd/J8FXjv5kzAAWe3TSph/bLmM01tORROaoPjC2yp X-Received: by 10.98.113.5 with SMTP id m5mr12796817pfc.167.1525260637609; Wed, 02 May 2018 04:30:37 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1525260637; cv=none; d=google.com; s=arc-20160816; b=eK/UrnRUeQmrt09ezBJrIdsfUVKjOGsy5bwzl9VSMNjF2X07m8ISdJmxSVMB/1eXMB OrnBaHVBVTpiyUFnal/OgKXPkbFu1c/SCJiC7QWnbNd9Fwp4GOv3pfcjsDbls/JbVxjt IZgpn+mIEvlwPJl2aCRBlyVB2rUzfjB1pR606wmReLxe4CVBjEo5o2IdpmIMbDpWu0UC 0HIrqRQ+wuB3ZW8CdtHYjsRneBhZD/P1rRM8MAorM4F3QcS8ap9glYrGSqSKt/1d8WGT /j7XbNcnUJbCoryl6v9xrcwlMyxktNAfIi+44qCMagH7TSggtZA31+1+I/VJ6Z83/fIN ZIsQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from :arc-authentication-results; bh=tY8EZ5QBAZ/X/NOplWBvKIr5GeBfZ5YOOMJ3BOcHEdo=; b=RosaWcErZOt1wgKPrmh4aHNDAAYvQxTIXXDeRrkSGjAi6kv3WCGrUbDR2vOEdrQmci DqQIL7JZmQfhgoVlehymUUrul/eu5zB9LurjbLrGOHaMtze506D/s3xb1At6XdKwTLHE OG3wKF9YJxrhZKVGOETI3VzgoDUv4dtlvgqDOVDnoTeH6HC50NUH5aLCKUDuk5gJzq3p l1bb5iyOSZVm6cyuKJUpGfHl9Yk6euqh8JfedOtUadyswd8nJ4lda+9uxHN9m037anaz 1SlcLd+VxUSAPf/URaexGcLVKgKdGV9EbAP2RBSsNfi7rIa06PzuD0I0/tdIQX/ZXhPi bwUg== ARC-Authentication-Results: i=1; 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 Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id o7si4089844pfh.103.2018.05.02.04.30.22; Wed, 02 May 2018 04:30:37 -0700 (PDT) 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 S1751271AbeEBL36 (ORCPT + 99 others); Wed, 2 May 2018 07:29:58 -0400 Received: from ozlabs.org ([203.11.71.1]:58839 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750939AbeEBL35 (ORCPT ); Wed, 2 May 2018 07:29:57 -0400 Received: by ozlabs.org (Postfix, from userid 1034) id 40bbfW5sHvz9s0W; Wed, 2 May 2018 21:29:55 +1000 (AEST) From: Michael Ellerman To: rostedt@goodmis.org, mingo@redhat.com Cc: linux-kernel@vger.kernel.org, linuxppc-dev@ozlabs.org Subject: [PATCH] tracing: Remove PPC32 wart from config TRACING_SUPPORT Date: Wed, 2 May 2018 21:29:48 +1000 Message-Id: <20180502112948.1747-1-mpe@ellerman.id.au> X-Mailer: git-send-email 2.14.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org config TRACING_SUPPORT has an exception for PPC32, because PPC32 didn't have irqflags tracing support. But that hasn't been true since commit 5d38902c4838 ("powerpc: Add irqtrace support for 32-bit powerpc") (Jun 2009). So remove the exception for PPC32 and the comment. Signed-off-by: Michael Ellerman --- kernel/trace/Kconfig | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/kernel/trace/Kconfig b/kernel/trace/Kconfig index c4f0f2e4126e..dd6c0a2ad969 100644 --- a/kernel/trace/Kconfig +++ b/kernel/trace/Kconfig @@ -110,11 +110,7 @@ config GENERIC_TRACER # config TRACING_SUPPORT bool - # PPC32 has no irqflags tracing support, but it can use most of the - # tracers anyway, they were tested to build and work. Note that new - # exceptions to this list aren't welcomed, better implement the - # irqflags tracing for your architecture. - depends on TRACE_IRQFLAGS_SUPPORT || PPC32 + depends on TRACE_IRQFLAGS_SUPPORT depends on STACKTRACE_SUPPORT default y -- 2.14.1