From patchwork Thu Sep 16 09:14:01 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mauro Carvalho Chehab X-Patchwork-Id: 12498361 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=-19.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable 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 D824DC433F5 for ; Thu, 16 Sep 2021 09:15:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id BF38F6120F for ; Thu, 16 Sep 2021 09:15:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236128AbhIPJQU (ORCPT ); Thu, 16 Sep 2021 05:16:20 -0400 Received: from mail.kernel.org ([198.145.29.99]:40940 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235449AbhIPJPm (ORCPT ); Thu, 16 Sep 2021 05:15:42 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 694A861241; Thu, 16 Sep 2021 09:14:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1631783661; bh=KFZt39MYhJdE0FBZY8pCk3XsJMfrKwUmacKBtK1J1wQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=NVpLX3fFHnguS0eSdwwT+N/EGTWbVIJnmvalJWJOcEEivlKbY9WYTPQTw5SFa4VQc wpIUqmxYxp7WU2A9qxrhCPY28tvnp6kdV2kVHKMGOKtDN8HoZPYB/9vjk9sbLq3qxd h+85QyelY6A659hfETsIptUKl+ZiLjkDARsJtvlbBKkHKF3NOhs5lGrLxDiMmGIlv8 JhvW2yimXzkXAv+gxStbYx+ii3F4YIHYWNW5bng5vhHi2hHN33wvTlTCiuaBifOhmI BhBoJBSQ93ML/Fgi81USIIMYL62DIyajMTR2ByLQhlkihJyFMj/oec1s84cZd5zcIE cfLLgsSWLaPEA== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1mQnTH-001sL5-IO; Thu, 16 Sep 2021 11:14:19 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List , Jonathan Corbet Cc: Mauro Carvalho Chehab , "David S. Miller" , Alexei Starovoitov , Andrii Nakryiko , Daniel Borkmann , David Beckett , Jakub Kicinski , John Fastabend , KP Singh , Martin KaFai Lau , Quentin Monnet , Shuah Khan , Song Liu , Yonghong Song , bpf@vger.kernel.org, linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org, netdev@vger.kernel.org Subject: [PATCH 08/24] tools: bpftool: update bpftool-prog.rst reference Date: Thu, 16 Sep 2021 11:14:01 +0200 Message-Id: X-Mailer: git-send-email 2.31.1 In-Reply-To: References: MIME-Version: 1.0 Sender: Mauro Carvalho Chehab Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org The file name: Documentation/bpftool-prog.rst should be, instead: tools/bpf/bpftool/Documentation/bpftool-prog.rst. Update its cross-reference accordingly. Fixes: a2b5944fb4e0 ("selftests/bpf: Check consistency between bpftool source, doc, completion") Fixes: ff69c21a85a4 ("tools: bpftool: add documentation") Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Mauro Carvalho Chehab --- tools/testing/selftests/bpf/test_bpftool_synctypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/bpf/test_bpftool_synctypes.py b/tools/testing/selftests/bpf/test_bpftool_synctypes.py index be54b7335a76..27a2c369a798 100755 --- a/tools/testing/selftests/bpf/test_bpftool_synctypes.py +++ b/tools/testing/selftests/bpf/test_bpftool_synctypes.py @@ -374,7 +374,7 @@ class ManProgExtractor(ManPageExtractor): """ An extractor for bpftool-prog.rst. """ - filename = os.path.join(BPFTOOL_DIR, 'Documentation/bpftool-prog.rst') + filename = os.path.join(BPFTOOL_DIR, 'tools/bpf/bpftool/Documentation/bpftool-prog.rst') def get_attach_types(self): return self.get_rst_list('ATTACH_TYPE')