]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
virtio_net: disable mac write for virtio 1.0
authorMichael S. Tsirkin <mst@redhat.com>
Wed, 26 Nov 2014 13:58:28 +0000 (15:58 +0200)
committerMichael S. Tsirkin <mst@redhat.com>
Tue, 9 Dec 2014 10:05:28 +0000 (12:05 +0200)
The spec states that mac in config space is only driver-writable in the
legacy case.  Fence writing it in virtnet_set_mac_address() in the
virtio 1.0 case.

Suggested-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com>
drivers/net/virtio_net.c

index a0e64cfdbc244dbc63dba309a37fdeedf0bebd83..b8bd7191572dca25315c71558b434902720a63cc 100644 (file)
@@ -1030,7 +1030,8 @@ static int virtnet_set_mac_address(struct net_device *dev, void *p)
                                 "Failed to set mac address by vq command.\n");
                        return -EINVAL;
                }
-       } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) {
+       } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
+                  !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
                unsigned int i;
 
                /* Naturally, this has an atomicity problem. */