[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <49A83063.2060600@candelatech.com>
Date: Fri, 27 Feb 2009 10:26:43 -0800
From: Ben Greear <greearb@...delatech.com>
To: Stephen Hemminger <shemminger@...tta.com>
CC: "Eric W. Biederman" <ebiederm@...ssion.com>,
Herbert Xu <herbert@...dor.apana.org.au>,
Patrick McHardy <kaber@...sh.net>,
Linux Netdev List <netdev@...r.kernel.org>,
"David S. Miller" <davem@...emloft.net>
Subject: Re: IPv4/IPv6 sysctl unregistration deadlock
Stephen Hemminger wrote:
> Subject: [PATCH] Avoid race between network down and sysfs
>
>
> Signed-off-by: Stephen Hemminger <shemminger@...tta.com>
>
> --- a/net/core/net-sysfs.c 2009-02-26 08:36:18.000000000 -0800
> +++ b/net/core/net-sysfs.c 2009-02-26 08:37:51.000000000 -0800
> @@ -77,7 +77,9 @@ static ssize_t netdev_store(struct devic
> if (endp == buf)
> goto err;
>
> - rtnl_lock();
> + if (!rtnl_trylock())
> + return -ERESTARTSYS;
> +
> if (dev_isalive(net)) {
> if ((ret = (*set)(net, new)) == 0)
> ret = len;
I can test this to see if it fixes my problem. Are the above lines the
entirety of the patch?
I think I'll add a printk if we do the ERESTARTSYS to make sure that I
hit the race (but still recover).
Thanks,
Ben
--
Ben Greear <greearb@...delatech.com>
Candela Technologies Inc http://www.candelatech.com
--
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