mirror of https://gitee.com/openkylin/linux.git
staging: rtl8192e: Use __skb_peek().
Instead of direct list head pointer accesses. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1173ab7b62
commit
250bb6f0f8
|
@ -1149,7 +1149,7 @@ static enum reset_type _rtl92e_tx_check_stuck(struct net_device *dev)
|
|||
if (skb_queue_len(&ring->queue) == 0) {
|
||||
continue;
|
||||
} else {
|
||||
skb = (&ring->queue)->next;
|
||||
skb = __skb_peek(&ring->queue);
|
||||
tcb_desc = (struct cb_desc *)(skb->cb +
|
||||
MAX_DEV_ADDR_SIZE);
|
||||
tcb_desc->nStuckCount++;
|
||||
|
|
Loading…
Reference in New Issue