Skip to content

Commit 21532b9

Browse files
Tautschnig, MichaelMichal Marek
authored andcommitted
scripts: Fix size mismatch of kexec_purgatory_size
bin2c is used to create a valid C file out of a binary file where two symbols will be globally defined: <name> and <name>_size. <name> is passed as the first parameter of the host binary. Building using goto-cc reported that the purgatory binary code (the only current user of this utility) declares kexec_purgatory_size as 'size_t' where bin2c generate <name>_size to be 'int' so in a 64-bit host where sizeof(size_t) > sizeof(int) this type mismatch will always yield the wrong value for big-endian architectures while for little-endian it will be wrong if the object laid in memory directly after kexec_purgatory_size contains non-zero value at the time of reading. This commit changes <name>_size to be size_t instead. Note: Another way to fix the problem is to change the type of kexec_purgatory_size to be 'int' as there's this check in code: (kexec_purgatory_size <= 0) Signed-off-by: Michael Tautschnig <tautschn@amazon.com> Cc: Vivek Goyal <vgoyal@redhat.com> Acked-by: Dave Young <dyoung@redhat.com> Signed-off-by: Michal Marek <mmarek@suse.com>
1 parent ddea05f commit 21532b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/basic/bin2c.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ int main(int argc, char *argv[])
2929
} while (ch != EOF);
3030

3131
if (argc > 1)
32-
printf("\t;\n\nconst int %s_size = %d;\n", argv[1], total);
32+
printf("\t;\n\n#include <linux/types.h>\n\nconst size_t %s_size = %d;\n",
33+
argv[1], total);
3334

3435
return 0;
3536
}

0 commit comments

Comments
 (0)