From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cong Wang Subject: Re: [net-next PATCH 1/2] fib_trie: Fix warning on fib4_rules_exit Date: Mon, 30 Mar 2015 11:54:37 -0700 Message-ID: References: <20150327211416.2465.23170.stgit@ahduyck-vm-fedora22> <5515E7CE.5050206@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Cc: netdev , Cong Wang , David Miller To: Alexander Duyck Return-path: Received: from mail-ig0-f177.google.com ([209.85.213.177]:35421 "EHLO mail-ig0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753082AbbC3Syj (ORCPT ); Mon, 30 Mar 2015 14:54:39 -0400 Received: by igcau2 with SMTP id au2so84055016igc.0 for ; Mon, 30 Mar 2015 11:54:37 -0700 (PDT) In-Reply-To: <5515E7CE.5050206@redhat.com> Sender: netdev-owner@vger.kernel.org List-ID: On Fri, Mar 27, 2015 at 4:29 PM, Alexander Duyck wrote: > > On 03/27/2015 03:14 PM, Cong Wang wrote: >> >> On Fri, Mar 27, 2015 at 2:14 PM, Alexander Duyck >> wrote: >>> >>> The issue was that as a part of exiting the default rules were being >>> deleted which resulted in the local trie being unmerged. By moving the >>> freeing of the FIB tables up we can avoid the unmerge since there is no >>> local table left when we call the fib4_rules_exit function. >>> >> This literally means we no longer need to call ops->delete() >> in netns unregister path. > > > You are confusing table entries and rules. The tables are cleared, the > rules still have to be deleted. This patch breaks the reference counting > for fib_num_tclassid_users. It doesn't matter much here, the whole net is being unregistered, we are holding rtnl lock and existing readers don't mind to read an incorrect fib_num_tclassid_users. > >> >> diff --git a/net/core/fib_rules.c b/net/core/fib_rules.c >> index 68ea695..27b6e04 100644 >> --- a/net/core/fib_rules.c >> +++ b/net/core/fib_rules.c >> @@ -153,8 +153,6 @@ static void fib_rules_cleanup_ops(struct fib_rules_ops >> *ops) >> >> list_for_each_entry_safe(rule, tmp, &ops->rules_list, list) { >> list_del_rcu(&rule->list); >> - if (ops->delete) >> - ops->delete(rule); >> fib_rule_put(rule); >> } >> } >> diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c >> index e5b6b05..1481b23 100644 >> --- a/net/ipv4/fib_frontend.c >> +++ b/net/ipv4/fib_frontend.c >> @@ -1178,6 +1178,7 @@ static void ip_fib_net_exit(struct net *net) >> >> #ifdef CONFIG_IP_MULTIPLE_TABLES >> fib4_rules_exit(net); >> + fib_flush_external(net); // <-------- Maybe not needed either. >> #endif >> >> for (i = 0; i < FIB_TABLE_HASHSZ; i++) { > > > Take a look at fib4_rule_delete. There is more there than just unmerge and > flush external. I am not stupid, what otherwise do you think the above fib_flush_external() comes from? Read fib4_rule_delete(), everything it cleans up is per net, you can argue ipv4.fib_num_tclassid_users is a refcount for rules, but still the whole net is being unregistered.