diff options
-rw-r--r-- | drivers/scsi/fnic/fnic_fcs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/scsi/fnic/fnic_fcs.c b/drivers/scsi/fnic/fnic_fcs.c index 3c53c3478ee7..483eb9dbe663 100644 --- a/drivers/scsi/fnic/fnic_fcs.c +++ b/drivers/scsi/fnic/fnic_fcs.c | |||
@@ -495,7 +495,8 @@ void fnic_eth_send(struct fcoe_ctlr *fip, struct sk_buff *skb) | |||
495 | } | 495 | } |
496 | 496 | ||
497 | fnic_queue_wq_eth_desc(wq, skb, pa, skb->len, | 497 | fnic_queue_wq_eth_desc(wq, skb, pa, skb->len, |
498 | fnic->vlan_hw_insert, fnic->vlan_id, 1); | 498 | 0 /* hw inserts cos value */, |
499 | fnic->vlan_id, 1); | ||
499 | spin_unlock_irqrestore(&fnic->wq_lock[0], flags); | 500 | spin_unlock_irqrestore(&fnic->wq_lock[0], flags); |
500 | } | 501 | } |
501 | 502 | ||
@@ -563,7 +564,8 @@ static int fnic_send_frame(struct fnic *fnic, struct fc_frame *fp) | |||
563 | } | 564 | } |
564 | 565 | ||
565 | fnic_queue_wq_desc(wq, skb, pa, tot_len, fr_eof(fp), | 566 | fnic_queue_wq_desc(wq, skb, pa, tot_len, fr_eof(fp), |
566 | fnic->vlan_hw_insert, fnic->vlan_id, 1, 1, 1); | 567 | 0 /* hw inserts cos value */, |
568 | fnic->vlan_id, 1, 1, 1); | ||
567 | fnic_send_frame_end: | 569 | fnic_send_frame_end: |
568 | spin_unlock_irqrestore(&fnic->wq_lock[0], flags); | 570 | spin_unlock_irqrestore(&fnic->wq_lock[0], flags); |
569 | 571 | ||