[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20140403120122.fe50ce80260faf3fc3a4ae30@linux-foundation.org>
Date: Thu, 3 Apr 2014 12:01:22 -0700
From: Andrew Morton <akpm@...ux-foundation.org>
To: Vlad Yasevich <vyasevich@...il.com>, Jiri Pirko <jiri@...nulli.us>,
Nicolas Dichtel <nicolas.dichtel@...nd.com>
Cc: David Miller <davem@...emloft.net>, netdev@...r.kernel.org
Subject: net-core-rtnetlinkc-copy-paste-error-in-rtnl_bridge_notify.patch
Guys, I've been sitting on this since January and simply cannot
remember what happened with it. Is this still a thing or did it get
nacked, or...?
Thanks.
From: Yogesh Gaur <yogeshgaur.83@...il.com>
Subject: net/core/rtnetlink.c: copy paste error in rtnl_bridge_notify()
Seems to be copy paste error in calling ndo_bridge_getlink() func.
Signed-off-by: Yogesh Gaur <yogeshgaur.83@...il.com>
Cc: "David S. Miller" <davem@...emloft.net>
Cc: Vlad Yasevich <vyasevich@...il.com>
Cc: Jiri Pirko <jiri@...nulli.us>
Cc: Nicolas Dichtel <nicolas.dichtel@...nd.com>
Signed-off-by: Andrew Morton <akpm@...ux-foundation.org>
---
net/core/rtnetlink.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN net/core/rtnetlink.c~net-core-rtnetlinkc-copy-paste-error-in-rtnl_bridge_notify net/core/rtnetlink.c
--- a/net/core/rtnetlink.c~net-core-rtnetlinkc-copy-paste-error-in-rtnl_bridge_notify
+++ a/net/core/rtnetlink.c
@@ -2576,7 +2576,7 @@ static int rtnl_bridge_notify(struct net
if ((!flags || (flags & BRIDGE_FLAGS_MASTER)) &&
br_dev && br_dev->netdev_ops->ndo_bridge_getlink) {
- err = br_dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0);
+ err = br_dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, br_dev, 0);
if (err < 0)
goto errout;
}
_
--
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