summaryrefslogtreecommitdiffstats
path: root/net/sctp/chunk.c
diff options
context:
space:
mode:
authorXin Long2016-02-15 07:28:05 +0100
committerDavid S. Miller2016-02-17 21:41:54 +0100
commit1cd4d5c4326a7ed3bb0e346bd7d20f5057a80ae6 (patch)
tree3296c8c8aa3a0f09f11df7f55afd34f330f289e1 /net/sctp/chunk.c
parentsctp: remove rcu_read_lock in sctp_seq_dump_remote_addrs() (diff)
downloadkernel-qcow2-linux-1cd4d5c4326a7ed3bb0e346bd7d20f5057a80ae6.tar.gz
kernel-qcow2-linux-1cd4d5c4326a7ed3bb0e346bd7d20f5057a80ae6.tar.xz
kernel-qcow2-linux-1cd4d5c4326a7ed3bb0e346bd7d20f5057a80ae6.zip
sctp: remove the unused sctp_datamsg_free()
Since commit 8b570dc9f7b6 ("sctp: only drop the reference on the datamsg after sending a msg") used sctp_datamsg_put in sctp_sendmsg, instead of sctp_datamsg_free, this function has no use in sctp. So we will remove it. Signed-off-by: Xin Long <lucien.xin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/chunk.c')
-rw-r--r--net/sctp/chunk.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/net/sctp/chunk.c b/net/sctp/chunk.c
index a3380917f197..3aa43073e0b9 100644
--- a/net/sctp/chunk.c
+++ b/net/sctp/chunk.c
@@ -70,19 +70,6 @@ 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)
{