diff options
author | David S. Miller <davem@davemloft.net> | 2018-08-06 23:25:13 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-09-10 10:06:53 -0700 |
commit | 1181d629cc135fe346216c66f0f1fb9bfca51b33 (patch) | |
tree | 587e65d9277d49a5ac5a045ad1ef46fc6a82d68a /net/sctp | |
parent | e42a43a5cab2e019b5ab82bedb1340854709154d (diff) | |
download | linux-1181d629cc135fe346216c66f0f1fb9bfca51b33.tar.bz2 |
sctp: Use skb_queue_is_first().
Instead of direct skb_queue_head pointer accesses.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/ulpqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/ulpqueue.c b/net/sctp/ulpqueue.c index 0b427100b0d4..331cc734e3db 100644 --- a/net/sctp/ulpqueue.c +++ b/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 * 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; |