Subject: [nacked] net-core-rtnetlinkc-copy-paste-error-in-rtnl_bridge_notify.patch removed from -mm tree To: yogeshgaur.83@xxxxxxxxx,davem@xxxxxxxxxxxxx,jiri@xxxxxxxxxxx,nicolas.dichtel@xxxxxxxxx,vyasevich@xxxxxxxxx,mm-commits@xxxxxxxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Thu, 03 Apr 2014 12:53:42 -0700 The patch titled Subject: net/core/rtnetlink.c: copy paste error in rtnl_bridge_notify() has been removed from the -mm tree. Its filename was net-core-rtnetlinkc-copy-paste-error-in-rtnl_bridge_notify.patch This patch was dropped because it was nacked ------------------------------------------------------ From: Yogesh Gaur <yogeshgaur.83@xxxxxxxxx> 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@xxxxxxxxx> Cc: "David S. Miller" <davem@xxxxxxxxxxxxx> Cc: Vlad Yasevich <vyasevich@xxxxxxxxx> Cc: Jiri Pirko <jiri@xxxxxxxxxxx> Cc: Nicolas Dichtel <nicolas.dichtel@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- 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; } _ Patches currently in -mm which might be from yogeshgaur.83@xxxxxxxxx are -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html