Re: [PATCH] scsi: target: cxgbit: check skb dequeue result

From: Denis Plotnikov
Date: Mon Apr 10 2023 - 09:04:39 EST



On 10.04.2023 14:45, Varun Prakash wrote:
On a couple of abort packet paths skb dequeuing may end up with
returning NULL, which, in turn, may end up with further null
pointer dereference.

Fix it by checking the return value of skb dequeuing.
skbs in csk->skbq are preallocated for critical events in cxgbit_alloc_csk_skb(),
so there is no need to check for NULL.
Ok, thanks for the reply