]> git.baikalelectronics.ru Git - kernel.git/commit
cls_bpf: make binding to classid optional
authorDaniel Borkmann <daniel@iogearbox.net>
Wed, 23 Sep 2015 19:56:47 +0000 (21:56 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 23 Sep 2015 21:29:02 +0000 (14:29 -0700)
commit9a64688e274e9c762461b2976b6dee64720ff72b
treeae47e40a2cd044d23f2317e0e8eee01e4e5ffe8b
parent1f1a9f30c6bea1430a0c64108f335c69d5e5d4f2
cls_bpf: make binding to classid optional

The binding to a particular classid was so far always mandatory for
cls_bpf, but it doesn't need to be. Therefore, lift this restriction
as similarly done in other classifiers.

Only a couple of qdiscs make use of class from the tcf_result, others
don't strictly care, so let the user choose his needs (those that read
out class can handle situations where it could be NULL).

An explicit check for tcf_unbind_filter() is also not needed here, as
the previous r->class was 0, so the xchg() will return that and
therefore a callback to the qdisc's unbind_tcf() is skipped.

Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Alexei Starovoitov <ast@plumgrid.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/cls_bpf.c