[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <m1zlfwbs8a.fsf@fess.ebiederm.org>
Date: Sat, 07 Mar 2009 19:36:53 -0800
From: ebiederm@...ssion.com (Eric W. Biederman)
To: David Miller <davem@...emloft.net>
Cc: kaber@...sh.net, greearb@...delatech.com, shemminger@...tta.com,
herbert@...dor.apana.org.au, netdev@...r.kernel.org
Subject: Re: IPv4/IPv6 sysctl unregistration deadlock
David Miller <davem@...emloft.net> writes:
> From: Patrick McHardy <kaber@...sh.net>
> Date: Tue, 03 Mar 2009 00:03:00 +0100
>
>> David Miller wrote:
>> > From: Patrick McHardy <kaber@...sh.net>
>> > Date: Mon, 02 Mar 2009 23:20:49 +0100
>> >
>> >> This looks like its working fine. Despite the non-desirable active
>> >> spinning, this seems like the best fix (actually much simpler than
>> >> I expected to be possible) at this time. If we just could avoid
>> >> the spinning when unnecessary, it would be perfect :)
>> > Could you give that "not actually in-progress" detection a shot?
>> > I don't like the spinning either.
>>
>> I tried this morning, the problem is that its always the sysctl
>> handler which will run into the deadlock first, but there is no
>> reliable indication to avoid it other than that the RTNL is
>> already held. The problem is that the sysctl interface puts the
>> process holding the RTNL to sleep and allows a process requiring
>> it to run. Any different synchronization attempt will have the
>> same problem, it seems you simply can't hold any locks while
>> unregistering sysctls.
>
> Ok, I applied Stephen's patches then...
>From the further brainstorming department...
It appears we are using the wait for the completion
for two distinct purposes.
Waiting until it is safe to free storage.
Blocking module unregistration until the all of the
users of the code are gone.
I'm wondering if we could move the memory freeing.
And consolidate the waiting ultimately moving the
wait for completion into netdev_run_todo after
we drop the lock.
The reason I care is that it looks like to get hotplug
handling sane, I'm going to need to implement a generic
version of what sysfs, proc and sysctl are doing, and I
expect that generic version belongs in the vfs ultimately
giving us the capability to implement revoke.
So I am going to be revisiting how the code works, and if
I can come up with a cleaner solution to the networking
stack it would be a good time to implement it.
Eric
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists