From: Jesse Gross Date: Fri, 19 Nov 2010 21:19:55 +0000 (-0800) Subject: datapath: Drop obsolete comment. X-Git-Tag: v1.1.0~777 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=eb88521dd64ddc542c0c36d57a1155cdcd164d03;p=sliver-openvswitch.git datapath: Drop obsolete comment. The comment above flow_extract() refers to setting OVS_CB(skb)->is_frag but that member no longer exists. The correct way to set is_frag is already documented, so just drop the incorrect comment. Signed-off-by: Jesse Gross Acked-by: Ben Pfaff --- diff --git a/datapath/flow.c b/datapath/flow.c index face40b3c..496f11cdb 100644 --- a/datapath/flow.c +++ b/datapath/flow.c @@ -264,9 +264,6 @@ static __be16 parse_ethertype(struct sk_buff *skb) * past the IPv4 header, if one is present and of a correct length, * otherwise the same as skb->network_header. For other key->dl_type * values it is left untouched. - * - * Sets OVS_CB(skb)->is_frag to %true if @skb is an IPv4 fragment, otherwise to - * %false. */ int flow_extract(struct sk_buff *skb, u16 in_port, struct odp_flow_key *key, bool *is_frag)