diff options
author | Pravin B Shelar <pshelar@nicira.com> | 2012-07-20 14:46:29 -0700 |
---|---|---|
committer | Jesse Gross <jesse@nicira.com> | 2012-07-20 14:46:29 -0700 |
commit | 92e5dfc34cf39c20ae1087bd5e676238b5d0dfac (patch) | |
tree | 36f43962fbe41d1f301653d163bba6b6018e7a19 /net | |
parent | 7fe99e2d434eafeac0c57b279a77e5de39212636 (diff) |
openvswitch: Check currect return value from skb_gso_segment()
Fix return check typo.
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Signed-off-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/openvswitch/datapath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/openvswitch/datapath.c b/net/openvswitch/datapath.c index b512cb8cdc87..670e63020667 100644 --- a/net/openvswitch/datapath.c +++ b/net/openvswitch/datapath.c @@ -269,8 +269,8 @@ static int queue_gso_packets(int dp_ifindex, struct sk_buff *skb, int err; segs = skb_gso_segment(skb, NETIF_F_SG | NETIF_F_HW_CSUM); - if (IS_ERR(skb)) - return PTR_ERR(skb); + if (IS_ERR(segs)) + return PTR_ERR(segs); /* Queue all of the segments. */ skb = segs; |