]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
net/act_pedit: Introduce 'add' operation
authorAmir Vadai <amir@vadai.me>
Tue, 7 Feb 2017 07:56:08 +0000 (09:56 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 10 Feb 2017 18:18:33 +0000 (13:18 -0500)
commit853a14ba4682f820266469979c9297debc05f60c
tree5475357c2342327746b5f99a67d46f4eb4ef78d3
parent71d0ed7079dffbc5cd0941d77d9b84e04109c9bb
net/act_pedit: Introduce 'add' operation

This command could be useful to inc/dec fields.

For example, to forward any TCP packet and decrease its TTL:
$ tc filter add dev enp0s9 protocol ip parent ffff: \
    flower ip_proto tcp \
    action pedit munge ip ttl add 0xff pipe \
    action mirred egress redirect dev veth0

In the example above, adding 0xff to this u8 field is actually
decreasing it by one, since the operation is masked.

Signed-off-by: Amir Vadai <amir@vadai.me>
Reviewed-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/tc_act/tc_pedit.h
include/uapi/linux/tc_act/tc_pedit.h
net/sched/act_pedit.c