From patchwork Thu Sep 16 09:55:09 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: 12498469 X-Patchwork-Delegate: bpf@iogearbox.net 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 0DFF7C4332F for ; Thu, 16 Sep 2021 09:56:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EDC7F61185 for ; Thu, 16 Sep 2021 09:56:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237151AbhIPJ5f (ORCPT ); Thu, 16 Sep 2021 05:57:35 -0400 Received: from mail.kernel.org ([198.145.29.99]:58054 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236221AbhIPJ4s (ORCPT ); Thu, 16 Sep 2021 05:56:48 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 422DE61246; Thu, 16 Sep 2021 09:55:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1631786126; bh=SoojYHvRGcHq15wi1lokm8T7b2MKM9WukjphpKpCLUU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=qNqk8O4PX1qXimy6EWm5bQoVNFiVTR5H3v6A43glANGoBIWoKM/8Tzvig7E5moXtT l1/0IqcfiTwxlPZGO9wQDDYvh3G2dFW673LPfUvSG8FhJtXWgsm6McLgJvTassg1/W BRTx36XZrifByAfgOmkfwtP48stDuKpUH/8WXzDdGjiD5d02DZkg78B09ZBW4HVo/y 6YM74V+b1EdkuM4VUaHeZrwlFQkb7kcBVsOLBwJjcw6dsHrWypnIk0vOGF78UF0V1I Q6fNOtbAUT+CU4A1HKWmaABEXYsBFawsegShcjzQU8oVZG9ssnEDAtBOOW47npnz5m 0h07Tuz/vydlA== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1mQo72-001vTw-Gk; Thu, 16 Sep 2021 11:55:24 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List , Jonathan Corbet Cc: Mauro Carvalho Chehab , Alexei Starovoitov , Andrii Nakryiko , Daniel Borkmann , David Ahern , Jakub Kicinski , John Fastabend , KP Singh , Martin KaFai Lau , Quentin Monnet , Roman Gushchin , 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 v2 10/23] bpftool: update bpftool-cgroup.rst reference Date: Thu, 16 Sep 2021 11:55:09 +0200 Message-Id: <9e9f62ab09c26736338545f9aa27c0e825517a32.1631785820.git.mchehab+huawei@kernel.org> 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: bpf@vger.kernel.org X-Patchwork-Delegate: bpf@iogearbox.net The file name: Documentation/bpftool-cgroup.rst should be, instead: tools/bpf/bpftool/Documentation/bpftool-cgroup.rst. Update its cross-reference accordingly. Fixes: a2b5944fb4e0 ("selftests/bpf: Check consistency between bpftool source, doc, completion") Fixes: 5ccda64d38cc ("bpftool: implement cgroup bpf operations") 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 2d7eb683bd5a..c974abd4db13 100755 --- a/tools/testing/selftests/bpf/test_bpftool_synctypes.py +++ b/tools/testing/selftests/bpf/test_bpftool_synctypes.py @@ -392,7 +392,7 @@ class ManCgroupExtractor(ManPageExtractor): """ An extractor for bpftool-cgroup.rst. """ - filename = os.path.join(BPFTOOL_DIR, 'Documentation/bpftool-cgroup.rst') + filename = os.path.join(BPFTOOL_DIR, 'tools/bpf/bpftool/Documentation/bpftool-cgroup.rst') def get_attach_types(self): return self.get_rst_list('ATTACH_TYPE')