aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorGravatar Donald Hunter <donald.hunter@gmail.com> 2023-12-15 09:37:18 +0000
committerGravatar Jakub Kicinski <kuba@kernel.org> 2023-12-18 14:39:44 -0800
commite8c32339cf49cd9c2626e143c548f5897aa58b17 (patch)
treeed29ddcd2dcfac982753a056e7d4c43556c0540f /tools
parenttools/net/ynl-gen-rst: Add sub-messages to generated docs (diff)
downloadlinux-e8c32339cf49cd9c2626e143c548f5897aa58b17.tar.gz
linux-e8c32339cf49cd9c2626e143c548f5897aa58b17.tar.bz2
linux-e8c32339cf49cd9c2626e143c548f5897aa58b17.zip
tools/net/ynl-gen-rst: Sort the index of generated netlink specs
The index of netlink specs was being generated unsorted. Sort the output before generating the index entries. Reviewed-by: Jakub Kicinski <kuba@kernel.org> Reviewed-by: Breno Leitao <leitao@debian.org> Signed-off-by: Donald Hunter <donald.hunter@gmail.com> Link: https://lore.kernel.org/r/20231215093720.18774-12-donald.hunter@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/net/ynl/ynl-gen-rst.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/net/ynl/ynl-gen-rst.py b/tools/net/ynl/ynl-gen-rst.py
index 6825db92c899..68f9a9cd57cb 100755
--- a/tools/net/ynl/ynl-gen-rst.py
+++ b/tools/net/ynl/ynl-gen-rst.py
@@ -383,7 +383,7 @@ def generate_main_index_rst(output: str) -> None:
index_dir = os.path.dirname(output)
logging.debug("Looking for .rst files in %s", index_dir)
- for filename in os.listdir(index_dir):
+ for filename in sorted(os.listdir(index_dir)):
if not filename.endswith(".rst") or filename == "index.rst":
continue
lines.append(f" {filename.replace('.rst', '')}\n")