Skip to content

Commit 66633ab

Browse files
seehearfeeltsbogend
authored andcommitted
MIPS/bpf: Enable bpf_probe_read{, str}() on MIPS again
After commit 0ebeea8 ("bpf: Restrict bpf_probe_read{, str}() only to archs where they work"), bpf_probe_read{, str}() functions were no longer available on MIPS, so there exist some errors when running bpf program: root@linux:/home/loongson/bcc# python examples/tracing/task_switch.py bpf: Failed to load program: Invalid argument [...] 11: (85) call bpf_probe_read#4 unknown func bpf_probe_read#4 [...] Exception: Failed to load BPF program count_sched: Invalid argument ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE should be restricted to archs with non-overlapping address ranges, but they can overlap in EVA mode on MIPS, so select ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE if !EVA in arch/mips/Kconfig, otherwise the bpf old helper bpf_probe_read() will not be available. This is similar with the commit d195b1d ("powerpc/bpf: Enable bpf_probe_read{, str}() on powerpc again"). Fixes: 0ebeea8 ("bpf: Restrict bpf_probe_read{, str}() only to archs where they work") Signed-off-by: Tiezhu Yang <[email protected]> Signed-off-by: Thomas Bogendoerfer <[email protected]>
1 parent 509d36a commit 66633ab

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

arch/mips/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ config MIPS
66
select ARCH_BINFMT_ELF_STATE if MIPS_FP_SUPPORT
77
select ARCH_HAS_FORTIFY_SOURCE
88
select ARCH_HAS_KCOV
9+
select ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE if !EVA
910
select ARCH_HAS_PTE_SPECIAL if !(32BIT && CPU_HAS_RIXI)
1011
select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
1112
select ARCH_HAS_UBSAN_SANITIZE_ALL

0 commit comments

Comments
 (0)