sctp: free msg->chunks when sctp_primitive_SEND return err
Last patch "sctp: do not return the transmit err back to sctp_sendmsg" made sctp_primitive_SEND return err only when asoc state is unavailable. In this case, chunks are not enqueued, they have no chance to be freed if we don't take care of them later. This Patch is actually to revert commit1cd4d5c432
("sctp: remove the unused sctp_datamsg_free()"), commit69b5777f2e
("sctp: hold the chunks only after the chunk is enqueued in outq") and commit8b570dc9f7
("sctp: only drop the reference on the datamsg after sending a msg"), to use sctp_datamsg_free to free the chunks of current msg. Fixes:8b570dc9f7
("sctp: only drop the reference on the datamsg after sending a msg") 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
66388f2c08
commit
b61c654f9b
@@ -70,6 +70,19 @@ static struct sctp_datamsg *sctp_datamsg_new(gfp_t gfp)
|
||||
return msg;
|
||||
}
|
||||
|
||||
void sctp_datamsg_free(struct sctp_datamsg *msg)
|
||||
{
|
||||
struct sctp_chunk *chunk;
|
||||
|
||||
/* This doesn't have to be a _safe vairant because
|
||||
* sctp_chunk_free() only drops the refs.
|
||||
*/
|
||||
list_for_each_entry(chunk, &msg->chunks, frag_list)
|
||||
sctp_chunk_free(chunk);
|
||||
|
||||
sctp_datamsg_put(msg);
|
||||
}
|
||||
|
||||
/* Final destructruction of datamsg memory. */
|
||||
static void sctp_datamsg_destroy(struct sctp_datamsg *msg)
|
||||
{
|
||||
|
Reference in New Issue
Block a user