patches for DPDK stable branches
 help / color / mirror / Atom feed
From: luca.boccassi@gmail.com
To: Andrew Boyer <aboyer@pensando.io>
Cc: Ferruh Yigit <ferruh.yigit@intel.com>, dpdk stable <stable@dpdk.org>
Subject: [dpdk-stable] patch 'net/ionic: do minor logging fixups' has been queued to stable release 20.11.1
Date: Fri,  5 Feb 2021 11:15:15 +0000	[thread overview]
Message-ID: <20210205111920.1272063-29-luca.boccassi@gmail.com> (raw)
In-Reply-To: <20210205111920.1272063-1-luca.boccassi@gmail.com>

Hi,

FYI, your patch has been queued to stable release 20.11.1

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 02/07/21. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.

Queued patches are on a temporary branch at:
https://github.com/bluca/dpdk-stable

This queued commit can be viewed at:
https://github.com/bluca/dpdk-stable/commit/ece2b693aeebc8a54d5cd6e4b94776ecbf686c70

Thanks.

Luca Boccassi

---
From ece2b693aeebc8a54d5cd6e4b94776ecbf686c70 Mon Sep 17 00:00:00 2001
From: Andrew Boyer <aboyer@pensando.io>
Date: Wed, 9 Dec 2020 18:57:37 -0800
Subject: [PATCH] net/ionic: do minor logging fixups

[ upstream commit 4ae96cb88fa06e37766c1bb0d91d1538f8ae34d3 ]

Expose ionic_opcode_to_str() so it can be used for dev cmds, too.
Store the device name in struct adapter.

Switch to memcpy() to work around gcc false positives.

Signed-off-by: Andrew Boyer <aboyer@pensando.io>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
 drivers/net/ionic/ionic.h        |  1 +
 drivers/net/ionic/ionic_dev.c    |  5 ++++
 drivers/net/ionic/ionic_dev.h    |  2 ++
 drivers/net/ionic/ionic_ethdev.c |  4 ++--
 drivers/net/ionic/ionic_lif.c    | 26 +++++++++++++-------
 drivers/net/ionic/ionic_main.c   | 31 +++++++++++++-----------
 drivers/net/ionic/ionic_rxtx.c   | 41 ++++++++++++++------------------
 7 files changed, 62 insertions(+), 48 deletions(-)

diff --git a/drivers/net/ionic/ionic.h b/drivers/net/ionic/ionic.h
index 1538df3092..a6d84036e8 100644
--- a/drivers/net/ionic/ionic.h
+++ b/drivers/net/ionic/ionic.h
@@ -48,6 +48,7 @@ struct ionic_hw {
 struct ionic_adapter {
 	struct ionic_hw hw;
 	struct ionic_dev idev;
+	const char *name;
 	struct ionic_dev_bar bars[IONIC_BARS_MAX];
 	struct ionic_identity	ident;
 	struct ionic_lif *lifs[IONIC_LIFS_MAX];
diff --git a/drivers/net/ionic/ionic_dev.c b/drivers/net/ionic/ionic_dev.c
index 5c2820b7a1..632ca10cf2 100644
--- a/drivers/net/ionic/ionic_dev.c
+++ b/drivers/net/ionic/ionic_dev.c
@@ -103,6 +103,9 @@ ionic_dev_cmd_go(struct ionic_dev *idev, union ionic_dev_cmd *cmd)
 	uint32_t cmd_size = sizeof(cmd->words) /
 		sizeof(cmd->words[0]);
 
+	IONIC_PRINT(DEBUG, "Sending %s (%d) via dev_cmd",
+		    ionic_opcode_to_str(cmd->cmd.opcode), cmd->cmd.opcode);
+
 	for (i = 0; i < cmd_size; i++)
 		iowrite32(cmd->words[i], &idev->dev_cmd->cmd.words[i]);
 
@@ -350,6 +353,8 @@ ionic_dev_cmd_adminq_init(struct ionic_dev *idev,
 		.q_init.cq_ring_base = cq->base_pa,
 	};
 
+	IONIC_PRINT(DEBUG, "adminq.q_init.ver %u", cmd.q_init.ver);
+
 	ionic_dev_cmd_go(idev, &cmd);
 }
 
diff --git a/drivers/net/ionic/ionic_dev.h b/drivers/net/ionic/ionic_dev.h
index 532255a603..6bac96072d 100644
--- a/drivers/net/ionic/ionic_dev.h
+++ b/drivers/net/ionic/ionic_dev.h
@@ -208,6 +208,8 @@ struct ionic_qcq;
 void ionic_intr_init(struct ionic_dev *idev, struct ionic_intr_info *intr,
 	unsigned long index);
 
+const char *ionic_opcode_to_str(enum ionic_cmd_opcode opcode);
+
 int ionic_dev_setup(struct ionic_adapter *adapter);
 
 void ionic_dev_cmd_go(struct ionic_dev *idev, union ionic_dev_cmd *cmd);
diff --git a/drivers/net/ionic/ionic_ethdev.c b/drivers/net/ionic/ionic_ethdev.c
index 600333e20f..68a6e630c8 100644
--- a/drivers/net/ionic/ionic_ethdev.c
+++ b/drivers/net/ionic/ionic_ethdev.c
@@ -571,7 +571,7 @@ ionic_dev_rss_reta_update(struct rte_eth_dev *eth_dev,
 
 	if (reta_size != ident->lif.eth.rss_ind_tbl_sz) {
 		IONIC_PRINT(ERR, "The size of hash lookup table configured "
-			"(%d) doesn't match the number hardware can supported "
+			"(%d) does not match the number hardware can support "
 			"(%d)",
 			reta_size, ident->lif.eth.rss_ind_tbl_sz);
 		return -EINVAL;
@@ -605,7 +605,7 @@ ionic_dev_rss_reta_query(struct rte_eth_dev *eth_dev,
 
 	if (reta_size != ident->lif.eth.rss_ind_tbl_sz) {
 		IONIC_PRINT(ERR, "The size of hash lookup table configured "
-			"(%d) doesn't match the number hardware can supported "
+			"(%d) does not match the number hardware can support "
 			"(%d)",
 			reta_size, ident->lif.eth.rss_ind_tbl_sz);
 		return -EINVAL;
diff --git a/drivers/net/ionic/ionic_lif.c b/drivers/net/ionic/ionic_lif.c
index 60a5f3d537..5894f3505a 100644
--- a/drivers/net/ionic/ionic_lif.c
+++ b/drivers/net/ionic/ionic_lif.c
@@ -551,7 +551,7 @@ ionic_intr_alloc(struct ionic_lif *lif, struct ionic_intr_info *intr)
 	/*
 	 * Note: interrupt handler is called for index = 0 only
 	 * (we use interrupts for the notifyq only anyway,
-	 * which hash index = 0)
+	 * which has index = 0)
 	 */
 
 	for (index = 0; index < adapter->nintrs; index++)
@@ -684,8 +684,8 @@ ionic_qcq_alloc(struct ionic_lif *lif, uint8_t type,
 		ionic_q_sg_map(&new->q, sg_base, sg_base_pa);
 	}
 
-	IONIC_PRINT(DEBUG, "Q-Base-PA = %ju CQ-Base-PA = %ju "
-		"SG-base-PA = %ju",
+	IONIC_PRINT(DEBUG, "Q-Base-PA = %#jx CQ-Base-PA = %#jx "
+		"SG-base-PA = %#jx",
 		q_base_pa, cq_base_pa, sg_base_pa);
 
 	ionic_q_map(&new->q, q_base, q_base_pa);
@@ -824,7 +824,13 @@ ionic_lif_alloc(struct ionic_lif *lif)
 	int dbpage_num;
 	int err;
 
-	snprintf(lif->name, sizeof(lif->name), "lif%u", lif->index);
+	/*
+	 * lif->name was zeroed on allocation.
+	 * Copy (sizeof() - 1) bytes to ensure that it is NULL terminated.
+	 */
+	memcpy(lif->name, lif->eth_dev->data->name, sizeof(lif->name) - 1);
+
+	IONIC_PRINT(DEBUG, "LIF: %s", lif->name);
 
 	IONIC_PRINT(DEBUG, "Allocating Lif Info");
 
@@ -867,8 +873,6 @@ ionic_lif_alloc(struct ionic_lif *lif)
 
 	IONIC_PRINT(DEBUG, "Allocating Admin Queue");
 
-	IONIC_PRINT(DEBUG, "Allocating Admin Queue");
-
 	err = ionic_admin_qcq_alloc(lif);
 	if (err) {
 		IONIC_PRINT(ERR, "Cannot allocate admin queue");
@@ -1224,6 +1228,7 @@ ionic_lif_notifyq_init(struct ionic_lif *lif)
 		ctx.cmd.q_init.ring_base);
 	IONIC_PRINT(DEBUG, "notifyq_init.ring_size %d",
 		ctx.cmd.q_init.ring_size);
+	IONIC_PRINT(DEBUG, "notifyq_init.ver %u", ctx.cmd.q_init.ver);
 
 	err = ionic_adminq_post_wait(lif, &ctx);
 	if (err)
@@ -1335,6 +1340,7 @@ ionic_lif_txq_init(struct ionic_qcq *qcq)
 		ctx.cmd.q_init.ring_base);
 	IONIC_PRINT(DEBUG, "txq_init.ring_size %d",
 		ctx.cmd.q_init.ring_size);
+	IONIC_PRINT(DEBUG, "txq_init.ver %u", ctx.cmd.q_init.ver);
 
 	err = ionic_adminq_post_wait(qcq->lif, &ctx);
 	if (err)
@@ -1383,6 +1389,7 @@ ionic_lif_rxq_init(struct ionic_qcq *qcq)
 		ctx.cmd.q_init.ring_base);
 	IONIC_PRINT(DEBUG, "rxq_init.ring_size %d",
 		ctx.cmd.q_init.ring_size);
+	IONIC_PRINT(DEBUG, "rxq_init.ver %u", ctx.cmd.q_init.ver);
 
 	err = ionic_adminq_post_wait(qcq->lif, &ctx);
 	if (err)
@@ -1453,8 +1460,8 @@ ionic_lif_set_name(struct ionic_lif *lif)
 		},
 	};
 
-	snprintf(ctx.cmd.lif_setattr.name, sizeof(ctx.cmd.lif_setattr.name),
-		"%d", lif->port_id);
+	memcpy(ctx.cmd.lif_setattr.name, lif->name,
+		sizeof(ctx.cmd.lif_setattr.name) - 1);
 
 	ionic_adminq_post_wait(lif, &ctx);
 }
@@ -1685,7 +1692,8 @@ ionic_lifs_size(struct ionic_adapter *adapter)
 	nintrs = nlifs * 1 /* notifyq */;
 
 	if (nintrs > dev_nintrs) {
-		IONIC_PRINT(ERR, "At most %d intr queues supported, minimum required is %u",
+		IONIC_PRINT(ERR,
+			"At most %d intr supported, minimum req'd is %u",
 			dev_nintrs, nintrs);
 		return -ENOSPC;
 	}
diff --git a/drivers/net/ionic/ionic_main.c b/drivers/net/ionic/ionic_main.c
index 2ade213d2d..b963898db0 100644
--- a/drivers/net/ionic/ionic_main.c
+++ b/drivers/net/ionic/ionic_main.c
@@ -61,7 +61,7 @@ ionic_error_to_str(enum ionic_status_code code)
 	}
 }
 
-static const char *
+const char *
 ionic_opcode_to_str(enum ionic_cmd_opcode opcode)
 {
 	switch (opcode) {
@@ -107,6 +107,8 @@ ionic_opcode_to_str(enum ionic_cmd_opcode opcode)
 		return "IONIC_CMD_Q_INIT";
 	case IONIC_CMD_Q_CONTROL:
 		return "IONIC_CMD_Q_CONTROL";
+	case IONIC_CMD_Q_IDENTIFY:
+		return "IONIC_CMD_Q_IDENTIFY";
 	case IONIC_CMD_RDMA_RESET_LIF:
 		return "IONIC_CMD_RDMA_RESET_LIF";
 	case IONIC_CMD_RDMA_CREATE_EQ:
@@ -126,8 +128,9 @@ ionic_adminq_check_err(struct ionic_admin_ctx *ctx, bool timeout)
 	const char *name;
 	const char *status;
 
+	name = ionic_opcode_to_str(ctx->cmd.cmd.opcode);
+
 	if (ctx->comp.comp.status || timeout) {
-		name = ionic_opcode_to_str(ctx->cmd.cmd.opcode);
 		status = ionic_error_to_str(ctx->comp.comp.status);
 		IONIC_PRINT(ERR, "%s (%d) failed: %s (%d)",
 			name,
@@ -137,6 +140,8 @@ ionic_adminq_check_err(struct ionic_admin_ctx *ctx, bool timeout)
 		return -EIO;
 	}
 
+	IONIC_PRINT(DEBUG, "%s (%d) succeeded", name, ctx->cmd.cmd.opcode);
+
 	return 0;
 }
 
@@ -174,14 +179,13 @@ ionic_adminq_post_wait(struct ionic_lif *lif, struct ionic_admin_ctx *ctx)
 	bool done;
 	int err;
 
-	IONIC_PRINT(DEBUG, "Sending %s to the admin queue",
-		ionic_opcode_to_str(ctx->cmd.cmd.opcode));
+	IONIC_PRINT(DEBUG, "Sending %s (%d) via the admin queue",
+		ionic_opcode_to_str(ctx->cmd.cmd.opcode), ctx->cmd.cmd.opcode);
 
 	err = ionic_adminq_post(lif, ctx);
 	if (err) {
-		IONIC_PRINT(ERR, "Failure posting to the admin queue %d (%d)",
+		IONIC_PRINT(ERR, "Failure posting %d to the admin queue (%d)",
 			ctx->cmd.cmd.opcode, err);
-
 		return err;
 	}
 
@@ -339,12 +343,12 @@ ionic_port_identify(struct ionic_adapter *adapter)
 				ioread32(&idev->dev_cmd->data[i]);
 	}
 
-	IONIC_PRINT(INFO, "speed %d ", ident->port.config.speed);
-	IONIC_PRINT(INFO, "mtu %d ", ident->port.config.mtu);
-	IONIC_PRINT(INFO, "state %d ", ident->port.config.state);
-	IONIC_PRINT(INFO, "an_enable %d ", ident->port.config.an_enable);
-	IONIC_PRINT(INFO, "fec_type %d ", ident->port.config.fec_type);
-	IONIC_PRINT(INFO, "pause_type %d ", ident->port.config.pause_type);
+	IONIC_PRINT(INFO, "speed %d", ident->port.config.speed);
+	IONIC_PRINT(INFO, "mtu %d", ident->port.config.mtu);
+	IONIC_PRINT(INFO, "state %d", ident->port.config.state);
+	IONIC_PRINT(INFO, "an_enable %d", ident->port.config.an_enable);
+	IONIC_PRINT(INFO, "fec_type %d", ident->port.config.fec_type);
+	IONIC_PRINT(INFO, "pause_type %d", ident->port.config.pause_type);
 	IONIC_PRINT(INFO, "loopback_mode %d",
 		ident->port.config.loopback_mode);
 
@@ -385,8 +389,7 @@ ionic_port_init(struct ionic_adapter *adapter)
 	idev->port_info_sz = RTE_ALIGN(sizeof(*idev->port_info), PAGE_SIZE);
 
 	snprintf(z_name, sizeof(z_name), "%s_port_%s_info",
-		IONIC_DRV_NAME,
-		adapter->pci_dev->device.name);
+		IONIC_DRV_NAME, adapter->name);
 
 	idev->port_info_z = ionic_memzone_reserve(z_name, idev->port_info_sz,
 		SOCKET_ID_ANY);
diff --git a/drivers/net/ionic/ionic_rxtx.c b/drivers/net/ionic/ionic_rxtx.c
index 2592f5cab6..26893795a1 100644
--- a/drivers/net/ionic/ionic_rxtx.c
+++ b/drivers/net/ionic/ionic_rxtx.c
@@ -133,7 +133,7 @@ ionic_dev_tx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id)
 {
 	struct ionic_qcq *txq;
 
-	IONIC_PRINT_CALL();
+	IONIC_PRINT(DEBUG, "Stopping TX queue %u", tx_queue_id);
 
 	txq = eth_dev->data->tx_queues[tx_queue_id];
 
@@ -156,7 +156,7 @@ ionic_dev_tx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id)
 
 int __rte_cold
 ionic_dev_tx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id,
-		uint16_t nb_desc, uint32_t socket_id __rte_unused,
+		uint16_t nb_desc, uint32_t socket_id,
 		const struct rte_eth_txconf *tx_conf)
 {
 	struct ionic_lif *lif = IONIC_ETH_DEV_TO_LIF(eth_dev);
@@ -164,11 +164,6 @@ ionic_dev_tx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id,
 	uint64_t offloads;
 	int err;
 
-	IONIC_PRINT_CALL();
-
-	IONIC_PRINT(DEBUG, "Configuring TX queue %u with %u buffers",
-		tx_queue_id, nb_desc);
-
 	if (tx_queue_id >= lif->ntxqcqs) {
 		IONIC_PRINT(DEBUG, "Queue index %u not available "
 			"(max %u queues)",
@@ -177,6 +172,9 @@ ionic_dev_tx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id,
 	}
 
 	offloads = tx_conf->offloads | eth_dev->data->dev_conf.txmode.offloads;
+	IONIC_PRINT(DEBUG,
+		"Configuring skt %u TX queue %u with %u buffers, offloads %jx",
+		socket_id, tx_queue_id, nb_desc, offloads);
 
 	/* Validate number of receive descriptors */
 	if (!rte_is_power_of_2(nb_desc) || nb_desc < IONIC_MIN_RING_DESC)
@@ -214,10 +212,11 @@ ionic_dev_tx_queue_start(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id)
 	struct ionic_qcq *txq;
 	int err;
 
-	IONIC_PRINT_CALL();
-
 	txq = eth_dev->data->tx_queues[tx_queue_id];
 
+	IONIC_PRINT(DEBUG, "Starting TX queue %u, %u descs",
+		tx_queue_id, txq->q.num_descs);
+
 	err = ionic_lif_txq_init(txq);
 	if (err)
 		return err;
@@ -641,7 +640,7 @@ int __rte_cold
 ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
 		uint16_t rx_queue_id,
 		uint16_t nb_desc,
-		uint32_t socket_id __rte_unused,
+		uint32_t socket_id,
 		const struct rte_eth_rxconf *rx_conf,
 		struct rte_mempool *mp)
 {
@@ -650,11 +649,6 @@ ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
 	uint64_t offloads;
 	int err;
 
-	IONIC_PRINT_CALL();
-
-	IONIC_PRINT(DEBUG, "Configuring RX queue %u with %u buffers",
-		rx_queue_id, nb_desc);
-
 	if (rx_queue_id >= lif->nrxqcqs) {
 		IONIC_PRINT(ERR,
 			"Queue index %u not available (max %u queues)",
@@ -663,13 +657,16 @@ ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
 	}
 
 	offloads = rx_conf->offloads | eth_dev->data->dev_conf.rxmode.offloads;
+	IONIC_PRINT(DEBUG,
+		"Configuring skt %u RX queue %u with %u buffers, offloads %jx",
+		socket_id, rx_queue_id, nb_desc, offloads);
 
 	/* Validate number of receive descriptors */
 	if (!rte_is_power_of_2(nb_desc) ||
 			nb_desc < IONIC_MIN_RING_DESC ||
 			nb_desc > IONIC_MAX_RING_DESC) {
 		IONIC_PRINT(ERR,
-			"Bad number of descriptors (%u) for queue %u (min: %u)",
+			"Bad descriptor count (%u) for queue %u (min: %u)",
 			nb_desc, rx_queue_id, IONIC_MIN_RING_DESC);
 		return -EINVAL; /* or use IONIC_DEFAULT_RING_DESC */
 	}
@@ -686,7 +683,7 @@ ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
 
 	err = ionic_rx_qcq_alloc(lif, rx_queue_id, nb_desc, &rxq);
 	if (err) {
-		IONIC_PRINT(ERR, "Queue allocation failure");
+		IONIC_PRINT(ERR, "Queue %d allocation failure", rx_queue_id);
 		return -EINVAL;
 	}
 
@@ -957,13 +954,11 @@ ionic_dev_rx_queue_start(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
 	struct ionic_qcq *rxq;
 	int err;
 
-	IONIC_PRINT_CALL();
-
-	IONIC_PRINT(DEBUG, "Allocating RX queue buffers (size: %u)",
-		frame_size);
-
 	rxq = eth_dev->data->rx_queues[rx_queue_id];
 
+	IONIC_PRINT(DEBUG, "Starting RX queue %u, %u descs (size: %u)",
+		rx_queue_id, rxq->q.num_descs, frame_size);
+
 	err = ionic_lif_rxq_init(rxq);
 	if (err)
 		return err;
@@ -1043,7 +1038,7 @@ ionic_dev_rx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
 {
 	struct ionic_qcq *rxq;
 
-	IONIC_PRINT_CALL();
+	IONIC_PRINT(DEBUG, "Stopping RX queue %u", rx_queue_id);
 
 	rxq = eth_dev->data->rx_queues[rx_queue_id];
 
-- 
2.29.2

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2021-02-05 11:18:30.601283655 +0000
+++ 0029-net-ionic-do-minor-logging-fixups.patch	2021-02-05 11:18:28.642687989 +0000
@@ -1 +1 @@
-From 4ae96cb88fa06e37766c1bb0d91d1538f8ae34d3 Mon Sep 17 00:00:00 2001
+From ece2b693aeebc8a54d5cd6e4b94776ecbf686c70 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 4ae96cb88fa06e37766c1bb0d91d1538f8ae34d3 ]
+
@@ -18,2 +20,2 @@
- drivers/net/ionic/ionic_lif.c    | 28 ++++++++++++++--------
- drivers/net/ionic/ionic_main.c   | 32 ++++++++++++++-----------
+ drivers/net/ionic/ionic_lif.c    | 26 +++++++++++++-------
+ drivers/net/ionic/ionic_main.c   | 31 +++++++++++++-----------
@@ -21 +23 @@
- 7 files changed, 64 insertions(+), 49 deletions(-)
+ 7 files changed, 62 insertions(+), 48 deletions(-)
@@ -24 +26 @@
-index a931103264..7ad0ab69ef 100644
+index 1538df3092..a6d84036e8 100644
@@ -36 +38 @@
-index fc68f5c741..f329665216 100644
+index 5c2820b7a1..632ca10cf2 100644
@@ -39 +41 @@
-@@ -102,6 +102,9 @@ ionic_dev_cmd_go(struct ionic_dev *idev, union ionic_dev_cmd *cmd)
+@@ -103,6 +103,9 @@ ionic_dev_cmd_go(struct ionic_dev *idev, union ionic_dev_cmd *cmd)
@@ -49 +51 @@
-@@ -348,6 +351,8 @@ ionic_dev_cmd_adminq_init(struct ionic_dev *idev,
+@@ -350,6 +353,8 @@ ionic_dev_cmd_adminq_init(struct ionic_dev *idev,
@@ -59 +61 @@
-index 7150f7f2c9..026c4a9f35 100644
+index 532255a603..6bac96072d 100644
@@ -62 +64 @@
-@@ -205,6 +205,8 @@ struct ionic_qcq;
+@@ -208,6 +208,8 @@ struct ionic_qcq;
@@ -72 +74 @@
-index ce6ca9671a..5a360ac089 100644
+index 600333e20f..68a6e630c8 100644
@@ -94 +96 @@
-index 722a895655..28ae9dc8a9 100644
+index 60a5f3d537..5894f3505a 100644
@@ -97,10 +99 @@
-@@ -84,7 +84,7 @@ ionic_lif_reset(struct ionic_lif *lif)
- 	ionic_dev_cmd_lif_reset(idev, lif->index);
- 	err = ionic_dev_cmd_wait_check(idev, IONIC_DEVCMD_TIMEOUT);
- 	if (err)
--		IONIC_PRINT(WARNING, "Failed to reset lif");
-+		IONIC_PRINT(WARNING, "Failed to reset %s", lif->name);
- }
- 
- static void
-@@ -554,7 +554,7 @@ ionic_intr_alloc(struct ionic_lif *lif, struct ionic_intr_info *intr)
+@@ -551,7 +551,7 @@ ionic_intr_alloc(struct ionic_lif *lif, struct ionic_intr_info *intr)
@@ -115 +108 @@
-@@ -687,8 +687,8 @@ ionic_qcq_alloc(struct ionic_lif *lif, uint8_t type,
+@@ -684,8 +684,8 @@ ionic_qcq_alloc(struct ionic_lif *lif, uint8_t type,
@@ -126 +119 @@
-@@ -827,7 +827,13 @@ ionic_lif_alloc(struct ionic_lif *lif)
+@@ -824,7 +824,13 @@ ionic_lif_alloc(struct ionic_lif *lif)
@@ -141 +134 @@
-@@ -868,8 +874,6 @@ ionic_lif_alloc(struct ionic_lif *lif)
+@@ -867,8 +873,6 @@ ionic_lif_alloc(struct ionic_lif *lif)
@@ -150 +143 @@
-@@ -1223,6 +1227,7 @@ ionic_lif_notifyq_init(struct ionic_lif *lif)
+@@ -1224,6 +1228,7 @@ ionic_lif_notifyq_init(struct ionic_lif *lif)
@@ -158 +151 @@
-@@ -1332,6 +1337,7 @@ ionic_lif_txq_init(struct ionic_qcq *qcq)
+@@ -1335,6 +1340,7 @@ ionic_lif_txq_init(struct ionic_qcq *qcq)
@@ -166 +159 @@
-@@ -1378,6 +1384,7 @@ ionic_lif_rxq_init(struct ionic_qcq *qcq)
+@@ -1383,6 +1389,7 @@ ionic_lif_rxq_init(struct ionic_qcq *qcq)
@@ -174 +167 @@
-@@ -1448,8 +1455,8 @@ ionic_lif_set_name(struct ionic_lif *lif)
+@@ -1453,8 +1460,8 @@ ionic_lif_set_name(struct ionic_lif *lif)
@@ -185 +178 @@
-@@ -1680,7 +1687,8 @@ ionic_lifs_size(struct ionic_adapter *adapter)
+@@ -1685,7 +1692,8 @@ ionic_lifs_size(struct ionic_adapter *adapter)
@@ -196 +189 @@
-index 92cf0f3984..ce5d113118 100644
+index 2ade213d2d..b963898db0 100644
@@ -255,9 +248 @@
-@@ -244,6 +248,7 @@ ionic_dev_cmd_wait_check(struct ionic_dev *idev, unsigned long max_wait)
- 	if (!err)
- 		err = ionic_dev_cmd_check_error(idev);
- 
-+	IONIC_PRINT(DEBUG, "dev_cmd returned %d", err);
- 	return err;
- }
- 
-@@ -335,12 +340,12 @@ ionic_port_identify(struct ionic_adapter *adapter)
+@@ -339,12 +343,12 @@ ionic_port_identify(struct ionic_adapter *adapter)
@@ -282 +267 @@
-@@ -381,8 +386,7 @@ ionic_port_init(struct ionic_adapter *adapter)
+@@ -385,8 +389,7 @@ ionic_port_init(struct ionic_adapter *adapter)
@@ -293 +278 @@
-index b953aff49d..b689c83815 100644
+index 2592f5cab6..26893795a1 100644
@@ -336 +321 @@
-@@ -215,10 +213,11 @@ ionic_dev_tx_queue_start(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id)
+@@ -214,10 +212,11 @@ ionic_dev_tx_queue_start(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id)
@@ -350 +335 @@
-@@ -642,7 +641,7 @@ int __rte_cold
+@@ -641,7 +640,7 @@ int __rte_cold
@@ -359 +344 @@
-@@ -651,11 +650,6 @@ ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
+@@ -650,11 +649,6 @@ ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
@@ -371 +356 @@
-@@ -664,13 +658,16 @@ ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
+@@ -663,13 +657,16 @@ ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
@@ -389 +374 @@
-@@ -687,7 +684,7 @@ ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
+@@ -686,7 +683,7 @@ ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
@@ -398 +383 @@
-@@ -959,13 +956,11 @@ ionic_dev_rx_queue_start(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
+@@ -957,13 +954,11 @@ ionic_dev_rx_queue_start(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
@@ -415 +400 @@
-@@ -1045,7 +1040,7 @@ ionic_dev_rx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
+@@ -1043,7 +1038,7 @@ ionic_dev_rx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)

  parent reply	other threads:[~2021-02-05 11:20 UTC|newest]

Thread overview: 312+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-05 11:14 [dpdk-stable] patch 'eal/windows: fix build with MinGW-w64 8' " luca.boccassi
2021-02-05 11:14 ` [dpdk-stable] patch 'bus/pci: " luca.boccassi
2021-02-05 11:14 ` [dpdk-stable] patch 'eal/windows: fix debug build with MinGW' " luca.boccassi
2021-02-05 11:14 ` [dpdk-stable] patch 'eal/windows: fix vfprintf warning with clang' " luca.boccassi
2021-02-05 11:14 ` [dpdk-stable] patch 'license: add licenses for exception cases' " luca.boccassi
2021-02-05 11:14 ` [dpdk-stable] patch 'rib: fix insertion in some " luca.boccassi
2021-02-05 11:14 ` [dpdk-stable] patch 'bus/pci: fix hardware ID limit on Windows' " luca.boccassi
2021-02-05 11:14 ` [dpdk-stable] patch 'bus/pci: ignore missing NUMA node " luca.boccassi
2021-02-05 11:14 ` [dpdk-stable] patch 'build: fix plugin load on static build' " luca.boccassi
2021-02-05 11:14 ` [dpdk-stable] patch 'app/flow-perf: simplify objects initialization' " luca.boccassi
2021-02-05 11:14 ` [dpdk-stable] patch 'regex/octeontx2: fix PCI table overflow' " luca.boccassi
2021-02-05 11:14 ` [dpdk-stable] patch 'app/procinfo: fix _filters stats reporting' " luca.boccassi
2021-02-05 11:14 ` [dpdk-stable] patch 'app/procinfo: fix check on xstats-ids' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'app/procinfo: remove useless memset' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'app/procinfo: remove useless assignment' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/pcap: remove local variable shadowing outer one' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bonding: " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/af_xdp: remove useless assignment' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: remove redundant return' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'app/crypto-perf: remove always true condition' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/avp: " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'eal/linux: fix handling of error events from epoll' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'mbuf: add C++ include guard for dynamic fields header' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bonding: fix port id validity check on parsing' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'app/testpmd: fix queue stats mapping configuration' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'common/sfc_efx/base: remove warnings about inline specifiers' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'common/sfc_efx/base: fix signed/unsigned mismatch warnings' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'common/sfc_efx/base: support alternative MAE match fields' " luca.boccassi
2021-02-05 11:15 ` luca.boccassi [this message]
2021-02-05 11:15 ` [dpdk-stable] patch 'net/mlx5: fix Verbs memory allocation callback' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/mlx5: fix shared age action validation' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix memory leak when mapping fails' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: disable end of packet padding for Rx' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/hns3: fix FEC state query' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/ice: fix outer UDP Tx checksum offload' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/i40e: fix L4 checksum flag' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/i40e: fix global register recovery' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/ixgbe: detect failed VF MTU set' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix Rx rings in RSS redirection table' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix VNIC config on Rx queue stop' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: release HWRM lock in error' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: propagate FW command failure to application' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix cleanup on mutex init failure' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix format specifier for unsigned int' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix max rings computation' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix freeing mbuf' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix VNIC RSS configure function' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix PF resource query' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'common/sfc_efx/base: update MCDI headers for MAE privilege' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'common/sfc_efx/base: check " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/netvsc: ignore unsupported packet on sync command' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/iavf: fix memory leak in large VF' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/ice: fix outer checksum flags' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/mlx5: fix Direct Verbs flow descriptor allocation' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/mlx5: fix mbuf freeing in vectorized MPRQ' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/mlx5: fix buffer split offload advertising' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bonding: fix PCI address comparison on non-PCI ports' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/i40e: fix stats counters' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'doc: fix some statements for ice vector PMD' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/i40e: fix VLAN stripping in VF' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/ixgbe: fix flex bytes flow director rule' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/i40e: fix Rx bytes statistics' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/ice: check Rx queue number on RSS init' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/ice/base: fix tunnel destroy' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/ice/base: fix null pointer dereference' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/iavf: fix queue pairs configuration' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/iavf: fix GTPU UL and DL support for flow director' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/i40e: fix flex payload rule conflict' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: limit Rx representor packets per poll' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix doorbell write ordering' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix outer UDP checksum Rx offload capability' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: make offload flags mapping per-ring' " luca.boccassi
2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: set correct checksum status in mbuf' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'app/testpmd: release flows left before port stop' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix tunnel rules validation on VF representor' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix constant array size' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix freeing packet pacing' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix flow action destroy wrapper' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix flow operation wrapper per OS' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: unify operations for all " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix device name size on Windows' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix comparison sign in flow engine' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix shared RSS and mark actions combination' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix VXLAN decap on non-VXLAN flow' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix leak on Rx queue creation failure' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix leak on Tx " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/virtio-user: fix run closing stdin and close callfd' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/virtio-user: fix protocol features advertising' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/ice/base: fix memory handling' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'doc: fix RSS flow description in i40e guide' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/i40e: fix returned code for RSS hardware failure' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'doc: add vtune profiling config to prog guide' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'build: fix linker flags on Windows' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'lpm: fix vector IPv4 lookup' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/hns3: fix build with SVE' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/octeontx: " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'common/octeontx2: " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/cxgbe: accept VLAN flow items without ethertype' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/virtio: add missing backend features negotiation' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/virtio: fix memory init with vDPA backend' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/iavf: fix conflicting RSS combination rules' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/ice: fix RSS lookup table initialization' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/ice: disable IPv4 checksum offload in vector Tx' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/ice: enlarge Rx queue rearm threshold to 64' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/i40e: add null input checks' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/bnxt: fix lock init and destroy' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/bnxt: fix error handling in device start' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mvneta: check allocation in Rx queue flush' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/octeontx2: fix corruption in segments list' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix hairpin flow split decision' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'common/mlx5: fix completion queue entry size configuration' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: remove CQE padding device argument' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix leak on ASO SQ creation failure' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'common/mlx5: fix pointer cast on Windows' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'ip_frag: remove padding length of fragment' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'doc: fix figure numbering in graph guide' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'bus/pci: fix build with Windows SDK >= 10.0.20253' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'service: propagate init error in EAL' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'test/mcslock: remove unneeded per lcore copy' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'eal/windows: fix C++ compatibility' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'test/rwlock: fix spelling and missing whitespace' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'test: fix terminal settings on exit' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'test: fix buffer overflow in Tx burst' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'fbarray: fix overlap check' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'examples/l3fwd: remove limitation on Tx queue count' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'regex/mlx5: fix memory rule alignment' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'regex/mlx5: fix support for group id' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'regex/mlx5: fix number of supported queues' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'crypto/qat: fix access to uninitialized variable' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'app/crypto-perf: fix spelling in output' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/i40e: fix X722 for 802.1ad frames ability' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/hns3: fix interception with flow director' " luca.boccassi
2021-02-05 11:16 ` [dpdk-stable] patch 'net/hns3: fix xstats with id and names' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix error code in xstats' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix Rx/Tx errors stats' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix crash with multi-process' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/qede: fix promiscuous enable' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'app/testpmd: fix start index for showing FEC array' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'common/sfc_efx/base: fix MPORT related byte order handling' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'common/sfc_efx/base: fix MAE match spec validation helper' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'common/sfc_efx/base: fix MAE match spec class comparison API' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'common/sfc_efx/base: enhance field ID check in field set " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'ethdev: fix max Rx packet length check' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'app/testpmd: fix max Rx packet length for VLAN packets' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/dpaa: fix jumbo frame flag condition for MTU set' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/dpaa2: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/e1000: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/i40e: fix jumbo frame flag condition' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/iavf: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/ice: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/ipn3ke: fix jumbo frame flag condition for MTU set' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/octeontx: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/octeontx2: fix jumbo frame flag condition for MTU' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/qede: fix jumbo frame flag condition for MTU set' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/sfc: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/thunderx: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/ixgbe: fix jumbo frame flag condition' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/cxgbe: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/axgbe: fix jumbo frame flag condition for MTU set' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/enetc: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/hinic: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/nfp: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/liquidio: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/hinic: restore vectorised code' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'ethdev: avoid blocking telemetry for link status' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'app/testpmd: fix IP checksum calculation' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/ionic: fix link speed and autonegotiation' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix VF query link status in dev init' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: use new opcode for clearing hardware resource' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix register length when dumping registers' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix data overwriting during register dump' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix dump register out of range' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'common/sfc_efx/base: apply mask to value on match field set' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/mlx5: fix unnecessary checking for RSS action' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net/ixgbe: fix configuration of max frame size' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'build: provide suitable error for "both" libraries option' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'eal: fix reciprocal header include' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'telemetry: fix missing " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'ethdev: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'net: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'mbuf: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'bitrate: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'rib: fix missing header includes' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'vhost: " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'ipsec: fix missing header include' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'fib: fix missing header includes' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'table: fix missing header include' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'pipeline: fix missing header includes' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'metrics: fix variable declaration in header' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'node: fix missing header include' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'app: fix build with extra include paths' " luca.boccassi
2021-02-05 11:17 ` [dpdk-stable] patch 'examples/pipeline: fix VXLAN script permission' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'build: force pkg-config for dependency detection' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'app/procinfo: fix security context info' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'eal/arm: fix debug build with gcc for 128-bit atomics' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'test/distributor: fix return buffer queue overload' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'power: create guest channel public header file' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'power: make channel message functions public' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'power: rename public structs' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'power: rename constants' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'power: export guest channel header file' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'power: clean up includes' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'test/ring: reduce duration of performance tests' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'lib: fix doxygen for parameters of function pointers' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'examples/pipeline: fix CLI parsing crash' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'app/eventdev: adjust event count order for pipeline test' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'app/eventdev: remove redundant enqueue in burst Tx' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'examples/eventdev: check CPU core enabling' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'examples/eventdev: add info output for main core' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'examples/eventdev: move ethdev stop to the end' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'app/eventdev: fix SMP barrier in performance test' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'test/event_crypto: set cipher operation in transform' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'app/crypto-perf: fix latency CSV output' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'app/crypto-perf: fix CSV output format' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'crypto/qat: fix digest in buffer' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'test/ipsec: fix result code for not supported' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'crypto/dpaa2_sec: fix memory allocation check' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'eal: fix MCS lock header include' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'eal: fix internal ABI tag with clang' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'power: fix missing header includes' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'rib: fix missing header include' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'app/testpmd: fix packets dump overlapping' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/e1000: fix flow control mode setting' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix flow split combined with counter' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix flow split combined with age action' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx4: fix device detach' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx4: fix handling of probing failure' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/bnxt: fix FW version log' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/bnxt: fix packet type index calculation' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/bnxt: refactor init/uninit' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/ice: drain out DCF AdminQ command queue' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'app/testpmd: fix key for RSS flow rule' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/bnxt: fix null termination of Rx mbuf chain' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/octeontx2: fix PF flow action for Tx' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix mark action in active tunnel offload' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix drop action in tunnel offload mode' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix flow tag decompression' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: refuse empty VLAN in flow pattern' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'doc: update flow mark action in mlx5 guide' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix multi-process port ID' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix crash on secondary process port close' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix port attach in secondary process' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx4: " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/iavf: fix symmetric flow rule creation' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/ixgbe: disable NFS filtering' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/sfc: fix generic byte statistics to exclude FCS bytes' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'ethdev: fix close failure handling' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/virtio: fix getting old status on reconnect' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'vdpa/mlx5: fix configuration mutex cleanup' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/ionic: allow separate L3 and L4 checksum offload' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/ionic: fix up function attribute tags' " luca.boccassi
2021-02-05 11:18 ` [dpdk-stable] patch 'net/ionic: fix address handling in Tx' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/mvpp2: fix stack corruption' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/mvpp2: remove debug log on fast-path' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/mvpp2: remove VLAN flush' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/mvpp2: remove CRC length from MRU validation' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/mvpp2: fix frame size checking' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/mlx5: fix count actions query in sample flow' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/mlx5: fix wire vport hint' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/hns3: fix memory leak on secondary process exit' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/hns3: fix interrupt resources in Rx interrupt mode' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/hns3: adjust some comments' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/hns3: adjust format specifier for enum' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'app/testpmd: fix setting maximum packet length' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'app/testpmd: avoid exit without terminal restore' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/nfp: read chip model from PluDevice register' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/ena: flush Rx buffers memory pool cache' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/ena: fix Tx doorbell statistics' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/ena: validate Rx req ID upon acquiring descriptor' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/ena: fix Tx SQ free space assessment' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/ena: prevent double doorbell' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'net/iavf: fix vector mapping with queue' " luca.boccassi
2021-02-05 11:19 ` [dpdk-stable] patch 'app/testpmd: fix queue reconfig request on Rx split update' " luca.boccassi
2021-02-09 10:34 ` [dpdk-stable] patch 'net/bnxt: fix Rx completion ring size calculation' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/mlx5: fix shared RSS translation and cleanup' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'doc: fix QinQ flow rules in testpmd guide' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/enic: fix filter type used for flow API' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'doc: add FEC to NIC features' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'doc: fix product link in hns3 guide' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/sfc: fix TSO and checksum offloads for EF10' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/mlx5: check FW miniCQE format capabilities' " luca.boccassi
2021-02-09 10:42     ` Luca Boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/mlx5: fix miniCQE configuration for Verbs' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'vhost: fix vid allocation race' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/octeontx: fix max Rx packet length' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'doc: fix supported feature table in mlx5 guide' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/mlx5: fix counter and age flow action validation' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'common/mlx5: fix storing synced MAC to internal table' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/hns3: fix link status change from firmware' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/hns3: fix RSS indirection table size' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/hns3: remove MPLS from supported flow items' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/hns3: fix flow director rule residue on malloc failure' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/hns3: fix firmware exceptions by concurrent commands' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/hns3: fix VF reset on mailbox failure' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/hns3: validate requested maximum Rx frame length' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'app/testpmd: support shared age action query' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/pcap: fix byte stats for drop Tx' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/pcap: fix infinite Rx with large files' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/mlx5: fix shared RSS capability check' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/mlx5: validate hash Rx queue pointer' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'net/enic: fix filter log message' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'event/dlb: fix accessing uninitialized variables' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'eventdev: fix a return value comment' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'mempool: fix panic on dump or audit' " luca.boccassi
2021-02-09 10:35   ` [dpdk-stable] patch 'mbuf: remove unneeded atomic generic header include' " luca.boccassi
2021-02-12 23:40 ` [dpdk-stable] patch 'eal: fix automatic loading of drivers as shared libs' " luca.boccassi
2021-02-12 23:40   ` [dpdk-stable] patch 'net/ixgbe: fix UDP zero checksum on x86' " luca.boccassi
2021-02-12 23:40   ` [dpdk-stable] patch 'vhost: fix packed ring dequeue offloading' " luca.boccassi
2021-02-12 23:40   ` [dpdk-stable] patch 'doc: fix mark action zero value in mlx5 guide' " luca.boccassi
2021-02-12 23:40   ` [dpdk-stable] patch 'app/testpmd: fix help of metering commands' " luca.boccassi
2021-02-12 23:40   ` [dpdk-stable] patch 'usertools: fix binding built-in kernel driver' " luca.boccassi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210205111920.1272063-29-luca.boccassi@gmail.com \
    --to=luca.boccassi@gmail.com \
    --cc=aboyer@pensando.io \
    --cc=ferruh.yigit@intel.com \
    --cc=stable@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).