diff options
author | David S. Miller <davem@davemloft.net> | 2018-08-07 23:43:51 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-09-10 10:06:53 -0700 |
commit | 1173ab7b62024c9247ba1843f240512fc0cb41a4 (patch) | |
tree | 6c70892c7745d685f8db616f995b8d37a61042ef /drivers/scsi/bnx2fc | |
parent | e3554197fc8fbb9656f62c18f9c9edd396394e16 (diff) | |
download | linux-stable-1173ab7b62024c9247ba1843f240512fc0cb41a4.tar.gz linux-stable-1173ab7b62024c9247ba1843f240512fc0cb41a4.tar.bz2 linux-stable-1173ab7b62024c9247ba1843f240512fc0cb41a4.zip |
bnx2fc_fcoe: Use skb_queue_walk_safe().
Instead of direct list pointer accesses.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/scsi/bnx2fc')
-rw-r--r-- | drivers/scsi/bnx2fc/bnx2fc_fcoe.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/scsi/bnx2fc/bnx2fc_fcoe.c b/drivers/scsi/bnx2fc/bnx2fc_fcoe.c index f00045813378..27c8d6ba05bb 100644 --- a/drivers/scsi/bnx2fc/bnx2fc_fcoe.c +++ b/drivers/scsi/bnx2fc/bnx2fc_fcoe.c @@ -150,15 +150,11 @@ static void bnx2fc_clean_rx_queue(struct fc_lport *lp) struct fcoe_rcv_info *fr; struct sk_buff_head *list; struct sk_buff *skb, *next; - struct sk_buff *head; bg = &bnx2fc_global; spin_lock_bh(&bg->fcoe_rx_list.lock); list = &bg->fcoe_rx_list; - head = list->next; - for (skb = head; skb != (struct sk_buff *)list; - skb = next) { - next = skb->next; + skb_queue_walk_safe(list, skb, next) { fr = fcoe_dev_from_skb(skb); if (fr->fr_dev == lp) { __skb_unlink(skb, list); |