No description
Find a file
Jiong Wang f910cefa32 bpf: unify main prog and subprog
Currently, verifier treat main prog and subprog differently. All subprogs
detected are kept in env->subprog_starts while main prog is not kept there.
Instead, main prog is implicitly defined as the prog start at 0.

There is actually no difference between main prog and subprog, it is better
to unify them, and register all progs detected into env->subprog_starts.

This could also help simplifying some code logic.

Signed-off-by: Jiong Wang <jiong.wang@netronome.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
2018-05-04 11:58:35 +02:00
arch bpf, x32: remove ld_abs/ld_ind 2018-05-03 16:49:20 -07:00
block
certs
crypto
Documentation samples/bpf: sample application and documentation for AF_XDP sockets 2018-05-03 15:55:25 -07:00
drivers
firmware
fs
include bpf: unify main prog and subprog 2018-05-04 11:58:35 +02:00
init
ipc
kernel bpf: unify main prog and subprog 2018-05-04 11:58:35 +02:00
lib bpf: migrate ebpf ld_abs/ld_ind tests to test_verifier 2018-05-03 16:49:19 -07:00
LICENSES
mm
net bpf: add skb_load_bytes_relative helper 2018-05-03 16:49:19 -07:00
samples samples/bpf: sample application and documentation for AF_XDP sockets 2018-05-03 15:55:25 -07:00
scripts
security
sound
tools bpf: sync tools bpf.h uapi header 2018-05-03 16:49:20 -07:00
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
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.
See Documentation/00-INDEX for a list of what is contained in each file.

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.