diff options
author | Adrian Moreno <amorenoz@redhat.com> | 2023-08-11 16:12:49 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-08-14 08:01:06 +0100 |
commit | ec7bfb5e5a054f1178e8bdbf4f145fdafa5bf804 (patch) | |
tree | ae5326d34627698099ccf8887437ba49a0ae53f9 /net/openvswitch/actions.c | |
parent | 9d802da40b7c820deb9c60fc394457ea565cafc8 (diff) |
net: openvswitch: add action error drop reason
Add a drop reason for packets that are dropped because an action
returns a non-zero error code.
Acked-by: Aaron Conole <aconole@redhat.com>
Signed-off-by: Adrian Moreno <amorenoz@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/actions.c')
-rw-r--r-- | net/openvswitch/actions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/actions.c b/net/openvswitch/actions.c index 8c8a7a82f76f..bb7aa181da30 100644 --- a/net/openvswitch/actions.c +++ b/net/openvswitch/actions.c @@ -1488,7 +1488,7 @@ static int do_execute_actions(struct datapath *dp, struct sk_buff *skb, } if (unlikely(err)) { - kfree_skb(skb); + ovs_kfree_skb_reason(skb, OVS_DROP_ACTION_ERROR); return err; } } |