virtio: remove unused adapter_stopped field
authorStephen Hemminger <stephen@networkplumber.org>
Sat, 14 Jun 2014 01:06:24 +0000 (18:06 -0700)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 22 Jul 2014 13:00:01 +0000 (15:00 +0200)
This flag was set to zero (but was already zero)
and never used.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Alan Carew <alan.carew@intel.com>
lib/librte_pmd_virtio/virtio_ethdev.c
lib/librte_pmd_virtio/virtio_pci.h

index 42fcd2d..22a9186 100644 (file)
@@ -952,8 +952,6 @@ virtio_dev_start(struct rte_eth_dev *dev)
        /* Tell the host we've known how to drive the device. */
        vtpci_set_status(hw, VIRTIO_CONFIG_STATUS_DRIVER);
 
-       hw->adapter_stopped = 0;
-
        virtio_dev_cq_start(dev);
 
        /* Do final configuration before rx/tx engine starts */
index 6d4c230..a787fd2 100644 (file)
@@ -179,7 +179,6 @@ struct virtio_hw {
        uint8_t     revision_id;
        uint8_t     use_msix;
        uint8_t     mac_addr[ETHER_ADDR_LEN];
-       int         adapter_stopped;
 };
 
 /*