Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 315749
b: refs/heads/master
c: a1b5d0d
h: refs/heads/master
i:
  315747: e4993be
v: v3
  • Loading branch information
Ben Pfaff authored and Jesse Gross committed Jul 20, 2012
1 parent 1120fda commit a281a9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 92e5dfc34cf39c20ae1087bd5e676238b5d0dfac
refs/heads/master: a1b5d0dd28e9cb4fe42ad2df4ebbe5cce96866d7
3 changes: 2 additions & 1 deletion trunk/net/openvswitch/datapath.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ int ovs_dp_upcall(struct datapath *dp, struct sk_buff *skb,
static int queue_gso_packets(int dp_ifindex, struct sk_buff *skb,
const struct dp_upcall_info *upcall_info)
{
unsigned short gso_type = skb_shinfo(skb)->gso_type;
struct dp_upcall_info later_info;
struct sw_flow_key later_key;
struct sk_buff *segs, *nskb;
Expand All @@ -279,7 +280,7 @@ static int queue_gso_packets(int dp_ifindex, struct sk_buff *skb,
if (err)
break;

if (skb == segs && skb_shinfo(skb)->gso_type & SKB_GSO_UDP) {
if (skb == segs && gso_type & SKB_GSO_UDP) {
/* The initial flow key extracted by ovs_flow_extract()
* in this case is for a first fragment, so we need to
* properly mark later fragments.
Expand Down

0 comments on commit a281a9b

Please sign in to comment.