Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1181d629 authored by David S. Miller's avatar David S. Miller
Browse files

sctp: Use skb_queue_is_first().



Instead of direct skb_queue_head pointer accesses.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e42a43a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -459,7 +459,7 @@ static struct sctp_ulpevent *sctp_ulpq_retrieve_reassembled(struct sctp_ulpq *ul
			 * element in the queue, then count it towards
			 * possible PD.
			 */
			if (pos == ulpq->reasm.next) {
			if (skb_queue_is_first(&ulpq->reasm, pos)) {
			    pd_first = pos;
			    pd_last = pos;
			    pd_len = pos->len;