net: sctp: sctp_outq: remove 'malloced' from its struct
sctp_outq is embedded into sctp_association, and thus never kmalloced in any way. Also, malloced is always 0, thus kfree() is never called. Therefore, remove that dead piece of code. Signed-off-by: Daniel Borkmann <dborkman@redhat.com> Acked-by: Neil Horman <nhorman@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ee16371e6c
commit
165a4c3127
2 changed files with 0 additions and 9 deletions
|
@ -1059,9 +1059,6 @@ struct sctp_outq {
|
||||||
|
|
||||||
/* Is this structure empty? */
|
/* Is this structure empty? */
|
||||||
char empty;
|
char empty;
|
||||||
|
|
||||||
/* Are we kfree()able? */
|
|
||||||
char malloced;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
void sctp_outq_init(struct sctp_association *, struct sctp_outq *);
|
void sctp_outq_init(struct sctp_association *, struct sctp_outq *);
|
||||||
|
|
|
@ -217,8 +217,6 @@ void sctp_outq_init(struct sctp_association *asoc, struct sctp_outq *q)
|
||||||
q->outstanding_bytes = 0;
|
q->outstanding_bytes = 0;
|
||||||
q->empty = 1;
|
q->empty = 1;
|
||||||
q->cork = 0;
|
q->cork = 0;
|
||||||
|
|
||||||
q->malloced = 0;
|
|
||||||
q->out_qlen = 0;
|
q->out_qlen = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -295,10 +293,6 @@ void sctp_outq_free(struct sctp_outq *q)
|
||||||
{
|
{
|
||||||
/* Throw away leftover chunks. */
|
/* Throw away leftover chunks. */
|
||||||
__sctp_outq_teardown(q);
|
__sctp_outq_teardown(q);
|
||||||
|
|
||||||
/* If we were kmalloc()'d, free the memory. */
|
|
||||||
if (q->malloced)
|
|
||||||
kfree(q);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Put a new chunk in an sctp_outq. */
|
/* Put a new chunk in an sctp_outq. */
|
||||||
|
|
Loading…
Add table
Reference in a new issue