summaryrefslogtreecommitdiff
path: root/datapath/datapath.h
diff options
context:
space:
mode:
Diffstat (limited to 'datapath/datapath.h')
-rw-r--r--datapath/datapath.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/datapath/datapath.h b/datapath/datapath.h
index 1488bec6f..e57c1831a 100644
--- a/datapath/datapath.h
+++ b/datapath/datapath.h
@@ -146,17 +146,17 @@ enum csum_type {
/**
* struct ovs_skb_cb - OVS data in skb CB
* @dp_port: The datapath port on which the skb entered the switch.
+ * @flow: The flow associated with this packet. May be %NULL if no flow.
* @ip_summed: Consistently stores L4 checksumming status across different
* kernel versions.
* @tun_id: ID (in network byte order) of the tunnel that encapsulated this
* packet. It is 0 if the packet was not received on a tunnel.
- * @is_frag: %true if this packet is an IPv4 fragment, %false otherwise.
*/
struct ovs_skb_cb {
struct dp_port *dp_port;
+ struct sw_flow *flow;
enum csum_type ip_summed;
__be32 tun_id;
- bool is_frag;
};
#define OVS_CB(skb) ((struct ovs_skb_cb *)(skb)->cb)