qla3xxx: bugfix for line omitted in previous patch.
This missing line caused transmit errors on the Qlogic 4032 chip. Signed-off-by: Ron Mercer <ron.mercer@qlogic.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
e0e20a1a08
commit
63f779261f
1 changed files with 1 additions and 1 deletions
|
@ -2210,7 +2210,7 @@ static int ql_send_map(struct ql3_adapter *qdev,
|
|||
{
|
||||
struct oal *oal;
|
||||
struct oal_entry *oal_entry;
|
||||
int len = skb->len;
|
||||
int len = skb_headlen(skb);
|
||||
dma_addr_t map;
|
||||
int err;
|
||||
int completed_segs, i;
|
||||
|
|
Loading…
Reference in a new issue