X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=datapath%2Fdatapath.h;h=abc6aeab2af415a77811eef5f39df955711d915f;hb=e2e744a852da97d86594b6ba4b6efeef57086fcf;hp=fd81dfbad0866427401e345e1ff39ffbe4d6dece;hpb=38c6ecbc8d3664daed077617bb3b3508ba8aa767;p=openvswitch diff --git a/datapath/datapath.h b/datapath/datapath.h index fd81dfba..abc6aeab 100644 --- a/datapath/datapath.h +++ b/datapath/datapath.h @@ -150,11 +150,13 @@ enum csum_type { * 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; enum csum_type ip_summed; __be32 tun_id; + bool is_frag; }; #define OVS_CB(skb) ((struct ovs_skb_cb *)(skb)->cb)