Message ID | 1410181174-14977-1-git-send-email-riku.voipio@linaro.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Monday 08 September 2014 15:59:34 Riku Voipio wrote: > diff --git a/arch/arm/kernel/Makefile b/arch/arm/kernel/Makefile > index 38ddd9f..979c4e9 100644 > --- a/arch/arm/kernel/Makefile > +++ b/arch/arm/kernel/Makefile > @@ -5,6 +5,8 @@ > CPPFLAGS_vmlinux.lds := -DTEXT_OFFSET=$(TEXT_OFFSET) > AFLAGS_head.o := -DTEXT_OFFSET=$(TEXT_OFFSET) > > +GCOV_PROFILE := n > + > ifdef CONFIG_FUNCTION_TRACER > CFLAGS_REMOVE_ftrace.o = -pg > CFLAGS_REMOVE_insn.o = -pg > This part doesn't look right: you don't want to disable profiling for the entire directory, only for the parts on which it cannot be used. Arnd
On 8 September 2014 16:25, Arnd Bergmann <arnd@arndb.de> wrote: > On Monday 08 September 2014 15:59:34 Riku Voipio wrote: >> diff --git a/arch/arm/kernel/Makefile b/arch/arm/kernel/Makefile >> index 38ddd9f..979c4e9 100644 >> --- a/arch/arm/kernel/Makefile >> +++ b/arch/arm/kernel/Makefile >> @@ -5,6 +5,8 @@ >> CPPFLAGS_vmlinux.lds := -DTEXT_OFFSET=$(TEXT_OFFSET) >> AFLAGS_head.o := -DTEXT_OFFSET=$(TEXT_OFFSET) >> >> +GCOV_PROFILE := n >> + >> ifdef CONFIG_FUNCTION_TRACER >> CFLAGS_REMOVE_ftrace.o = -pg >> CFLAGS_REMOVE_insn.o = -pg > This part doesn't look right: you don't want to disable profiling for > the entire directory, only for the parts on which it cannot be used. You are right. I can just remove that hunk and I can both boot and record coverage info from arch/arm/kernel. Any other comments, or should I just resubmit without arch/arm/kernel bits? Riku
On Wednesday 10 September 2014 16:45:07 Riku Voipio wrote: > On 8 September 2014 16:25, Arnd Bergmann <arnd@arndb.de> wrote: > > On Monday 08 September 2014 15:59:34 Riku Voipio wrote: > >> diff --git a/arch/arm/kernel/Makefile b/arch/arm/kernel/Makefile > >> index 38ddd9f..979c4e9 100644 > >> --- a/arch/arm/kernel/Makefile > >> +++ b/arch/arm/kernel/Makefile > >> @@ -5,6 +5,8 @@ > >> CPPFLAGS_vmlinux.lds := -DTEXT_OFFSET=$(TEXT_OFFSET) > >> AFLAGS_head.o := -DTEXT_OFFSET=$(TEXT_OFFSET) > >> > >> +GCOV_PROFILE := n > >> + > >> ifdef CONFIG_FUNCTION_TRACER > >> CFLAGS_REMOVE_ftrace.o = -pg > >> CFLAGS_REMOVE_insn.o = -pg > > > This part doesn't look right: you don't want to disable profiling for > > the entire directory, only for the parts on which it cannot be used. > > You are right. I can just remove that hunk and I can both boot and > record coverage info from arch/arm/kernel. Any other comments, or > should I just resubmit without arch/arm/kernel bits? Without that part it looks ok to me. Arnd
diff --git a/arch/arm/boot/bootp/Makefile b/arch/arm/boot/bootp/Makefile index c394e30..5761f00 100644 --- a/arch/arm/boot/bootp/Makefile +++ b/arch/arm/boot/bootp/Makefile @@ -5,6 +5,8 @@ # architecture-specific flags and dependencies. # +GCOV_PROFILE := n + LDFLAGS_bootp :=-p --no-undefined -X \ --defsym initrd_phys=$(INITRD_PHYS) \ --defsym params_phys=$(PARAMS_PHYS) -T diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile index 76a50ec..3ea230a 100644 --- a/arch/arm/boot/compressed/Makefile +++ b/arch/arm/boot/compressed/Makefile @@ -37,6 +37,8 @@ ifeq ($(CONFIG_ARM_VIRT_EXT),y) OBJS += hyp-stub.o endif +GCOV_PROFILE := n + # # Architecture dependencies # diff --git a/arch/arm/kernel/Makefile b/arch/arm/kernel/Makefile index 38ddd9f..979c4e9 100644 --- a/arch/arm/kernel/Makefile +++ b/arch/arm/kernel/Makefile @@ -5,6 +5,8 @@ CPPFLAGS_vmlinux.lds := -DTEXT_OFFSET=$(TEXT_OFFSET) AFLAGS_head.o := -DTEXT_OFFSET=$(TEXT_OFFSET) +GCOV_PROFILE := n + ifdef CONFIG_FUNCTION_TRACER CFLAGS_REMOVE_ftrace.o = -pg CFLAGS_REMOVE_insn.o = -pg diff --git a/kernel/gcov/Kconfig b/kernel/gcov/Kconfig index d04ce8a..cf66c5c 100644 --- a/kernel/gcov/Kconfig +++ b/kernel/gcov/Kconfig @@ -35,7 +35,7 @@ config GCOV_KERNEL config GCOV_PROFILE_ALL bool "Profile entire Kernel" depends on GCOV_KERNEL - depends on SUPERH || S390 || X86 || PPC || MICROBLAZE + depends on SUPERH || S390 || X86 || PPC || MICROBLAZE || ARM default n ---help--- This options activates profiling for the entire kernel.