Blame SOURCES/0008-net-virtio-user-add-option-to-use-packed-queues.patch

b91920
From 0cdcdd50e4cbb88737abfee1e545019500f11e38 Mon Sep 17 00:00:00 2001
b91920
From: Yuanhan Liu <yuanhan.liu@linux.intel.com>
b91920
Date: Mon, 17 Dec 2018 22:31:37 +0100
b91920
Subject: [PATCH] net/virtio-user: add option to use packed queues
b91920
b91920
[ upstream commit 34f3966c7f81f947e9eebb347dec6a9f68eec4e6 ]
b91920
b91920
From: Yuanhan Liu <yuanhan.liu@linux.intel.com>
b91920
b91920
Add option to enable packed queue support for virtio-user
b91920
devices.
b91920
b91920
Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
b91920
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
b91920
(cherry picked from commit 34f3966c7f81f947e9eebb347dec6a9f68eec4e6)
b91920
Signed-off-by: Jens Freimann <jfreimann@redhat.com>
b91920
---
b91920
 .../net/virtio/virtio_user/virtio_user_dev.c  | 20 ++++++++++++++-----
b91920
 .../net/virtio/virtio_user/virtio_user_dev.h  |  2 +-
b91920
 drivers/net/virtio/virtio_user_ethdev.c       | 14 ++++++++++++-
b91920
 3 files changed, 29 insertions(+), 7 deletions(-)
b91920
b91920
diff --git a/drivers/net/virtio/virtio_user/virtio_user_dev.c b/drivers/net/virtio/virtio_user/virtio_user_dev.c
b91920
index f0051f887..7d0acaeb7 100644
b91920
--- a/drivers/net/virtio/virtio_user/virtio_user_dev.c
b91920
+++ b/drivers/net/virtio/virtio_user/virtio_user_dev.c
b91920
@@ -1,4 +1,4 @@
b91920
-/* SPDX-License-Identifier: BSD-3-Clause
b91920
+/* SPDX-License-Identifier: BSD-1-Clause
b91920
  * Copyright(c) 2010-2016 Intel Corporation
b91920
  */
b91920
 
b91920
@@ -58,6 +58,8 @@ virtio_user_kick_queue(struct virtio_user_dev *dev, uint32_t queue_sel)
b91920
 
b91920
 	state.index = queue_sel;
b91920
 	state.num = 0; /* no reservation */
b91920
+	if (dev->features & (1ULL << VIRTIO_F_RING_PACKED))
b91920
+		state.num |= (1 << 15);
b91920
 	dev->ops->send_request(dev, VHOST_USER_SET_VRING_BASE, &state);
b91920
 
b91920
 	dev->ops->send_request(dev, VHOST_USER_SET_VRING_ADDR, &addr);
b91920
@@ -407,12 +409,13 @@ virtio_user_dev_setup(struct virtio_user_dev *dev)
b91920
 	 1ULL << VIRTIO_NET_F_GUEST_TSO4	|	\
b91920
 	 1ULL << VIRTIO_NET_F_GUEST_TSO6	|	\
b91920
 	 1ULL << VIRTIO_F_IN_ORDER		|	\
b91920
-	 1ULL << VIRTIO_F_VERSION_1)
b91920
+	 1ULL << VIRTIO_F_VERSION_1		|	\
b91920
+	 1ULL << VIRTIO_F_RING_PACKED)
b91920
 
b91920
 int
b91920
 virtio_user_dev_init(struct virtio_user_dev *dev, char *path, int queues,
b91920
 		     int cq, int queue_size, const char *mac, char **ifname,
b91920
-		     int server, int mrg_rxbuf, int in_order)
b91920
+		     int server, int mrg_rxbuf, int in_order, int packed_vq)
b91920
 {
b91920
 	pthread_mutex_init(&dev->mutex, NULL);
b91920
 	snprintf(dev->path, PATH_MAX, "%s", path);
b91920
@@ -465,10 +468,17 @@ virtio_user_dev_init(struct virtio_user_dev *dev, char *path, int queues,
b91920
 	if (!in_order)
b91920
 		dev->unsupported_features |= (1ull << VIRTIO_F_IN_ORDER);
b91920
 
b91920
-	if (dev->mac_specified)
b91920
-		dev->frontend_features |= (1ull << VIRTIO_NET_F_MAC);
b91920
+	if (packed_vq)
b91920
+		dev->device_features |= (1ull << VIRTIO_F_RING_PACKED);
b91920
 	else
b91920
+		dev->device_features &= ~(1ull << VIRTIO_F_RING_PACKED);
b91920
+
b91920
+	if (dev->mac_specified) {
b91920
+		dev->device_features |= (1ull << VIRTIO_NET_F_MAC);
b91920
+	} else {
b91920
+		dev->device_features &= ~(1ull << VIRTIO_NET_F_MAC);
b91920
 		dev->unsupported_features |= (1ull << VIRTIO_NET_F_MAC);
b91920
+	}
b91920
 
b91920
 	if (cq) {
b91920
 		/* device does not really need to know anything about CQ,
b91920
diff --git a/drivers/net/virtio/virtio_user/virtio_user_dev.h b/drivers/net/virtio/virtio_user/virtio_user_dev.h
b91920
index 3e3a7b787..67a9c01ac 100644
b91920
--- a/drivers/net/virtio/virtio_user/virtio_user_dev.h
b91920
+++ b/drivers/net/virtio/virtio_user/virtio_user_dev.h
b91920
@@ -50,7 +50,7 @@ int virtio_user_start_device(struct virtio_user_dev *dev);
b91920
 int virtio_user_stop_device(struct virtio_user_dev *dev);
b91920
 int virtio_user_dev_init(struct virtio_user_dev *dev, char *path, int queues,
b91920
 			 int cq, int queue_size, const char *mac, char **ifname,
b91920
-			 int server, int mrg_rxbuf, int in_order);
b91920
+			 int server, int mrg_rxbuf, int in_order, int packed_vq);
b91920
 void virtio_user_dev_uninit(struct virtio_user_dev *dev);
b91920
 void virtio_user_handle_cq(struct virtio_user_dev *dev, uint16_t queue_idx);
b91920
 uint8_t virtio_user_handle_mq(struct virtio_user_dev *dev, uint16_t q_pairs);
b91920
diff --git a/drivers/net/virtio/virtio_user_ethdev.c b/drivers/net/virtio/virtio_user_ethdev.c
b91920
index 5781c0948..daad8f452 100644
b91920
--- a/drivers/net/virtio/virtio_user_ethdev.c
b91920
+++ b/drivers/net/virtio/virtio_user_ethdev.c
b91920
@@ -361,6 +361,8 @@ static const char *valid_args[] = {
b91920
 	VIRTIO_USER_ARG_MRG_RXBUF,
b91920
 #define VIRTIO_USER_ARG_IN_ORDER       "in_order"
b91920
 	VIRTIO_USER_ARG_IN_ORDER,
b91920
+#define VIRTIO_USER_ARG_PACKED_VQ "packed_vq"
b91920
+	VIRTIO_USER_ARG_PACKED_VQ,
b91920
 	NULL
b91920
 };
b91920
 
b91920
@@ -468,6 +470,7 @@ virtio_user_pmd_probe(struct rte_vdev_device *dev)
b91920
 	char *ifname = NULL;
b91920
 	char *mac_addr = NULL;
b91920
 	int ret = -1;
b91920
+	uint64_t packed_vq = 0;
b91920
 
b91920
 	if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
b91920
 		const char *name = rte_vdev_device_name(dev);
b91920
@@ -571,6 +574,15 @@ virtio_user_pmd_probe(struct rte_vdev_device *dev)
b91920
 		cq = 1;
b91920
 	}
b91920
 
b91920
+	if (rte_kvargs_count(kvlist, VIRTIO_USER_ARG_PACKED_VQ) == 1) {
b91920
+		if (rte_kvargs_process(kvlist, VIRTIO_USER_ARG_PACKED_VQ,
b91920
+				       &get_integer_arg, &packed_vq) < 0) {
b91920
+			PMD_INIT_LOG(ERR, "error to parse %s",
b91920
+				     VIRTIO_USER_ARG_PACKED_VQ);
b91920
+			goto end;
b91920
+		}
b91920
+	}
b91920
+
b91920
 	if (queues > 1 && cq == 0) {
b91920
 		PMD_INIT_LOG(ERR, "multi-q requires ctrl-q");
b91920
 		goto end;
b91920
@@ -610,7 +622,7 @@ virtio_user_pmd_probe(struct rte_vdev_device *dev)
b91920
 	hw = eth_dev->data->dev_private;
b91920
 	if (virtio_user_dev_init(hw->virtio_user_dev, path, queues, cq,
b91920
 			 queue_size, mac_addr, &ifname, server_mode,
b91920
-			 mrg_rxbuf, in_order) < 0) {
b91920
+			 mrg_rxbuf, in_order, packed_vq) < 0) {
b91920
 		PMD_INIT_LOG(ERR, "virtio_user_dev_init fails");
b91920
 		virtio_user_eth_dev_free(eth_dev);
b91920
 		goto end;
b91920
-- 
b91920
2.21.0
b91920