arch/x86/crypto/Makefile | 3 +++ 1 file changed, 3 insertions(+)
curve25519-x86_64.c fails to build when CONFIG_GCOV_KERNEL is enabled.
The error is "inline assembly requires more registers than available"
thrown from the `fsqr()` function. Therefore, excluding this file from
GCOV profiling until this issue is resolved. Thereby allowing
CONFIG_GCOV_PROFILE_ALL to be enabled for x86.
Signed-off-by: Joe Fradley <joefradley@google.com>
---
arch/x86/crypto/Makefile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/x86/crypto/Makefile b/arch/x86/crypto/Makefile
index 3b1d701a4f6c..3e7a329235bd 100644
--- a/arch/x86/crypto/Makefile
+++ b/arch/x86/crypto/Makefile
@@ -107,3 +107,6 @@ quiet_cmd_perlasm = PERLASM $@
cmd_perlasm = $(PERL) $< > $@
$(obj)/%.S: $(src)/%.pl FORCE
$(call if_changed,perlasm)
+
+# Disable GCOV in odd or sensitive code
+GCOV_PROFILE_curve25519-x86_64.o := n
--
2.38.1.584.g0f3c55d4c2-goog
On Tue, Nov 22, 2022 at 02:54:49PM -0800, Joe Fradley wrote: > curve25519-x86_64.c fails to build when CONFIG_GCOV_KERNEL is enabled. > The error is "inline assembly requires more registers than available" > thrown from the `fsqr()` function. Therefore, excluding this file from > GCOV profiling until this issue is resolved. Thereby allowing > CONFIG_GCOV_PROFILE_ALL to be enabled for x86. > > Signed-off-by: Joe Fradley <joefradley@google.com> > --- > arch/x86/crypto/Makefile | 3 +++ > 1 file changed, 3 insertions(+) Patch applied. Thanks. -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
© 2016 - 2026 Red Hat, Inc.