X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=datapath%2Fdatapath.h;h=f28513bb7efe0ef3421045cd95ee59a864587689;hb=b7a31ec13d0617868378d39a72beb4c4ffcb7e5c;hp=dacc3a42c301c1c11d90d395f729c5006254f8fb;hpb=3976f6d57b1134c5c3ed054c9da4aa6786fbf5bf;p=sliver-openvswitch.git diff --git a/datapath/datapath.h b/datapath/datapath.h index dacc3a42c..f28513bb7 100644 --- a/datapath/datapath.h +++ b/datapath/datapath.h @@ -147,7 +147,6 @@ 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. - * @is_frag: %true if this packet is an IPv4 fragment, %false otherwise. * @ip_summed: Consistently stores L4 checksumming status across different * kernel versions. * @tun_id: ID (in network byte order) of the tunnel that encapsulated this @@ -156,7 +155,6 @@ enum csum_type { struct ovs_skb_cb { struct dp_port *dp_port; struct sw_flow *flow; - bool is_frag; enum csum_type ip_summed; __be32 tun_id; };