Skip to content

Commit 0d1db3e

Browse files
committed
certs: Fix misaligned data in extra certificate list
Fix the following warning found by kbuild: certs/system_certificates.S:24: Error: misaligned data because: KEYS: Reserve an extra certificate symbol for inserting without recompiling doesn't correctly align system_extra_cert_used. Signed-off-by: David Howells <[email protected]> cc: Mehmet Kayaalp <[email protected]>
1 parent 7650cb8 commit 0d1db3e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

certs/system_certificates.S

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ __cert_list_end:
1919
VMLINUX_SYMBOL(system_extra_cert):
2020
.fill CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE, 1, 0
2121

22+
.align 4
2223
.globl VMLINUX_SYMBOL(system_extra_cert_used)
2324
VMLINUX_SYMBOL(system_extra_cert_used):
2425
.int 0

0 commit comments

Comments
 (0)