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=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS 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 60A6BC43613 for ; Thu, 20 Jun 2019 20:06:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 329562084A for ; Thu, 20 Jun 2019 20:06:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727017AbfFTUGx (ORCPT ); Thu, 20 Jun 2019 16:06:53 -0400 Received: from ms.lwn.net ([45.79.88.28]:47546 "EHLO ms.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726043AbfFTUGx (ORCPT ); Thu, 20 Jun 2019 16:06:53 -0400 Received: from lwn.net (localhost [127.0.0.1]) (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 D22A82BA; Thu, 20 Jun 2019 20:06:52 +0000 (UTC) Date: Thu, 20 Jun 2019 14:06:51 -0600 From: Jonathan Corbet To: Mauro Carvalho Chehab Cc: Linux Doc Mailing List , Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Masami Hiramatsu , "Steven Rostedt (VMware)" , Andreas Ziegler , Lecopzer Chen Subject: Re: [PATCH 1/6] docs: trace: fix a broken label Message-ID: <20190620140651.393e4680@lwn.net> In-Reply-To: References: Organization: LWN.net MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 18 Jun 2019 15:51:17 -0300 Mauro Carvalho Chehab wrote: > Sphinx warnings about his: > > Documentation/trace/kprobetrace.rst:68: WARNING: undefined label: user_mem_access (if the link has no caption the label must precede a section header) > > The problem is quite simple: Sphinx wants a blank line after > references. > > Signed-off-by: Mauro Carvalho Chehab > --- > Documentation/trace/kprobetrace.rst | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/Documentation/trace/kprobetrace.rst b/Documentation/trace/kprobetrace.rst > index b729b40a5ba5..3d162d432a3c 100644 > --- a/Documentation/trace/kprobetrace.rst > +++ b/Documentation/trace/kprobetrace.rst > @@ -96,6 +96,7 @@ which shows given pointer in "symbol+offset" style. > For $comm, the default type is "string"; any other type is invalid. > > .. _user_mem_access: This one doesn't apply to docs-next; it should probably go through whichever tree introduced the issue into linux-next. Thanks, jon