Commit 47d96252 authored by Jia He's avatar Jia He Committed by Herbert Xu

crypto: arm64/poly1305 - move data to rodata section

When objtool gains support for ARM in the future, it may encounter issues
disassembling the following data in the .text section:
> .Lzeros:
> .long   0,0,0,0,0,0,0,0
> .asciz  "Poly1305 for ARMv8, CRYPTOGAMS by \@dot-asm"
> .align  2

Move it to .rodata which is a more appropriate section for read-only data.
Signed-off-by: default avatarJia He <justin.he@arm.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent ab9a244c
...@@ -885,10 +885,13 @@ poly1305_blocks_neon: ...@@ -885,10 +885,13 @@ poly1305_blocks_neon:
ret ret
.size poly1305_blocks_neon,.-poly1305_blocks_neon .size poly1305_blocks_neon,.-poly1305_blocks_neon
.pushsection .rodata
.align 5 .align 5
.Lzeros: .Lzeros:
.long 0,0,0,0,0,0,0,0 .long 0,0,0,0,0,0,0,0
.asciz "Poly1305 for ARMv8, CRYPTOGAMS by \@dot-asm" .asciz "Poly1305 for ARMv8, CRYPTOGAMS by \@dot-asm"
.popsection
.align 2 .align 2
#if !defined(__KERNEL__) && !defined(_WIN64) #if !defined(__KERNEL__) && !defined(_WIN64)
.comm OPENSSL_armcap_P,4,4 .comm OPENSSL_armcap_P,4,4
......
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