Re: [PATCH] smsc95xx: generate random MAC address once, not every ifup

Previous thread: Re: [Ksummit-2010-discuss] [v2] Remaining BKL users, what to do by Dave Airlie on Monday, October 18, 2010 - 4:00 pm. (1 message)

Next thread: [PATCH] bridge: make br_parse_ip_options static by Stephen Hemminger on Monday, October 18, 2010 - 5:03 pm. (5 messages)
From: Bernard Blackham
Date: Monday, October 18, 2010 - 4:16 pm

The smsc95xx driver currently generates a new random MAC address
every time the interface is brought up. This makes it impossible to
override using the standard `ifconfig hw ether` approach.

Past patches tried to make the MAC address a module parameter or
base it off the die ID, but it seems to me much simpler (and
hopefully less controversial) to stick with the current random
generation scheme, but allow the user to change the address.

This patch does exactly that - it moves the random address
generation from smsc95xx_reset() into smsc95xx_bind(), so that it is
done once on module load, not on every ifup. The user can then
override this using the standard mechanisms.

Applies against 2.6.35 and linux-2.6 head.

Signed-off-by: Bernard Blackham <b-omap@largestprime.net>

---

--- a/drivers/net/usb/smsc95xx.c	2010-10-19 00:15:35.915612223 +1100
+++ b/drivers/net/usb/smsc95xx.c	2010-10-19 00:15:55.408550929 +1100
@@ -805,8 +805,6 @@ static int smsc95xx_reset(struct usbnet
 		return ret;
 	}
 
-	smsc95xx_init_mac_address(dev);
-
 	ret = smsc95xx_set_mac_address(dev);
 	if (ret < 0)
 		return ret;
@@ -1047,6 +1045,8 @@ static int smsc95xx_bind(struct usbnet *
 	pdata->use_tx_csum = DEFAULT_TX_CSUM_ENABLE;
 	pdata->use_rx_csum = DEFAULT_RX_CSUM_ENABLE;
 
+	smsc95xx_init_mac_address(dev);
+
 	/* Init all registers */
 	ret = smsc95xx_reset(dev);
 
--

From: David Miller
Date: Thursday, October 21, 2010 - 3:17 am

From: Bernard Blackham <bernard@largestprime.net>

Applied.
--

Previous thread: Re: [Ksummit-2010-discuss] [v2] Remaining BKL users, what to do by Dave Airlie on Monday, October 18, 2010 - 4:00 pm. (1 message)

Next thread: [PATCH] bridge: make br_parse_ip_options static by Stephen Hemminger on Monday, October 18, 2010 - 5:03 pm. (5 messages)