sctp: alloc stream info when initializing asoc
When sending a msg without asoc established, sctp will send INIT packet first and then enqueue chunks. Before receiving INIT_ACK, stream info is not yet alloced. But enqueuing chunks needs to access stream info, like out stream state and out stream cnt. This patch is to fix it by allocing out stream info when initializing an asoc, allocing in stream and re-allocing out stream when processing init. Signed-off-by: Xin Long <lucien.xin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
bcc5364bdc
commit
3dbcc105d5
@@ -377,7 +377,8 @@ typedef struct sctp_sender_hb_info {
|
||||
__u64 hb_nonce;
|
||||
} sctp_sender_hb_info_t;
|
||||
|
||||
struct sctp_stream *sctp_stream_new(__u16 incnt, __u16 outcnt, gfp_t gfp);
|
||||
int sctp_stream_new(struct sctp_association *asoc, gfp_t gfp);
|
||||
int sctp_stream_init(struct sctp_association *asoc, gfp_t gfp);
|
||||
void sctp_stream_free(struct sctp_stream *stream);
|
||||
void sctp_stream_clear(struct sctp_stream *stream);
|
||||
|
||||
|
Reference in New Issue
Block a user