diff options
author | Lai Jiangshan <laijs@cn.fujitsu.com> | 2011-03-15 10:05:02 (GMT) |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2011-05-08 05:50:51 (GMT) |
commit | 1231f0baa547a541a7481119323b7f964dda4788 (patch) | |
tree | 4f03036990f55084650cda8f2cd17c759c6b2542 /include/net | |
parent | 37b6b935e96e837ccc60812c03e9f92e7dce2e61 (diff) | |
download | linux-1231f0baa547a541a7481119323b7f964dda4788.tar.xz |
net,rcu: convert call_rcu(sctp_local_addr_free) to kfree_rcu()
The rcu callback sctp_local_addr_free() just calls a kfree(),
so we use kfree_rcu() instead of the call_rcu(sctp_local_addr_free).
Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/sctp/sctp.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h index 505845d..01e094c 100644 --- a/include/net/sctp/sctp.h +++ b/include/net/sctp/sctp.h @@ -115,7 +115,6 @@ * sctp/protocol.c */ extern struct sock *sctp_get_ctl_sock(void); -extern void sctp_local_addr_free(struct rcu_head *head); extern int sctp_copy_local_addr_list(struct sctp_bind_addr *, sctp_scope_t, gfp_t gfp, int flags); |