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=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham 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 99904C2D0DB for ; Tue, 28 Jan 2020 14:25:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6814324686 for ; Tue, 28 Jan 2020 14:25:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580221541; bh=ziGI/k3pZwZT/ZxCQvtV6gIQK7UA8ZSG2yeY0lAKxx8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=KvL8GnANHxqBUPMUCE/D0yYESouctmTXuXb3Vjm59e6OoGWHiE4qQW+xClXMku2Hp qZYYYuNndFvFa2CvgB5kLm3g+tcm8WiGW2BK+neGCdKRoO9PdJbRIGttYksRXDLM3v TPYzMODC648Ec87SMcmLqR+oPXIv70WGkC9waq7E= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1733043AbgA1OZk (ORCPT ); Tue, 28 Jan 2020 09:25:40 -0500 Received: from mail.kernel.org ([198.145.29.99]:52678 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1733019AbgA1OZi (ORCPT ); Tue, 28 Jan 2020 09:25:38 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 713E324688; Tue, 28 Jan 2020 14:25:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580221537; bh=ziGI/k3pZwZT/ZxCQvtV6gIQK7UA8ZSG2yeY0lAKxx8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=t3FUZwbYIy3nPJRhL0Y2U4ZV+AlOsOx8mjytVYVq5mS4E8NzxqjhPdmoFs+7xenei 9DX0S1cdIR6DONGrUBt4HuuTWU9ybib0A+FqQv3FmpFtsatEj4mhRNu+o4cOFNOfbR zfuFm1bZe4Rn/Xs40P8zGG2akhW/0tjvGg5FSHgA= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Mathieu Poirier , Suzuki K Poulose Subject: [PATCH 4.9 263/271] coresight: etb10: Do not call smp_processor_id from preemptible Date: Tue, 28 Jan 2020 15:06:52 +0100 Message-Id: <20200128135912.171842103@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200128135852.449088278@linuxfoundation.org> References: <20200128135852.449088278@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Suzuki K Poulose commit 730766bae3280a25d40ea76a53dc6342e84e6513 upstream. During a perf session we try to allocate buffers on the "node" associated with the CPU the event is bound to. If it is not bound to a CPU, we use the current CPU node, using smp_processor_id(). However this is unsafe in a pre-emptible context and could generate the splats as below : BUG: using smp_processor_id() in preemptible [00000000] code: perf/2544 Use NUMA_NO_NODE hint instead of using the current node for events not bound to CPUs. Fixes: 2997aa4063d97fdb39 ("coresight: etb10: implementing AUX API") Cc: Mathieu Poirier Signed-off-by: Suzuki K Poulose Cc: stable # 4.6+ Signed-off-by: Mathieu Poirier Link: https://lore.kernel.org/r/20190620221237.3536-5-mathieu.poirier@linaro.org Signed-off-by: Greg Kroah-Hartman --- drivers/hwtracing/coresight/coresight-etb10.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) --- a/drivers/hwtracing/coresight/coresight-etb10.c +++ b/drivers/hwtracing/coresight/coresight-etb10.c @@ -279,9 +279,7 @@ static void *etb_alloc_buffer(struct cor int node; struct cs_buffers *buf; - if (cpu == -1) - cpu = smp_processor_id(); - node = cpu_to_node(cpu); + node = (cpu == -1) ? NUMA_NO_NODE : cpu_to_node(cpu); buf = kzalloc_node(sizeof(struct cs_buffers), GFP_KERNEL, node); if (!buf)