OSDN Git Service

Merge branch 'bpf-ctx-info-out-of-verifier'
authorDavid S. Miller <davem@davemloft.net>
Wed, 18 Oct 2017 13:17:11 +0000 (14:17 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 18 Oct 2017 13:17:11 +0000 (14:17 +0100)
commitb082af73bf527aa5180c8979d4620e450494c07b
tree7e497a6e77e7b929801554eedfc4ea1b431d1e22
parent386fd5da401dc6c4b0ab6a54d333609876b699fe
parent29d1b33a2e0a3288374102b004a15cb278a2303e
Merge branch 'bpf-ctx-info-out-of-verifier'

Jakub Kicinski says:

====================
bpf: move context info out of the verifier

Daniel pointed out during the review of my previous patchset that
the knowledge about context doesn't really belong directly in the
verifier.  This patch set takes a bit of a drastic approach to
move the info out of there.  I want to be able to use different
set of verifier_ops for program analysis.  To do that, I have
to first move the test_run callback to a separate structure.  Then
verifier ops can be declared in the verifier directly and
different sets can be picked for verification vs analysis.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>