[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1360252376.28557.52.camel@edumazet-glaptop>
Date: Thu, 07 Feb 2013 07:52:56 -0800
From: Eric Dumazet <eric.dumazet@...il.com>
To: Neil Horman <nhorman@...driver.com>
Cc: netdev@...r.kernel.org, fengguang.wu@...el.com,
David Miller <davem@...emloft.net>
Subject: Re: [PATCH] netpoll: cleanup sparse warnings
On Thu, 2013-02-07 at 09:56 -0500, Neil Horman wrote:
> With my recent commit I introduced two sparse warnings. Looking closer there
> were a few more in the same file, so I fixed them all up. Basic rcu pointer
> dereferencing suff
> - npinfo = np->dev->npinfo;
> + /* rtnl_dereference would be preferable here but
> + * rcu_cleanup_netpoll path can put us in here safely without
> + * holding the rtnl, so plain rcu_dereference it is
> + */
> + npinfo = rcu_dereference(np->dev->npinfo);
> if (!npinfo)
> return;
>
Are you sure it wont trigger a LOCKDEP complain (CONFIG_PROVE_RCU=y) ?
--
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