commit 1231f0baa547a541a7481119323b7f964dda4788 Converted sctp to use kfree_rcu from sctp_local_addr_free but missed this one call point. Fix it up accordingly. Signed-off-by: Neil Horman <nhorman@xxxxxxxxxxxxx> CC: Vlad Yasevich <vladislav.yasevich@xxxxxx> CC: Sridhar Samudrala <sri@xxxxxxxxxx> CC: "David S. Miller" <davem@xxxxxxxxxxxxx> CC: linux-sctp@xxxxxxxxxxxxxxx --- net/sctp/bind_addr.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/sctp/bind_addr.c b/net/sctp/bind_addr.c index 6338413..83e3011 100644 --- a/net/sctp/bind_addr.c +++ b/net/sctp/bind_addr.c @@ -145,7 +145,7 @@ static void sctp_bind_addr_clean(struct sctp_bind_addr *bp) /* Empty the bind address list. */ list_for_each_entry_safe(addr, temp, &bp->address_list, list) { list_del_rcu(&addr->list); - call_rcu(&addr->rcu, sctp_local_addr_free); + kfree_rcu(addr, rcu); SCTP_DBG_OBJCNT_DEC(addr); } } -- 1.7.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-sctp" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html