Parcourir la source

sctp: Use skb_queue_is_first().

Instead of direct skb_queue_head pointer accesses.

Signed-off-by: David S. Miller <davem@davemloft.net>
David S. Miller il y a 7 ans
Parent
commit
1181d629cc
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      net/sctp/ulpqueue.c

+ 1 - 1
net/sctp/ulpqueue.c

@@ -459,7 +459,7 @@ static struct sctp_ulpevent *sctp_ulpq_retrieve_reassembled(struct sctp_ulpq *ul
 			 * element in the queue, then count it towards
 			 * element in the queue, then count it towards
 			 * possible PD.
 			 * possible PD.
 			 */
 			 */
-			if (pos == ulpq->reasm.next) {
+			if (skb_queue_is_first(&ulpq->reasm, pos)) {
 			    pd_first = pos;
 			    pd_first = pos;
 			    pd_last = pos;
 			    pd_last = pos;
 			    pd_len = pos->len;
 			    pd_len = pos->len;