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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id AE4EBC197A0 for ; Fri, 17 Nov 2023 16:07:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233254AbjKQQHb (ORCPT ); Fri, 17 Nov 2023 11:07:31 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43284 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231569AbjKQQH3 (ORCPT ); Fri, 17 Nov 2023 11:07:29 -0500 Received: from ms.lwn.net (ms.lwn.net [IPv6:2600:3c01:e000:3a1::42]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5715890; Fri, 17 Nov 2023 08:07:26 -0800 (PST) Received: from localhost (unknown [75.104.68.237]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 17CC72F3; Fri, 17 Nov 2023 16:07:24 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 17CC72F3 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1700237246; bh=BC2tbfdaRf5Lo95YlMn9cKPQvKOIugOE7GjfLAsoqJs=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=CB0YfMGPVJjDcFVp29ZBq/m2IjMmQyZkh5MLhbuefp8kQEz/vjVvOQiDcjShuIuh1 EX1MN9P5ij+fI4pEveQ673LPZkD59HXOBlvlT3K39LFGkulZTVnBsMzC8rPUQBy28E 7YkwuOiL/78eutKo1uYT8hn7mnXafomEUT+lCh73nxB3JmzA10lQUtJ3M4EVUv66wA MJeRz071X1PoPr40zTecL4jq8ra8kAUm7/x8I7MbHFFRU4cUbjXetXQJ8K1CCLbM// 29dUrXQ39HETSgLDPxaKd6Ag4ePeuWF3LCokQKrg9jiv8NtC47eWEnJRs0TXcS3gXm o0RBZVZJ6/XFA== From: Jonathan Corbet To: Yuanhsi Chung , rostedt@goodmis.org Cc: mingo@redhat.com, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, Yuanhsi Chung Subject: Re: [PATCH] Documentation: Fix filename typo in ftrace doc In-Reply-To: <20231104103329.215139-1-freshliver.cys@gmail.com> References: <20231104103329.215139-1-freshliver.cys@gmail.com> Date: Fri, 17 Nov 2023 09:07:14 -0700 Message-ID: <871qcoxt1p.fsf@meer.lwn.net> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Yuanhsi Chung writes: > The filename for setting the cpumask should be `tracing_cpumask`, > instead of `tracing_cpu_mask`. > > Signed-off-by: Yuanhsi Chung > --- > Documentation/trace/ftrace.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/trace/ftrace.rst b/Documentation/trace/ftrace.rst > index b37dc19e4d40..b93f11c430a9 100644 > --- a/Documentation/trace/ftrace.rst > +++ b/Documentation/trace/ftrace.rst > @@ -2524,7 +2524,7 @@ want, depending on your needs. > > - The cpu number on which the function executed is default > enabled. It is sometimes better to only trace one cpu (see > - tracing_cpu_mask file) or you might sometimes see unordered > + tracing_cpumask file) or you might sometimes see unordered > function calls while cpu tracing switch. Applied, thanks. jon