summaryrefslogtreecommitdiff
path: root/net/openvswitch/datapath.c
diff options
context:
space:
mode:
authorPravin B Shelar <pshelar@nicira.com>2012-07-20 21:46:29 (GMT)
committerJesse Gross <jesse@nicira.com>2012-07-20 21:46:29 (GMT)
commit92e5dfc34cf39c20ae1087bd5e676238b5d0dfac (patch)
tree36f43962fbe41d1f301653d163bba6b6018e7a19 /net/openvswitch/datapath.c
parent7fe99e2d434eafeac0c57b279a77e5de39212636 (diff)
downloadlinux-fsl-qoriq-92e5dfc34cf39c20ae1087bd5e676238b5d0dfac.tar.xz
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/openvswitch/datapath.c')
-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 b512cb8..670e630 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;