[PATCH] Phonet: Netlink event for autoconfigured addresses

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: =?utf-8?q?R=C3=A9mi=20Denis-Courmont?=
Date: Monday, September 14, 2009 - 6:10 am

From: Rémi Denis-Courmont <remi.denis-courmont@nokia.com>

From: Rémi Denis-Courmont <remi.denis-courmont@nokia.com>

Signed-off-by: Rémi Denis-Courmont <remi.denis-courmont@nokia.com>
---
 net/phonet/pn_dev.c |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/net/phonet/pn_dev.c b/net/phonet/pn_dev.c
index 2f65dca..5f42f30 100644
--- a/net/phonet/pn_dev.c
+++ b/net/phonet/pn_dev.c
@@ -209,7 +209,14 @@ static int phonet_device_autoconf(struct net_device *dev)
 						SIOCPNGAUTOCONF);
 	if (ret < 0)
 		return ret;
-	return phonet_address_add(dev, req.ifr_phonet_autoconf.device);
+
+	ASSERT_RTNL();
+	ret = phonet_address_add(dev, req.ifr_phonet_autoconf.device);
+	if (ret)
+		return ret;
+	phonet_address_notify(RTM_NEWADDR, dev,
+				req.ifr_phonet_autoconf.device);
+	return 0;
 }
 
 /* notify Phonet of device events */
-- 
1.6.0.4

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] Phonet: Netlink event for autoconfigured addresses, =?utf-8?q?R=C3=A9mi= ..., (Mon Sep 14, 6:10 am)
[PATCH] cdc-phonet: remove noisy debug statement, =?utf-8?q?R=C3=A9mi= ..., (Mon Sep 14, 6:10 am)
Re: [PATCH] cdc-phonet: remove noisy debug statement, David Miller, (Mon Sep 14, 5:08 pm)