]> git.baikalelectronics.ru Git - kernel.git/commit
net/sched: act_ct: fix miss set mru for ovs after defrag in act_ct
authorwenxu <wenxu@ucloud.cn>
Fri, 31 Jul 2020 02:45:01 +0000 (10:45 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 3 Aug 2020 22:04:48 +0000 (15:04 -0700)
commite4f617a63f8d4afe0eb3c077d4856c28e7b3880d
treeb97c432cf952c8728871aee893a4af68acc94257
parent1f3bce9a3ad3efb481a6b4957928b64f48ce7396
net/sched: act_ct: fix miss set mru for ovs after defrag in act_ct

When openvswitch conntrack offload with act_ct action. Fragment packets
defrag in the ingress tc act_ct action and miss the next chain. Then the
packet pass to the openvswitch datapath without the mru. The over
mtu packet will be dropped in output action in openvswitch for over mtu.

"kernel: net2: dropped over-mtu packet: 1528 > 1500"

This patch add mru in the tc_skb_ext for adefrag and miss next chain
situation. And also add mru in the qdisc_skb_cb. The act_ct set the mru
to the qdisc_skb_cb when the packet defrag. And When the chain miss,
The mru is set to tc_skb_ext which can be got by ovs datapath.

Fixes: 1a23a38cf53c ("net/sched: Introduce action ct")
Signed-off-by: wenxu <wenxu@ucloud.cn>
Reviewed-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/skbuff.h
include/net/sch_generic.h
net/openvswitch/flow.c
net/sched/act_ct.c
net/sched/cls_api.c