]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'bpf-sk-msg-fields'
authorDaniel Borkmann <daniel@iogearbox.net>
Fri, 18 May 2018 20:44:11 +0000 (22:44 +0200)
committerDaniel Borkmann <daniel@iogearbox.net>
Fri, 18 May 2018 21:09:21 +0000 (23:09 +0200)
commit9b8c7f3888f54ae0099d770f2aeac46dc2d0138c
tree9cbbbd101ef09da90f1ab1657c4ec15bb697915d
parentde03ea9d3d91bb221b33fbaca563e761e227d3c7
parent787720c4376aed6742e0b23c8fe87a55efc6afde
Merge branch 'bpf-sk-msg-fields'

John Fastabend says:

====================
In this series we add the ability for sk msg programs to read basic
sock information about the sock they are attached to. The second
patch adds the tests to the selftest test_verifier.

One observation that I had from writing this seriess is lots of the
./net/core/filter.c code is almost duplicated across program types.
I thought about building a template/macro that we could use as a
single block of code to read sock data out for multiple programs,
but I wasn't convinced it was worth it yet. The result was using a
macro saved a couple lines of code per block but made the code
a bit harder to read IMO. We can probably revisit the idea later
if we get more duplication.

v2: add errstr field to negative test_verifier test cases to ensure
    we get the expected err string back from the verifier.
====================

Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>