From: Jiri Pirko <jpirko@redhat.com>
To: Dan Carpenter <dan.carpenter@oracle.com>
Cc: Patrick McHardy <kaber@trash.net>,
"David S. Miller" <davem@davemloft.net>,
netdev@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [patch] vlan: add rtnl_dereference() annotations
Date: Wed, 14 Dec 2011 07:34:47 +0000 [thread overview]
Message-ID: <20111214073446.GA2092@minipsycho> (raw)
In-Reply-To: <20111214062943.GD7499@elgon.mountain>
Wed, Dec 14, 2011 at 07:29:43AM CET, dan.carpenter@oracle.com wrote:
>The original code generates a Sparse warning:
>net/8021q/vlan_core.c:336:9:
> error: incompatible types in comparison expression (different address spaces)
>
>It's ok to dereference __rcu pointers here because we are holding the
>RTNL lock. I've added some calls to rtnl_dereference() to silence the
>warning.
>
>Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
>---
>I haven't tested this, and I'm not super familiar with this code.
>Please review it carefully.
>
>diff --git a/net/8021q/vlan_core.c b/net/8021q/vlan_core.c
>index 1414c93..4d39d80 100644
>--- a/net/8021q/vlan_core.c
>+++ b/net/8021q/vlan_core.c
>@@ -326,14 +326,16 @@ int vlan_vids_add_by_dev(struct net_device *dev,
> const struct net_device *by_dev)
> {
> struct vlan_vid_info *vid_info;
>+ struct vlan_info *vlan_info;
> int err;
>
> ASSERT_RTNL();
>
>- if (!by_dev->vlan_info)
>+ vlan_info = rtnl_dereference(by_dev->vlan_info);
>+ if (!vlan_info)
> return 0;
>
>- list_for_each_entry(vid_info, &by_dev->vlan_info->vid_list, list) {
>+ list_for_each_entry(vid_info, &vlan_info->vid_list, list) {
> err = vlan_vid_add(dev, vid_info->vid);
> if (err)
> goto unwind;
>@@ -342,7 +344,7 @@ int vlan_vids_add_by_dev(struct net_device *dev,
>
> unwind:
> list_for_each_entry_continue_reverse(vid_info,
>- &by_dev->vlan_info->vid_list,
>+ &vlan_info->vid_list,
> list) {
> vlan_vid_del(dev, vid_info->vid);
> }
>@@ -355,13 +357,15 @@ void vlan_vids_del_by_dev(struct net_device *dev,
> const struct net_device *by_dev)
> {
> struct vlan_vid_info *vid_info;
>+ struct vlan_info *vlan_info;
>
> ASSERT_RTNL();
>
>- if (!by_dev->vlan_info)
>+ vlan_info = rtnl_dereference(by_dev->vlan_info);
>+ if (!vlan_info)
> return;
>
>- list_for_each_entry(vid_info, &by_dev->vlan_info->vid_list, list)
>+ list_for_each_entry(vid_info, &vlan_info->vid_list, list)
> vlan_vid_del(dev, vid_info->vid);
> }
> EXPORT_SYMBOL(vlan_vids_del_by_dev);
Acked-by: Jiri Pirko <jpirko@redhat.com>
Thanks Dan!
WARNING: multiple messages have this Message-ID (diff)
From: Jiri Pirko <jpirko@redhat.com>
To: Dan Carpenter <dan.carpenter@oracle.com>
Cc: Patrick McHardy <kaber@trash.net>,
"David S. Miller" <davem@davemloft.net>,
netdev@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [patch] vlan: add rtnl_dereference() annotations
Date: Wed, 14 Dec 2011 08:34:47 +0100 [thread overview]
Message-ID: <20111214073446.GA2092@minipsycho> (raw)
In-Reply-To: <20111214062943.GD7499@elgon.mountain>
Wed, Dec 14, 2011 at 07:29:43AM CET, dan.carpenter@oracle.com wrote:
>The original code generates a Sparse warning:
>net/8021q/vlan_core.c:336:9:
> error: incompatible types in comparison expression (different address spaces)
>
>It's ok to dereference __rcu pointers here because we are holding the
>RTNL lock. I've added some calls to rtnl_dereference() to silence the
>warning.
>
>Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
>---
>I haven't tested this, and I'm not super familiar with this code.
>Please review it carefully.
>
>diff --git a/net/8021q/vlan_core.c b/net/8021q/vlan_core.c
>index 1414c93..4d39d80 100644
>--- a/net/8021q/vlan_core.c
>+++ b/net/8021q/vlan_core.c
>@@ -326,14 +326,16 @@ int vlan_vids_add_by_dev(struct net_device *dev,
> const struct net_device *by_dev)
> {
> struct vlan_vid_info *vid_info;
>+ struct vlan_info *vlan_info;
> int err;
>
> ASSERT_RTNL();
>
>- if (!by_dev->vlan_info)
>+ vlan_info = rtnl_dereference(by_dev->vlan_info);
>+ if (!vlan_info)
> return 0;
>
>- list_for_each_entry(vid_info, &by_dev->vlan_info->vid_list, list) {
>+ list_for_each_entry(vid_info, &vlan_info->vid_list, list) {
> err = vlan_vid_add(dev, vid_info->vid);
> if (err)
> goto unwind;
>@@ -342,7 +344,7 @@ int vlan_vids_add_by_dev(struct net_device *dev,
>
> unwind:
> list_for_each_entry_continue_reverse(vid_info,
>- &by_dev->vlan_info->vid_list,
>+ &vlan_info->vid_list,
> list) {
> vlan_vid_del(dev, vid_info->vid);
> }
>@@ -355,13 +357,15 @@ void vlan_vids_del_by_dev(struct net_device *dev,
> const struct net_device *by_dev)
> {
> struct vlan_vid_info *vid_info;
>+ struct vlan_info *vlan_info;
>
> ASSERT_RTNL();
>
>- if (!by_dev->vlan_info)
>+ vlan_info = rtnl_dereference(by_dev->vlan_info);
>+ if (!vlan_info)
> return;
>
>- list_for_each_entry(vid_info, &by_dev->vlan_info->vid_list, list)
>+ list_for_each_entry(vid_info, &vlan_info->vid_list, list)
> vlan_vid_del(dev, vid_info->vid);
> }
> EXPORT_SYMBOL(vlan_vids_del_by_dev);
Acked-by: Jiri Pirko <jpirko@redhat.com>
Thanks Dan!
next prev parent reply other threads:[~2011-12-14 7:34 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-14 6:29 [patch] vlan: add rtnl_dereference() annotations Dan Carpenter
2011-12-14 6:29 ` Dan Carpenter
2011-12-14 7:01 ` Eric Dumazet
2011-12-14 7:01 ` Eric Dumazet
2011-12-14 7:34 ` Jiri Pirko [this message]
2011-12-14 7:34 ` Jiri Pirko
2011-12-14 7:47 ` David Miller
2011-12-14 7:47 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20111214073446.GA2092@minipsycho \
--to=jpirko@redhat.com \
--cc=dan.carpenter@oracle.com \
--cc=davem@davemloft.net \
--cc=kaber@trash.net \
--cc=kernel-janitors@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.