DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Eads, Gage" <gage.eads@intel.com>
To: "McDaniel, Timothy" <timothy.mcdaniel@intel.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>,
	"Carrillo, Erik G" <erik.g.carrillo@intel.com>,
	"Van Haaren, Harry" <harry.van.haaren@intel.com>,
	"jerinj@marvell.com" <jerinj@marvell.com>
Subject: Re: [dpdk-dev] [PATCH v4 11/22] event/dlb: add port setup
Date: Thu, 8 Oct 2020 21:28:46 +0000	[thread overview]
Message-ID: <SN6PR11MB2574EB8549DEB521E88D1330F60B0@SN6PR11MB2574.namprd11.prod.outlook.com> (raw)
In-Reply-To: <1599851920-16802-12-git-send-email-timothy.mcdaniel@intel.com>



> -----Original Message-----
> From: McDaniel, Timothy <timothy.mcdaniel@intel.com>
> Sent: Friday, September 11, 2020 2:18 PM
> Cc: dev@dpdk.org; Carrillo, Erik G <erik.g.carrillo@intel.com>; Eads, Gage
> <gage.eads@intel.com>; Van Haaren, Harry <harry.van.haaren@intel.com>;
> jerinj@marvell.com
> Subject: [PATCH v4 11/22] event/dlb: add port setup
> 
> Configure the load balanded (ldb) or directed (dir) port.
> The consumer queue (CQ) and producer port (PP) are also
> set up here.
> 
> Signed-off-by: Timothy McDaniel <timothy.mcdaniel@intel.com>
> ---
>  drivers/event/dlb/dlb.c                  |  539 +++++++++++
>  drivers/event/dlb/dlb_iface.c            |   11 +
>  drivers/event/dlb/dlb_iface.h            |   14 +
>  drivers/event/dlb/pf/base/dlb_resource.c | 1430
> ++++++++++++++++++++++++++++++
>  drivers/event/dlb/pf/dlb_pf.c            |  204 +++++
>  5 files changed, 2198 insertions(+)
> 
> diff --git a/drivers/event/dlb/dlb.c b/drivers/event/dlb/dlb.c
> index 0b474a5..e90a088 100644
> --- a/drivers/event/dlb/dlb.c
> +++ b/drivers/event/dlb/dlb.c
> @@ -157,6 +157,75 @@ dlb_free_qe_mem(struct dlb_port *qm_port)
>  	}
>  }
> 
> +static int
> +dlb_init_consume_qe(struct dlb_port *qm_port, char *mz_name)
> +{
> +	struct dlb_cq_pop_qe *qe;
> +
> +	qe = rte_malloc(mz_name,
> +			DLB_NUM_QES_PER_CACHE_LINE *
> +				sizeof(struct dlb_cq_pop_qe),
> +			RTE_CACHE_LINE_SIZE);
> +
> +	if (qe == NULL)	{
> +		DLB_LOG_ERR("dlb: no memory for consume_qe\n");
> +		return -ENOMEM;
> +	}
> +
> +	qm_port->consume_qe = qe;
> +
> +	memset(qe, 0, DLB_NUM_QES_PER_CACHE_LINE *
> +	       sizeof(struct dlb_cq_pop_qe));

This is a good candidate for rte_zmalloc().

> +
> +	qe->qe_valid = 0;
> +	qe->qe_frag = 0;
> +	qe->qe_comp = 0;
> +	qe->cq_token = 1;
> +	/* Tokens value is 0-based; i.e. '0' returns 1 token, '1' returns 2,
> +	 * and so on.
> +	 */
> +	qe->tokens = 0;	/* set at run time */
> +	qe->meas_lat = 0;
> +	qe->no_dec = 0;
> +	/* Completion IDs are disabled */
> +	qe->cmp_id = 0;
> +
> +	return 0;
> +}
> +
> +int
> +dlb_init_qe_mem(struct dlb_port *qm_port, char *mz_name)
> +{
> +	int ret, sz;
> +
> +	sz = DLB_NUM_QES_PER_CACHE_LINE * sizeof(struct dlb_enqueue_qe);
> +
> +	qm_port->qe4 = rte_malloc(mz_name, sz, RTE_CACHE_LINE_SIZE);
> +
> +	if (qm_port->qe4 == NULL) {
> +		DLB_LOG_ERR("dlb: no qe4 memory\n");
> +		ret = -ENOMEM;
> +		goto error_exit;
> +	}
> +
> +	memset(qm_port->qe4, 0, sz);
> +
> +	ret = dlb_init_consume_qe(qm_port, mz_name);
> +	if (ret < 0) {
> +		DLB_LOG_ERR("dlb: dlb_init_consume_qe ret=%d\n",
> +			    ret);

This can fit on one line

> +		goto error_exit;
> +	}
> +
> +	return 0;
> +
> +error_exit:
> +
> +	dlb_free_qe_mem(qm_port);
> +
> +	return ret;
> +}
> +
>  /* Wrapper for string to int conversion. Substituted for atoi(...), which is
>   * unsafe.
>   */
> @@ -662,6 +731,348 @@ dlb_eventdev_queue_default_conf_get(struct
> rte_eventdev *dev,
>  	queue_conf->priority = 0;
>  }
> 
> +static int
> +dlb_hw_create_ldb_port(struct dlb_eventdev *dlb,
> +		       struct dlb_eventdev_port *ev_port,
> +		       uint32_t dequeue_depth,
> +		       uint32_t cq_depth,
> +		       uint32_t enqueue_depth,
> +		       uint16_t rsvd_tokens,
> +		       bool use_rsvd_token_scheme)
> +{
> +	struct dlb_hw_dev *handle = &dlb->qm_instance;
> +	struct dlb_create_ldb_port_args cfg = {0};
> +	struct dlb_cmd_response response = {0};
> +	int ret;
> +	struct dlb_port *qm_port = NULL;
> +	char mz_name[RTE_MEMZONE_NAMESIZE];
> +	uint32_t qm_port_id;
> +
> +	if (handle == NULL)
> +		return -EINVAL;
> +
> +	if (cq_depth < DLB_MIN_LDB_CQ_DEPTH ||
> +	    cq_depth > DLB_MAX_INPUT_QUEUE_DEPTH) {
> +		DLB_LOG_ERR("dlb: invalid cq_depth, must be %d-%d\n",
> +			DLB_MIN_LDB_CQ_DEPTH,
> DLB_MAX_INPUT_QUEUE_DEPTH);
> +		return -EINVAL;
> +	}
> +
> +	if (enqueue_depth < DLB_MIN_ENQUEUE_DEPTH) {
> +		DLB_LOG_ERR("dlb: invalid enqueue_depth, must be at least
> %d\n",
> +			    DLB_MIN_ENQUEUE_DEPTH);
> +		return -EINVAL;
> +	}

Like my comment in the dlb2 "add port setup" patch, looks like the cq depth
upper bound check can be dropped, since it's already done in
dlb_eventdev_port_setup().

> +
> +	rte_spinlock_lock(&handle->resource_lock);
> +
> +	cfg.response = (uintptr_t)&response;
> +
> +	/* We round up to the next power of 2 if necessary */
> +	cfg.cq_depth = rte_align32pow2(cq_depth);
> +	cfg.cq_depth_threshold = rsvd_tokens;
> +
> +	cfg.cq_history_list_size =
> DLB_NUM_HIST_LIST_ENTRIES_PER_LDB_PORT;
> +
> +	/* User controls the LDB high watermark via enqueue depth. The DIR
> high
> +	 * watermark is equal, unless the directed credit pool is too small.
> +	 */
> +	cfg.ldb_credit_high_watermark = enqueue_depth;
> +
> +	/* If there are no directed ports, the kernel driver will ignore this
> +	 * port's directed credit settings. Don't use enqueue_depth if it would
> +	 * require more directed credits than are available.
> +	 */
> +	cfg.dir_credit_high_watermark =
> +		RTE_MIN(enqueue_depth,
> +			handle->cfg.num_dir_credits / dlb->num_ports);
> +
> +	cfg.ldb_credit_quantum = cfg.ldb_credit_high_watermark / 2;
> +	cfg.ldb_credit_low_watermark = RTE_MIN(16, cfg.ldb_credit_quantum);
> +
> +	cfg.dir_credit_quantum = cfg.dir_credit_high_watermark / 2;
> +	cfg.dir_credit_low_watermark = RTE_MIN(16, cfg.dir_credit_quantum);
> +
> +	/* Per QM values */
> +
> +	cfg.ldb_credit_pool_id = handle->cfg.ldb_credit_pool_id;
> +	cfg.dir_credit_pool_id = handle->cfg.dir_credit_pool_id;
> +
> +	ret = dlb_iface_ldb_port_create(handle, &cfg, dlb->poll_mode);
> +	if (ret < 0) {
> +		DLB_LOG_ERR("dlb: dlb_ldb_port_create error, ret=%d (driver
> status: %s)\n",
> +			    ret, dlb_error_strings[response.status]);
> +		goto error_exit;
> +	}
> +
> +	qm_port_id = response.id;
> +
> +	DLB_LOG_DBG("dlb: ev_port %d uses qm LB port %d <<<<<\n",
> +		    ev_port->id, qm_port_id);
> +
> +	qm_port = &ev_port->qm_port;
> +	qm_port->ev_port = ev_port; /* back ptr */
> +	qm_port->dlb = dlb; /* back ptr */
> +
> +	/*
> +	 * Allocate and init local qe struct(s).
> +	 * Note: MOVDIR64 requires the enqueue QE (qe4) to be aligned.
> +	 */
> +
> +	snprintf(mz_name, sizeof(mz_name), "%s_ldb_port%d",
> +		 handle->device_name,
> +		 ev_port->id);

I don't believe device_name is initialized.

> +
> +	ret = dlb_init_qe_mem(qm_port, mz_name);
> +	if (ret < 0) {
> +		DLB_LOG_ERR("dlb: init_qe_mem failed, ret=%d\n", ret);
> +		goto error_exit;
> +	}
> +
> +	qm_port->pp_mmio_base = DLB_LDB_PP_BASE + PAGE_SIZE *
> qm_port_id;
> +	qm_port->id = qm_port_id;
> +
> +	/* The credit window is one high water mark of QEs */
> +	qm_port->ldb_pushcount_at_credit_expiry = 0;
> +	qm_port->cached_ldb_credits = cfg.ldb_credit_high_watermark;
> +	/* The credit window is one high water mark of QEs */
> +	qm_port->dir_pushcount_at_credit_expiry = 0;
> +	qm_port->cached_dir_credits = cfg.dir_credit_high_watermark;
> +	qm_port->cq_depth = cfg.cq_depth;
> +	/* CQs with depth < 8 use an 8-entry queue, but withhold credits so
> +	 * the effective depth is smaller.
> +	 */
> +	qm_port->cq_depth = cfg.cq_depth <= 8 ? 8 : cfg.cq_depth;
> +	qm_port->cq_idx = 0;
> +	qm_port->cq_idx_unmasked = 0;
> +	if (dlb->poll_mode == DLB_CQ_POLL_MODE_SPARSE)
> +		qm_port->cq_depth_mask = (qm_port->cq_depth * 4) - 1;
> +	else
> +		qm_port->cq_depth_mask = qm_port->cq_depth - 1;
> +
> +	qm_port->gen_bit_shift = __builtin_popcount(qm_port-
> >cq_depth_mask);
> +	/* starting value of gen bit - it toggles at wrap time */
> +	qm_port->gen_bit = 1;
> +
> +	qm_port->use_rsvd_token_scheme = use_rsvd_token_scheme;
> +	qm_port->cq_rsvd_token_deficit = rsvd_tokens;
> +	qm_port->int_armed = false;
> +
> +	/* Save off for later use in info and lookup APIs. */
> +	qm_port->qid_mappings = &dlb->qm_ldb_to_ev_queue_id[0];
> +
> +	/* When using the reserved token scheme, token_pop_thresh is
> +	 * initially 2 * dequeue_depth. Once the tokens are reserved,
> +	 * the enqueue code re-assigns it to dequeue_depth.
> +	 */
> +	qm_port->dequeue_depth = dequeue_depth;
> +	qm_port->token_pop_thresh = cq_depth;
> +
> +	/* When the deferred scheduling vdev arg is selected, use deferred pop
> +	 * for all single-entry CQs.
> +	 */
> +	if (cfg.cq_depth == 1 || (cfg.cq_depth == 2 &&
> use_rsvd_token_scheme)) {
> +		if (dlb->defer_sched)
> +			qm_port->token_pop_mode = DEFERRED_POP;
> +	}
> +
> +	qm_port->owed_tokens = 0;
> +	qm_port->issued_releases = 0;
> +
> +	/* Save config message too. */
> +	rte_memcpy(&qm_port->cfg.ldb, &cfg, sizeof(cfg));

Safer to do sizeof() on the destination than the source, I think.

> +
> +	/* update state */
> +	qm_port->state = PORT_STARTED; /* enabled at create time */
> +	qm_port->config_state = DLB_CONFIGURED;
> +
> +	qm_port->dir_credits = cfg.dir_credit_high_watermark;
> +	qm_port->ldb_credits = cfg.ldb_credit_high_watermark;
> +
> +	DLB_LOG_DBG("dlb: created ldb port %d, depth = %d, ldb credits=%d, dir
> credits=%d\n",
> +		    qm_port_id,
> +		    cq_depth,
> +		    qm_port->ldb_credits,
> +		    qm_port->dir_credits);
> +
> +	rte_spinlock_unlock(&handle->resource_lock);
> +
> +	return 0;
> +
> +error_exit:
> +	if (qm_port) {
> +		dlb_free_qe_mem(qm_port);
> +		qm_port->pp_mmio_base = 0;
> +	}
> +
> +	rte_spinlock_unlock(&handle->resource_lock);
> +
> +	DLB_LOG_ERR("dlb: create ldb port failed!\n");
> +
> +	return ret;
> +}
> +
> +static int
> +dlb_hw_create_dir_port(struct dlb_eventdev *dlb,
> +		       struct dlb_eventdev_port *ev_port,
> +		       uint32_t dequeue_depth,
> +		       uint32_t cq_depth,
> +		       uint32_t enqueue_depth,
> +		       uint16_t rsvd_tokens,
> +		       bool use_rsvd_token_scheme)
> +{
> +	struct dlb_hw_dev *handle = &dlb->qm_instance;
> +	struct dlb_create_dir_port_args cfg = {0};
> +	struct dlb_cmd_response response = {0};
> +	int ret;
> +	struct dlb_port *qm_port = NULL;
> +	char mz_name[RTE_MEMZONE_NAMESIZE];
> +	uint32_t qm_port_id;
> +
> +	if (dlb == NULL || handle == NULL)
> +		return -EINVAL;
> +
> +	if (cq_depth < DLB_MIN_DIR_CQ_DEPTH ||
> +	    cq_depth > DLB_MAX_INPUT_QUEUE_DEPTH) {
> +		DLB_LOG_ERR("dlb: invalid cq_depth, must be %d-%d\n",
> +			    DLB_MIN_DIR_CQ_DEPTH,
> DLB_MAX_INPUT_QUEUE_DEPTH);
> +		return -EINVAL;
> +	}

Enqueue depth check needed?

> +
> +	rte_spinlock_lock(&handle->resource_lock);
> +
> +	/* Directed queues are configured at link time. */
> +	cfg.queue_id = -1;
> +
> +	cfg.response = (uintptr_t)&response;
> +
> +	/* We round up to the next power of 2 if necessary */
> +	cfg.cq_depth = rte_align32pow2(cq_depth);
> +	cfg.cq_depth_threshold = rsvd_tokens;
> +
> +	/* User controls the LDB high watermark via enqueue depth. The DIR
> high
> +	 * watermark is equal, unless the directed credit pool is too small.
> +	 */
> +	cfg.ldb_credit_high_watermark = enqueue_depth;
> +
> +	/* Don't use enqueue_depth if it would require more directed credits
> +	 * than are available.
> +	 */
> +	cfg.dir_credit_high_watermark =
> +		RTE_MIN(enqueue_depth,
> +			handle->cfg.num_dir_credits / dlb->num_ports);
> +
> +	cfg.ldb_credit_quantum = cfg.ldb_credit_high_watermark / 2;
> +	cfg.ldb_credit_low_watermark = RTE_MIN(16, cfg.ldb_credit_quantum);
> +
> +	cfg.dir_credit_quantum = cfg.dir_credit_high_watermark / 2;
> +	cfg.dir_credit_low_watermark = RTE_MIN(16, cfg.dir_credit_quantum);
> +
> +	/* Per QM values */
> +
> +	cfg.ldb_credit_pool_id = handle->cfg.ldb_credit_pool_id;
> +	cfg.dir_credit_pool_id = handle->cfg.dir_credit_pool_id;
> +
> +	ret = dlb_iface_dir_port_create(handle, &cfg, dlb->poll_mode);
> +	if (ret < 0) {
> +		DLB_LOG_ERR("dlb: dlb_dir_port_create error, ret=%d (driver
> status: %s)\n",
> +			    ret, dlb_error_strings[response.status]);
> +		goto error_exit;
> +	}
> +
> +	qm_port_id = response.id;
> +
> +	DLB_LOG_DBG("dlb: ev_port %d uses qm DIR port %d <<<<<\n",
> +		    ev_port->id, qm_port_id);
> +
> +	qm_port = &ev_port->qm_port;
> +	qm_port->ev_port = ev_port; /* back ptr */
> +	qm_port->dlb = dlb;  /* back ptr */
> +
> +	/*
> +	 * Init local qe struct(s).
> +	 * Note: MOVDIR64 requires the enqueue QE to be aligned
> +	 */
> +
> +	snprintf(mz_name, sizeof(mz_name), "%s_dir_port%d",
> +		 handle->device_name,
> +		 ev_port->id);

(See device_name comment above)

> +
> +	ret = dlb_init_qe_mem(qm_port, mz_name);
> +
> +	if (ret < 0) {
> +		DLB_LOG_ERR("dlb: init_qe_mem failed, ret=%d\n", ret);
> +		goto error_exit;
> +	}
> +
> +	qm_port->pp_mmio_base = DLB_DIR_PP_BASE + PAGE_SIZE *
> qm_port_id;
> +	qm_port->id = qm_port_id;
> +
> +	/* The credit window is one high water mark of QEs */
> +	qm_port->ldb_pushcount_at_credit_expiry = 0;
> +	qm_port->cached_ldb_credits = cfg.ldb_credit_high_watermark;
> +	/* The credit window is one high water mark of QEs */
> +	qm_port->dir_pushcount_at_credit_expiry = 0;
> +	qm_port->cached_dir_credits = cfg.dir_credit_high_watermark;
> +	qm_port->cq_depth = cfg.cq_depth;
> +	qm_port->cq_idx = 0;
> +	qm_port->cq_idx_unmasked = 0;
> +	if (dlb->poll_mode == DLB_CQ_POLL_MODE_SPARSE)
> +		qm_port->cq_depth_mask = (cfg.cq_depth * 4) - 1;
> +	else
> +		qm_port->cq_depth_mask = cfg.cq_depth - 1;
> +
> +	qm_port->gen_bit_shift = __builtin_popcount(qm_port-
> >cq_depth_mask);
> +	/* starting value of gen bit - it toggles at wrap time */
> +	qm_port->gen_bit = 1;
> +
> +	qm_port->use_rsvd_token_scheme = use_rsvd_token_scheme;
> +	qm_port->cq_rsvd_token_deficit = rsvd_tokens;
> +	qm_port->int_armed = false;
> +
> +	/* Save off for later use in info and lookup APIs. */
> +	qm_port->qid_mappings = &dlb->qm_dir_to_ev_queue_id[0];
> +
> +	qm_port->dequeue_depth = dequeue_depth;
> +
> +	/* Directed ports are auto-pop, by default. */
> +	qm_port->token_pop_mode = AUTO_POP;
> +	qm_port->owed_tokens = 0;
> +	qm_port->issued_releases = 0;
> +
> +	/* Save config message too. */
> +	rte_memcpy(&qm_port->cfg.dir, &cfg, sizeof(cfg));

(See sizeof() comment above)

[...]

> diff --git a/drivers/event/dlb/pf/dlb_pf.c b/drivers/event/dlb/pf/dlb_pf.c
> index fffb88b..cd766d3 100644
> --- a/drivers/event/dlb/pf/dlb_pf.c
> +++ b/drivers/event/dlb/pf/dlb_pf.c
> @@ -221,6 +221,207 @@ dlb_pf_ldb_queue_create(struct dlb_hw_dev *handle,
>  }
> 
>  static int
> +dlb_pf_dir_queue_create(struct dlb_hw_dev *handle,
> +			struct dlb_create_dir_queue_args *cfg)
> +{
> +	struct dlb_dev *dlb_dev = (struct dlb_dev *)handle->pf_dev;
> +	struct dlb_cmd_response response = {0};
> +	int ret;
> +
> +	DLB_INFO(dev->dlb_device, "Entering %s()\n", __func__);
> +
> +	ret = dlb_hw_create_dir_queue(&dlb_dev->hw,
> +				      handle->domain_id,
> +				      cfg,
> +				      &response);
> +
> +	*(struct dlb_cmd_response *)cfg->response = response;
> +
> +	DLB_INFO(dev->dlb_device, "Exiting %s() with ret=%d\n", __func__,
> ret);
> +
> +	return ret;
> +}
> +
> +static void *
> +dlb_alloc_coherent_aligned(rte_iova_t *phys, size_t size, int align)
> +{
> +	const struct rte_memzone *mz;
> +	char mz_name[RTE_MEMZONE_NAMESIZE];
> +	uint32_t core_id = rte_lcore_id();
> +	unsigned int socket_id;
> +
> +	snprintf(mz_name, sizeof(mz_name) - 1, "%lx",
> +		 (unsigned long)rte_get_timer_cycles());

For debug purposes, it would be better if this name can trace the mz back to
this driver. How about something like event_dlb2_pf_name + ldb/dir_port + port ID?

I also don't see the port memzones getting freed anywhere, e.g. if the event device
is reset. Looks like a possible memory leak.

Thanks,
Gage

  reply	other threads:[~2020-10-08 21:30 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-11 19:18 [dpdk-dev] [PATCH v4 00/22] Add DLB PMD Timothy McDaniel
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 01/22] event/dlb: add documentation and meson infrastructure Timothy McDaniel
2020-09-14 20:56   ` Eads, Gage
2020-09-16 21:05     ` McDaniel, Timothy
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 02/22] event/dlb: add dynamic logging Timothy McDaniel
2020-09-14 21:00   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 03/22] event/dlb: add private data structures and constants Timothy McDaniel
2020-09-14 22:08   ` Eads, Gage
2020-10-08 18:14   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 04/22] event/dlb: add definitions shared with LKM or shared code Timothy McDaniel
2020-09-15 18:20   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 05/22] event/dlb: add inline functions Timothy McDaniel
2020-10-08 18:22   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 06/22] event/dlb: add probe Timothy McDaniel
2020-10-08 18:51   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 07/22] event/dlb: add xstats Timothy McDaniel
2020-10-08 20:53   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 08/22] event/dlb: add infos get and configure Timothy McDaniel
2020-10-08 21:01   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 09/22] event/dlb: add queue and port default conf Timothy McDaniel
2020-10-08 21:02   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 10/22] event/dlb: add queue setup Timothy McDaniel
2020-10-08 21:15   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 11/22] event/dlb: add port setup Timothy McDaniel
2020-10-08 21:28   ` Eads, Gage [this message]
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 12/22] event/dlb: add port link Timothy McDaniel
2020-10-08 21:31   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 13/22] event/dlb: add port unlink and port unlinks in progress Timothy McDaniel
2020-10-08 21:38   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 14/22] event/dlb: add eventdev start Timothy McDaniel
2020-10-08 21:41   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 15/22] event/dlb: add enqueue and its burst variants Timothy McDaniel
2020-10-08 21:43   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 16/22] event/dlb: add dequeue " Timothy McDaniel
2020-10-08 21:48   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 17/22] event/dlb: add eventdev stop and close Timothy McDaniel
2020-10-08 21:49   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 18/22] event/dlb: add PMD's token pop public interface Timothy McDaniel
2020-10-08 21:50   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 19/22] event/dlb: add PMD self-tests Timothy McDaniel
2020-10-08 21:56   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 20/22] event/dlb: add queue and port release Timothy McDaniel
2020-10-08 21:57   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 21/22] event/dlb: add timeout ticks entry point Timothy McDaniel
2020-10-08 22:01   ` Eads, Gage
2020-09-11 19:18 ` [dpdk-dev] [PATCH v4 22/22] doc: Add new DLB eventdev driver to relnotes Timothy McDaniel
2020-10-08 22:03   ` Eads, Gage

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=SN6PR11MB2574EB8549DEB521E88D1330F60B0@SN6PR11MB2574.namprd11.prod.outlook.com \
    --to=gage.eads@intel.com \
    --cc=dev@dpdk.org \
    --cc=erik.g.carrillo@intel.com \
    --cc=harry.van.haaren@intel.com \
    --cc=jerinj@marvell.com \
    --cc=timothy.mcdaniel@intel.com \
    /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).