mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-25 16:11:45 +00:00
[SCTP]: Use struct list_head for chunk lists, not sk_buff_head.
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9c05989bb2
commit
79af02c253
8 changed files with 86 additions and 66 deletions
|
@ -406,7 +406,7 @@ static int sctp_send_asconf(struct sctp_association *asoc,
|
|||
* transmission.
|
||||
*/
|
||||
if (asoc->addip_last_asconf) {
|
||||
__skb_queue_tail(&asoc->addip_chunks, (struct sk_buff *)chunk);
|
||||
list_add_tail(&chunk->list, &asoc->addip_chunk_list);
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue