OSDN Git Service

Merge branch 'ifla_xdp_expected_fd'
authorAlexei Starovoitov <ast@kernel.org>
Sat, 28 Mar 2020 21:24:41 +0000 (14:24 -0700)
committerAlexei Starovoitov <ast@kernel.org>
Sat, 28 Mar 2020 22:54:40 +0000 (15:54 -0700)
commitae661deca7b9f3fa7d1eda99aedbdd12155ade40
treef903dfcf56b495dbd39b348872a191e3a8812c83
parente9ff9d52540a53ce8c9eff5bf8b66467fe81eb2b
parent87854a0b57b34c52e172109b1d3949fc639b6474
Merge branch 'ifla_xdp_expected_fd'

Toke Høiland-Jørgensen says:

====================
This series adds support for atomically replacing the XDP program loaded on an
interface. This is achieved by means of a new netlink attribute that can specify
the expected previous program to replace on the interface. If set, the kernel
will compare this "expected fd" attribute with the program currently loaded on
the interface, and reject the operation if it does not match.

With this primitive, userspace applications can avoid stepping on each other's
toes when simultaneously updating the loaded XDP program.

Changelog:

v4:
- Switch back to passing FD instead of ID (Andrii)
- Rename flag to XDP_FLAGS_REPLACE (for consistency with other similar uses)

v3:
- Pass existing ID instead of FD (Jakub)
- Use opts struct for new libbpf function (Andrii)

v2:
- Fix checkpatch nits and add .strict_start_type to netlink policy (Jakub)
====================

Signed-off-by: Alexei Starovoitov <ast@kernel.org>