]> git.droids-corp.org - dpdk.git/commitdiff
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 42fcd2d38acc6cab830f18236ff42b9ee98bf09d..22a9186522dcc524a527c8efa6e4002f8487210e 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 6d4c23042a14dee4bb71f2ff8233e4894a11d762..a787fd2325874cd535f14169d1506f26bb470125 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;
 };
 
 /*