]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
gendwarfksyms: order -T symtypes output by name
authorGiuliano Procida <gprocida@google.com>
Tue, 1 Jul 2025 15:19:11 +0000 (16:19 +0100)
committerMasahiro Yamada <masahiroy@kernel.org>
Sat, 26 Jul 2025 06:31:30 +0000 (15:31 +0900)
When writing symtypes information, we iterate through the entire hash
table containing type expansions. The key order varies unpredictably
as new entries are added, making it harder to compare symtypes between
builds.

Resolve this by sorting the type expansions by name before output.

Signed-off-by: Giuliano Procida <gprocida@google.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Reviewed-by: Sami Tolvanen <samitolvanen@google.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/gendwarfksyms/types.c

index 5344c7b9a9cec3c0c9e3634bd5f77e4e86397589..9c3b053bf061d1a59705ba687e4a96655c6c1b0b 100644 (file)
@@ -6,6 +6,8 @@
 #define _GNU_SOURCE
 #include <inttypes.h>
 #include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
 #include <zlib.h>
 
 #include "gendwarfksyms.h"
@@ -179,20 +181,41 @@ static int type_map_get(const char *name, struct type_expansion **res)
        return -1;
 }
 
+static int cmp_expansion_name(const void *p1, const void *p2)
+{
+       struct type_expansion *const *e1 = p1;
+       struct type_expansion *const *e2 = p2;
+
+       return strcmp((*e1)->name, (*e2)->name);
+}
+
 static void type_map_write(FILE *file)
 {
        struct type_expansion *e;
        struct hlist_node *tmp;
+       struct type_expansion **es;
+       size_t count = 0;
+       size_t i = 0;
 
        if (!file)
                return;
 
-       hash_for_each_safe(type_map, e, tmp, hash) {
-               checkp(fputs(e->name, file));
+       hash_for_each_safe(type_map, e, tmp, hash)
+               ++count;
+       es = xmalloc(count * sizeof(*es));
+       hash_for_each_safe(type_map, e, tmp, hash)
+               es[i++] = e;
+
+       qsort(es, count, sizeof(*es), cmp_expansion_name);
+
+       for (i = 0; i < count; ++i) {
+               checkp(fputs(es[i]->name, file));
                checkp(fputs(" ", file));
-               type_list_write(&e->expanded, file);
+               type_list_write(&es[i]->expanded, file);
                checkp(fputs("\n", file));
        }
+
+       free(es);
 }
 
 static void type_map_free(void)