aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorPravin B Shelar <pshelar@nicira.com>2012-07-20 14:46:29 -0700
committerJesse Gross <jesse@nicira.com>2012-07-20 14:46:29 -0700
commit92e5dfc34cf39c20ae1087bd5e676238b5d0dfac (patch)
tree36f43962fbe41d1f301653d163bba6b6018e7a19 /net
parentopenvswitch: Reset upper layer protocol info on internal devices. (diff)
downloadlinux-dev-92e5dfc34cf39c20ae1087bd5e676238b5d0dfac.tar.xz
linux-dev-92e5dfc34cf39c20ae1087bd5e676238b5d0dfac.zip
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.c4
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;