There is nothing in the device backend which prohibits us from
changing the MAC address of the vmxnet2 vNIC while the interface
is up and running. This patch allows the same from guest driver.
Thus vmxnet2 is comparable to vmxnet3 and e1000 behavior in this
regard.
Signed-off-by: Marcelo Vanzin <mvanzin@vmware.com>
unsigned int ioaddr = dev->base_addr;
int i;
- if (netif_running(dev))
- return -EBUSY;
-
memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
for (i = 0; i < ETH_ALEN; i++) {
#ifndef _VMXNET_VERSION_H_
#define _VMXNET_VERSION_H_
-#define VMXNET_DRIVER_VERSION 2.0.10.0
-#define VMXNET_DRIVER_VERSION_COMMAS 2,0,10,0
-#define VMXNET_DRIVER_VERSION_STRING "2.0.10.0"
+#define VMXNET_DRIVER_VERSION 2.0.11.0
+#define VMXNET_DRIVER_VERSION_COMMAS 2,0,11,0
+#define VMXNET_DRIVER_VERSION_STRING "2.0.11.0"
#endif /* _VMXNET_VERSION_H_ */