diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-06-17 11:40:04 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-06-17 17:08:04 -0700 |
commit | 939cfa75a0cea97aa60cb88e3722baefdceb4e72 (patch) | |
tree | 6fa177035a89a9f2a2c6ac03c7ed4a7b3af84072 /net/sctp/associola.c | |
parent | 32bc9b46d840d08e1c8f58eaf500d0e596c33659 (diff) |
net: sctp: get rid of t_new macro for kzalloc
t_new rather obfuscates things where everyone else is using actual
function names instead of that macro, so replace it with kzalloc,
which is the function t_new wraps.
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Acked-by: Vlad Yasevich <vyasevich@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/associola.c')
-rw-r--r-- | net/sctp/associola.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/associola.c b/net/sctp/associola.c index 756025c98e85..bf6e6bd553c0 100644 --- a/net/sctp/associola.c +++ b/net/sctp/associola.c @@ -355,7 +355,7 @@ struct sctp_association *sctp_association_new(const struct sctp_endpoint *ep, { struct sctp_association *asoc; - asoc = t_new(struct sctp_association, gfp); + asoc = kzalloc(sizeof(*asoc), gfp); if (!asoc) goto fail; |