Commit f8690a4b authored by Tianjia Zhang's avatar Tianjia Zhang Committed by Herbert Xu

crypto: x86/sm4 - Fix invalid section entry size

This fixes the following warning:

  vmlinux.o: warning: objtool: elf_update: invalid section entry size

The size of the rodata section is 164 bytes, directly using the
entry_size of 164 bytes will cause errors in some versions of the
gcc compiler, while using 16 bytes directly will cause errors in
the clang compiler. This patch correct it by filling the size of
rodata to a 16-byte boundary.

Fixes: a7ee22ee ("crypto: x86/sm4 - add AES-NI/AVX/x86_64 implementation")
Fixes: 5b2efa2b ("crypto: x86/sm4 - add AES-NI/AVX2/x86_64 implementation")
Reported-by: default avatarPeter Zijlstra <peterz@infradead.org>
Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Signed-off-by: default avatarTianjia Zhang <tianjia.zhang@linux.alibaba.com>
Tested-by: default avatarHeyuan Shi <heyuan@linux.alibaba.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 0e14ef38
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
vpxor tmp0, x, x; vpxor tmp0, x, x;
.section .rodata.cst164, "aM", @progbits, 164 .section .rodata.cst16, "aM", @progbits, 16
.align 16 .align 16
/* /*
...@@ -133,6 +133,10 @@ ...@@ -133,6 +133,10 @@
.L0f0f0f0f: .L0f0f0f0f:
.long 0x0f0f0f0f .long 0x0f0f0f0f
/* 12 bytes, only for padding */
.Lpadding_deadbeef:
.long 0xdeadbeef, 0xdeadbeef, 0xdeadbeef
.text .text
.align 16 .align 16
......
...@@ -93,7 +93,7 @@ ...@@ -93,7 +93,7 @@
vpxor tmp0, x, x; vpxor tmp0, x, x;
.section .rodata.cst164, "aM", @progbits, 164 .section .rodata.cst16, "aM", @progbits, 16
.align 16 .align 16
/* /*
...@@ -148,6 +148,10 @@ ...@@ -148,6 +148,10 @@
.L0f0f0f0f: .L0f0f0f0f:
.long 0x0f0f0f0f .long 0x0f0f0f0f
/* 12 bytes, only for padding */
.Lpadding_deadbeef:
.long 0xdeadbeef, 0xdeadbeef, 0xdeadbeef
.text .text
.align 16 .align 16
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment