diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-04-16 11:07:12 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-04-17 18:13:02 (GMT) |
commit | 165a4c31278c980862b2c2ddec408cf30341f3ec (patch) | |
tree | 556c9b4284952643f7f184088c9fe997ccc37eda /include | |
parent | ee16371e6c737684215ee10b4b9756b610d81272 (diff) | |
download | linux-165a4c31278c980862b2c2ddec408cf30341f3ec.tar.xz |
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>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/sctp/structs.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index 125a19c..73fd5de 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h @@ -1059,9 +1059,6 @@ struct sctp_outq { /* Is this structure empty? */ char empty; - - /* Are we kfree()able? */ - char malloced; }; void sctp_outq_init(struct sctp_association *, struct sctp_outq *); |