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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DD051C433F5 for ; Tue, 26 Oct 2021 15:42:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id BF13260F92 for ; Tue, 26 Oct 2021 15:42:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235764AbhJZPpS (ORCPT ); Tue, 26 Oct 2021 11:45:18 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44566 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235153AbhJZPpR (ORCPT ); Tue, 26 Oct 2021 11:45:17 -0400 Received: from ms.lwn.net (ms.lwn.net [IPv6:2600:3c01:e000:3a1::42]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 24144C061745; Tue, 26 Oct 2021 08:42:54 -0700 (PDT) Received: from localhost (unknown [IPv6:2601:281:8300:104d::5f6]) (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 124E25ED5; Tue, 26 Oct 2021 15:42:53 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 124E25ED5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1635262973; bh=3gc4vV+tU4bNJypurxjSBfHk40yL80BPXB366nAZYxc=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=p/RS7LSjDYY8ixyq7Lqx5M1pNLg2lOimIP6f77kiQWRNtZggyxzLlWYtQWxU8XcCi d/mIA7FxyHZ+2xHBot2fiUs85ryBlu5wK2Yb/sLg2Ma7SwrRlC/U+xYbaOXZTejhCm FWKrkoK5eyC+ZRka6XL30ni72U3cmHt9cmMWnPmAa+TcbZVVhRtuMnzgN189jfaRgL xJptnngsPIqNZN692wFpye+bbwgSPvzeDXx5HKqG0JPc+Mx66OwmZXEwnxtbsyqqz/ ZfNocUipElHn/OYv5NiRCkBUXy5tbysF25yf4gII+CNg/qcDVl8mYifAuAAyT8SpTc ifPj2Mn0P2mpA== From: Jonathan Corbet To: Mauro Carvalho Chehab , Linux Doc Mailing List Cc: Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, John Fastabend , KP Singh , Martin KaFai Lau , Mauro Carvalho Chehab , Song Liu , Yonghong Song , bpf@vger.kernel.org, netdev@vger.kernel.org Subject: Re: [PATCH 0/2] Two fixes for documentation-file-ref-check In-Reply-To: References: Date: Tue, 26 Oct 2021 09:42:52 -0600 Message-ID: <875ytjg5c3.fsf@meer.lwn.net> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: bpf@vger.kernel.org Mauro Carvalho Chehab writes: > Hi Jon, > > This small series contain two fixes for documentation-file-ref-check, > in order to remove some (false) positives. > > The first one makes it to ignore files that start with a dot. It > prevents the script to try parsing hidden files. > > The second one shuts up (currently) two false-positives for some > documents under: > > tools/bpf/bpftool/Documentation/ > > Mauro Carvalho Chehab (2): > scripts: documentation-file-ref-check: ignore hidden files > scripts: documentation-file-ref-check: fix bpf selftests path > > scripts/documentation-file-ref-check | 4 ++++ > 1 file changed, 4 insertions(+) Set applied, thanks. jon