diff options
Diffstat (limited to 'net/openvswitch/datapath.h')
-rw-r--r-- | net/openvswitch/datapath.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/openvswitch/datapath.h b/net/openvswitch/datapath.h index 5d8dcd88815f..480600649d0b 100644 --- a/net/openvswitch/datapath.h +++ b/net/openvswitch/datapath.h | |||
@@ -99,11 +99,13 @@ struct datapath { | |||
99 | * when a packet is received by OVS. | 99 | * when a packet is received by OVS. |
100 | * @mru: The maximum received fragement size; 0 if the packet is not | 100 | * @mru: The maximum received fragement size; 0 if the packet is not |
101 | * fragmented. | 101 | * fragmented. |
102 | * @acts_origlen: The netlink size of the flow actions applied to this skb. | ||
102 | * @cutlen: The number of bytes from the packet end to be removed. | 103 | * @cutlen: The number of bytes from the packet end to be removed. |
103 | */ | 104 | */ |
104 | struct ovs_skb_cb { | 105 | struct ovs_skb_cb { |
105 | struct vport *input_vport; | 106 | struct vport *input_vport; |
106 | u16 mru; | 107 | u16 mru; |
108 | u16 acts_origlen; | ||
107 | u32 cutlen; | 109 | u32 cutlen; |
108 | }; | 110 | }; |
109 | #define OVS_CB(skb) ((struct ovs_skb_cb *)(skb)->cb) | 111 | #define OVS_CB(skb) ((struct ovs_skb_cb *)(skb)->cb) |