Patch "MIPS/bpf: Enable bpf_probe_read{, str}() on MIPS again" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    MIPS/bpf: Enable bpf_probe_read{, str}() on MIPS again

to the 5.10-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     mips-bpf-enable-bpf_probe_read-str-on-mips-again.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit f84d846bb6e8c24bf9ddbf5fbb9a823c23adce47
Author: Tiezhu Yang <yangtiezhu@xxxxxxxxxxx>
Date:   Thu Mar 25 20:50:01 2021 +0800

    MIPS/bpf: Enable bpf_probe_read{, str}() on MIPS again
    
    [ Upstream commit 66633abd0642f1e89d26e15f36fb13d3a1c535ff ]
    
    After commit 0ebeea8ca8a4 ("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 d195b1d1d119 ("powerpc/bpf: Enable
    bpf_probe_read{, str}() on powerpc again").
    
    Fixes: 0ebeea8ca8a4 ("bpf: Restrict bpf_probe_read{, str}() only to archs where they work")
    Signed-off-by: Tiezhu Yang <yangtiezhu@xxxxxxxxxxx>
    Signed-off-by: Thomas Bogendoerfer <tsbogend@xxxxxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
index 2000bb2b0220..1917ccd39256 100644
--- a/arch/mips/Kconfig
+++ b/arch/mips/Kconfig
@@ -6,6 +6,7 @@ config MIPS
 	select ARCH_BINFMT_ELF_STATE if MIPS_FP_SUPPORT
 	select ARCH_HAS_FORTIFY_SOURCE
 	select ARCH_HAS_KCOV
+	select ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE if !EVA
 	select ARCH_HAS_PTE_SPECIAL if !(32BIT && CPU_HAS_RIXI)
 	select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
 	select ARCH_HAS_UBSAN_SANITIZE_ALL



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux