From nobody Mon Feb 9 13:59:33 2026 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 2CE89EB64D7 for ; Fri, 23 Jun 2023 14:46:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232119AbjFWOqM (ORCPT ); Fri, 23 Jun 2023 10:46:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39892 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232258AbjFWOp5 (ORCPT ); Fri, 23 Jun 2023 10:45:57 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 672B92D5E for ; Fri, 23 Jun 2023 07:45:43 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 00FF561A77 for ; Fri, 23 Jun 2023 14:45:43 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id A2A44C433C0; Fri, 23 Jun 2023 14:45:41 +0000 (UTC) Date: Fri, 23 Jun 2023 10:45:39 -0400 From: Steven Rostedt To: LKML Cc: Masami Hiramatsu , Mark Rutland , Donglin Peng , Stephen Rothwell Subject: [for-next][PATCH] tracing: Fix warnings when building htmldocs for function graph retval Message-ID: <20230623104539.0b167b12@gandalf.local.home> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git trace/for-next Head SHA1: fc30ace06f250f79381a8e3f6ed92dd68e25a9f5 Donglin Peng (1): tracing: Fix warnings when building htmldocs for function graph retval ---- Documentation/trace/ftrace.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --------------------------- commit fc30ace06f250f79381a8e3f6ed92dd68e25a9f5 Author: Donglin Peng Date: Fri Jun 23 15:17:28 2023 +0800 tracing: Fix warnings when building htmldocs for function graph retval =20 When building htmldocs, the following warnings appear: =20 Documentation/trace/ftrace.rst:2797: WARNING: Literal block expected; n= one found. Documentation/trace/ftrace.rst:2816: WARNING: Literal block expected; n= one found. =20 So fix it. =20 Link: https://lore.kernel.org/all/20230623143517.19ffc6c0@canb.auug.org= .au/ Link: https://lkml.kernel.org/r/20230623071728.25688-1-pengdonglin@sang= for.com.cn =20 Fixes: 21c094d3f8a6 ("tracing: Add documentation for funcgraph-retval a= nd funcgraph-retval-hex") Signed-off-by: Donglin Peng Acked-by: Masami Hiramatsu (Google) Reported-by: Stephen Rothwell Signed-off-by: Steven Rostedt (Google) diff --git a/Documentation/trace/ftrace.rst b/Documentation/trace/ftrace.rst index b7308ab10c0e..f606c5bd1c0d 100644 --- a/Documentation/trace/ftrace.rst +++ b/Documentation/trace/ftrace.rst @@ -2792,7 +2792,7 @@ option, and these limitations will be eliminated in t= he future: especially when larger types are truncated, whether explicitly or implic= itly. Here are some specific cases to illustrate this point: =20 - **Case One**:: + **Case One**: =20 The function narrow_to_u8 is defined as follows:: =20 @@ -2811,7 +2811,7 @@ option, and these limitations will be eliminated in t= he future: If you pass 0x123456789abcdef to this function and want to narrow it, it may be recorded as 0x123456789abcdef instead of 0xef. =20 - **Case Two**:: + **Case Two**: =20 The function error_if_not_4g_aligned is defined as follows::