From nobody Mon May 25 08:10:53 2026 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 40DFA3ED5C8; Sat, 16 May 2026 17:33:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778952821; cv=none; b=WI/iHpU9UK1x1LDzC1ZSh8Q/PHnxoVD8odRTp2y5tDc8MfhiNdclCgzE72C0y/XRTCFwATqpiLrKlpIyJaL91efKgwpG4DqA4+nmCrAQy6LAtrDFu1ydE6cqyCq4ZWL1XzyLeQwbEyXk+HI6NLwdnhauGTzwVgot2TzIOpM+rc0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778952821; c=relaxed/simple; bh=d130QB3UbRe/cU1WrBmF5Tfx5XZci02lTg7wSY1rRPU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=jC5eDOKLRRmWOL2b07PjSL3B6TS92K/bvywPihqEygZIqmQQqyBsWcfSv/K6SGZFrPGkL7qutSAeh84HlFMqMiTt1FxqACDk4ne4zfL1oBMFHdK0sCpaEOL8sp7Dan6uC/8VsXpkXNAjcxO4mnU9gh35P2oFnAfsIQ6Fgvb+2Jc= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=QasRDeMe; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="QasRDeMe" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 913EAC4AF09; Sat, 16 May 2026 17:33:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778952820; bh=d130QB3UbRe/cU1WrBmF5Tfx5XZci02lTg7wSY1rRPU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=QasRDeMeno73j3iE3QWXhQx+F1xsiNhGqAduxQcQBVMuuUzuql6tuPFlus8EV920l LIo3Ws2eArUwTa7rzNejVsUQoaZehDF5e4xJbGfkYj/u/ZiPjCKlFmZDCRkP5oac9y ru6pqbEvWG9HnRbibQJPV70pNZtO9bAYTP+V9wSSy4OnEdSzL+2SaGhhyjp0sRNVs/ i/J2t4ulY7DigK1T0mEYhCztizWYQvzj0b6QQui1jckHIzFeIQtUMedChAsJzAIQXo 0if6shu5hfjo0wL1/8JEHT9qZ92Y337EzwPnyp8GKsHYAl4fgz/9aie+gtCUBzeGAA 0uwrH40X2ZPsA== Received: from mchehab by mail.kernel.org with local (Exim 4.99.2) (envelope-from ) id 1wOItO-00000003IgD-2BEK; Sat, 16 May 2026 19:33:38 +0200 From: Mauro Carvalho Chehab To: Jonathan Corbet , Linux Doc Mailing List , Mauro Carvalho Chehab Cc: Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Shuah Khan Subject: [PATCH 1/2] docs: maintainers_include: restore compatibility with Python 3.6 Date: Sat, 16 May 2026 19:33:33 +0200 Message-ID: <930036c189414f3f7096c22269687489f8566dd9.1778952682.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab glob root_dir parameter requires Python 3.10, which is more than our current Python minimal requirement. Signed-off-by: Mauro Carvalho Chehab --- Documentation/sphinx/maintainers_include.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/sphinx/maintainers_include.py b/Documentation/sp= hinx/maintainers_include.py index be8e566e0363..b8b7282ebe38 100755 --- a/Documentation/sphinx/maintainers_include.py +++ b/Documentation/sphinx/maintainers_include.py @@ -143,7 +143,7 @@ class MaintainersParser: if not m: return None =20 - doc_list =3D glob(m.group(1), root_dir=3Dself.base_dir) + doc_list =3D glob(os.path.join(self.base_dir, m.group(1))) else: doc_list =3D [text] =20 --=20 2.54.0 From nobody Mon May 25 08:10:53 2026 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1611E3EE1F6; Sat, 16 May 2026 17:33:40 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778952821; cv=none; b=OvhUmp05xI28AJ0u5z4a4FTO4eRyEosr5EeG6Kgy9oE8D8OjpmOO+mQ2/JpLR8e74O+8geXRC9ragxaSKlS505YJV55rfNSIJ3uGQg3FPQVtzxVBKomaYNpH2RY6OFPaZIPmEKP2XFHAlvSKbJ5urYRcJd/Y+ewunqbioAjYTNM= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778952821; c=relaxed/simple; bh=RqF8lXLW3qIqOOwQ5mhjlAJCyWcGCos7S1rvuZE5Qx8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=q3UnFb8KbO8pya/OFfENxF8y+t4Pz49Vo1NRaCotpHv92ay7kUFGuw3+l4w8Uqr22ZatBOZG4+ZDNqUgEYdKJnGe+wI4uVt2OV5B+0a7kLZOgCY/UCOnjZdSyV1EUt4xYD2U3VRYO9Rsv8i11NMNtNsM4eJu3rSwLzdZxHnDHLc= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=OdMTCKet; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="OdMTCKet" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8F31CC2BCB8; Sat, 16 May 2026 17:33:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778952820; bh=RqF8lXLW3qIqOOwQ5mhjlAJCyWcGCos7S1rvuZE5Qx8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=OdMTCKetUoYGWESw99fXwdwKCnMNWahUvP2rkL4mMXBU7CrC0VvMOnO/4vuaSUVV6 RwH5gzlh8cCg2Qsh9gkA6gOY4UyqdUNH3kNfL1nM79UoMPm6kRSkUDzcClrv3tcgR3 oxskviFPI5MYdrTsDScOWf/gzLtZnMxH+CbymUDzaOBRF0oD/QN1xYcBjJP7Nw3Quk d0X8nNL//m/G0psBva1/MsqI9qUtx1TKsGnU/D7Gm8WWDQVlWfF29ztus5Xa3sPK4D thVIpAEg4V565LOCqYBO/KYAvFvC3dumU7xDFTTmTjWoZYk3q8FMKsSJZ6/GV8fGxH kmghfGZrWBfhw== Received: from mchehab by mail.kernel.org with local (Exim 4.99.2) (envelope-from ) id 1wOItO-00000003IgH-2IBJ; Sat, 16 May 2026 19:33:38 +0200 From: Mauro Carvalho Chehab To: Jonathan Corbet , Linux Doc Mailing List , Mauro Carvalho Chehab Cc: Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Shuah Khan Subject: [PATCH 2/2] docs: maintainers_include: keep the last entry at the end Date: Sat, 16 May 2026 19:33:34 +0200 Message-ID: X-Mailer: git-send-email 2.54.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab The last maintainer's entry ("THE REST") is meant to be at the end. Ensure that. While here, use a case-insensitive sort to avoid placing "iSCSI" near the end. Signed-off-by: Mauro Carvalho Chehab --- Documentation/sphinx/maintainers_include.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Documentation/sphinx/maintainers_include.py b/Documentation/sp= hinx/maintainers_include.py index b8b7282ebe38..dc9f9e188ffa 100755 --- a/Documentation/sphinx/maintainers_include.py +++ b/Documentation/sphinx/maintainers_include.py @@ -284,7 +284,12 @@ class MaintainersInclude(Include): =20 self.state.document['maintainers_included'] =3D True =20 - for name, fields in sorted(maint_parser.maint_entries.items()): + # Keep the last entry ("THE REST") in the end + entries =3D list(maint_parser.maint_entries.keys()) + entries =3D sorted(entries[:-1], key=3Dstr.casefold) + [entries[-1= ]] + + for name in entries: + fields =3D maint_parser.maint_entries[name] output +=3D f" * - {name}\n" tag =3D "-" for field, lines in fields.items(): --=20 2.54.0