Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

crypto: x86/curve25519 - disable gcov

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>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Joe Fradley and committed by
Herbert Xu
c390c452 3d780c8a

+3
+3
arch/x86/crypto/Makefile
··· 107 107 cmd_perlasm = $(PERL) $< > $@ 108 108 $(obj)/%.S: $(src)/%.pl FORCE 109 109 $(call if_changed,perlasm) 110 + 111 + # Disable GCOV in odd or sensitive code 112 + GCOV_PROFILE_curve25519-x86_64.o := n