datapth: Drop check for impossible condition after skb_gso_segment().
authorJesse Gross <jesse@nicira.com>
Thu, 9 Dec 2010 07:55:20 +0000 (23:55 -0800)
committerJesse Gross <jesse@nicira.com>
Sat, 11 Dec 2010 23:19:47 +0000 (15:19 -0800)
commit2d7ce2ee1af5c4925ebbc681bb72e660d87faa71
tree4db64c24b57925eef65badba509397e73d49dba6
parent60ba76ea15b6758904b37c4c030e3f133c503c69
datapth: Drop check for impossible condition after skb_gso_segment().

It's possible for skb_gso_segment to return NULL but only if the
hardware supports the correct form of segmentation offload but just
wants software to verify the offload parameters.  However, since we're
not hardware and don't support any kind of segmentation offload natively,
we can never get in this situation.  Therefore drop the check and
comment.

Signed-off-by: Jesse Gross <jesse@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
datapath/datapath.c