Go to file
Jerome Marchand 4a2f73b2db bpf, arm64: use bpf_prog_pack for memory management
JIRA: https://issues.redhat.com/browse/RHEL-23649

commit 1dad391daef129e01e28206b8d586608ff026548
Author: Puranjay Mohan <puranjay12@gmail.com>
Date:   Wed Feb 28 14:18:24 2024 +0000

    bpf, arm64: use bpf_prog_pack for memory management

    Use bpf_jit_binary_pack_alloc for memory management of JIT binaries in
    ARM64 BPF JIT. The bpf_jit_binary_pack_alloc creates a pair of RW and RX
    buffers. The JIT writes the program into the RW buffer. When the JIT is
    done, the program is copied to the final RX buffer
    with bpf_jit_binary_pack_finalize.

    Implement bpf_arch_text_copy() and bpf_arch_text_invalidate() for ARM64
    JIT as these functions are required by bpf_jit_binary_pack allocator.

    Signed-off-by: Puranjay Mohan <puranjay12@gmail.com>
    Acked-by: Song Liu <song@kernel.org>
    Acked-by: Catalin Marinas <catalin.marinas@arm.com>
    Link: https://lore.kernel.org/r/20240228141824.119877-3-puranjay12@gmail.com
    Signed-off-by: Alexei Starovoitov <ast@kernel.org>

Signed-off-by: Jerome Marchand <jmarchan@redhat.com>
2024-10-15 10:49:11 +02:00
Documentation bpf, docs: specify which BPF_ABS and BPF_IND fields were zero 2024-10-15 10:49:11 +02:00
LICENSES
arch bpf, arm64: use bpf_prog_pack for memory management 2024-10-15 10:49:11 +02:00
block
certs
crypto
drivers bpf: treewide: Annotate BPF kfuncs in BTF 2024-10-15 10:49:07 +02:00
fs Merge: proc: fix dentry/inode overinstantiating under /proc/${pid}/net 2024-10-10 08:47:42 +00:00
include bpf: Clarify batch lookup/lookup_and_delete semantics 2024-10-15 10:49:11 +02:00
init bpf: Merge two CONFIG_BPF entries 2024-10-15 10:49:09 +02:00
io_uring
ipc
kernel bpf: add is_async_callback_calling_insn() helper 2024-10-15 10:49:11 +02:00
lib Merge: CVE-2024-42292: kobject_uevent: Fix OOB access within zap_modalias_env() 2024-09-27 19:09:13 +00:00
mm Merge tag 'kernel-5.14.0-503.11.1.el9_5' into merge-up-9.5- 2024-10-04 11:15:45 -03:00
net bpf: treewide: Annotate BPF kfuncs in BTF 2024-10-15 10:49:07 +02:00
redhat [redhat] kernel-5.14.0-518.el9 2024-10-11 06:39:20 +00:00
samples
scripts bpf: Generate const static pointers for kernel helpers 2024-10-15 10:49:05 +02:00
security bpf,selinux: Allocate bpf_security_struct per BPF token 2024-10-15 10:49:04 +02:00
sound
tools bpf, arm64: support exceptions 2024-10-15 10:49:11 +02:00
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.gitlab-ci.yml
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
Kconfig.redhat
MAINTAINERS Merge: Refresh s390x subsystem to upstream kernel 6.7 2024-09-26 17:55:24 +00:00
Makefile
Makefile.rhelver [redhat] kernel-5.14.0-518.el9 2024-10-11 06:39:20 +00:00
README
makefile

README

Linux kernel
============

There are several guides for kernel developers and users. These guides can
be rendered in a number of formats, like HTML and PDF. Please read
Documentation/admin-guide/README.rst first.

In order to build the documentation, use ``make htmldocs`` or
``make pdfdocs``.  The formatted documentation can also be read online at:

    https://www.kernel.org/doc/html/latest/

There are various text files in the Documentation/ subdirectory,
several of them using the Restructured Text markup notation.

Please read the Documentation/process/changes.rst file, as it contains the
requirements for building and running the kernel, and information about
the problems which may result by upgrading your kernel.