diff options
author | Robert Love <robert.w.love@intel.com> | 2011-12-17 02:24:49 +0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-01-11 03:01:23 +0400 |
commit | f1633011e4fcb65bf65aebeaf4024efdc4c49d6e (patch) | |
tree | 04cae3ca39c606fdbca375328ab419a7f40a4d52 /drivers/scsi | |
parent | 3a19cbf530648a63fb3f73630046c561f70c6b71 (diff) | |
download | linux-f1633011e4fcb65bf65aebeaf4024efdc4c49d6e.tar.xz |
[SCSI] fcoe: remove double check if skb is nonlinear
skb_linearize already has a check for skb_is_nonlinear,
there is no need to duplicate the check in fcoe.c. This
patch simply removes the unnecessary check and calls
skb_linearize unconditionally.
Reported-by: patrick kelle <patrick.kelle81@gmail.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Acked-by: patrick kelle <patrick.kelle81@gmail.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/fcoe/fcoe.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c index 8d67467dd9ce..e535f95e4772 100644 --- a/drivers/scsi/fcoe/fcoe.c +++ b/drivers/scsi/fcoe/fcoe.c @@ -1671,8 +1671,7 @@ static void fcoe_recv_frame(struct sk_buff *skb) skb->dev ? skb->dev->name : "<NULL>"); port = lport_priv(lport); - if (skb_is_nonlinear(skb)) - skb_linearize(skb); /* not ideal */ + skb_linearize(skb); /* check for skb_is_nonlinear is within skb_linearize */ /* * Frame length checks and setting up the header pointers |