net/virtio-user: do not close tap when disabling queue pairs
[dpdk.git] / drivers / net / virtio / virtio_user / vhost_user.c
index 827a48a..d8e083b 100644 (file)
@@ -13,7 +13,6 @@
 
 #include <rte_string_fns.h>
 #include <rte_fbarray.h>
-#include <rte_eal_memconfig.h>
 
 #include "vhost.h"
 #include "virtio_user_dev.h"
@@ -394,7 +393,10 @@ virtio_user_start_server(struct virtio_user_dev *dev, struct sockaddr_un *un)
                return -1;
 
        flag = fcntl(fd, F_GETFL);
-       fcntl(fd, F_SETFL, flag | O_NONBLOCK);
+       if (fcntl(fd, F_SETFL, flag | O_NONBLOCK) < 0) {
+               PMD_DRV_LOG(ERR, "fcntl failed, %s", strerror(errno));
+               return -1;
+       }
 
        return 0;
 }
@@ -454,6 +456,9 @@ vhost_user_enable_queue_pair(struct virtio_user_dev *dev,
 {
        int i;
 
+       if (dev->qp_enabled[pair_idx] == enable)
+               return 0;
+
        for (i = 0; i < 2; ++i) {
                struct vhost_vring_state state = {
                        .index = pair_idx * 2 + i,
@@ -464,6 +469,7 @@ vhost_user_enable_queue_pair(struct virtio_user_dev *dev,
                        return -1;
        }
 
+       dev->qp_enabled[pair_idx] = enable;
        return 0;
 }