DPDK patches and discussions
 help / color / mirror / Atom feed
From: Konstantin Ananyev <konstantin.ananyev@huawei.com>
To: Paul Szczepanek <paul.szczepanek@arm.com>, "dev@dpdk.org" <dev@dpdk.org>
Cc: "mb@smartsharesystems.com" <mb@smartsharesystems.com>,
	Jack Bond-Preston <jack.bond-preston@foss.arm.com>,
	Nathan Brown <nathan.brown@arm.com>
Subject: RE: [PATCH v14 2/6] mempool: add functions to get extra mempool info
Date: Mon, 10 Jun 2024 14:24:26 +0000	[thread overview]
Message-ID: <91c29c07d353422280fb50e5e80060b3@huawei.com> (raw)
In-Reply-To: <20240607151000.98562-3-paul.szczepanek@arm.com>



> Add two functions:
> - rte_mempool_get_mem_range - get virtual memory range
> of the objects in the mempool,
> - rte_mempool_get_obj_alignment - get alignment of
> objects in the mempool.
> 
> Add two tests that test these new functions.
> 
> Signed-off-by: Paul Szczepanek <paul.szczepanek@arm.com>
> Reviewed-by: Jack Bond-Preston <jack.bond-preston@foss.arm.com>
> Reviewed-by: Nathan Brown <nathan.brown@arm.com>
> Reviewed-by: Morten Brørup <mb@smartsharesystems.com>
> Acked-by: Morten Brørup <mb@smartsharesystems.com>
> ---
>  app/test/test_mempool.c   | 70 +++++++++++++++++++++++++++++++++++++++
>  lib/mempool/rte_mempool.c | 45 +++++++++++++++++++++++++
>  lib/mempool/rte_mempool.h | 47 ++++++++++++++++++++++++++
>  lib/mempool/version.map   |  3 ++
>  4 files changed, 165 insertions(+)
> 
> diff --git a/app/test/test_mempool.c b/app/test/test_mempool.c
> index ad7ebd6363..3f7ba5872d 100644
> --- a/app/test/test_mempool.c
> +++ b/app/test/test_mempool.c
> @@ -843,16 +843,19 @@ test_mempool(void)
>  	int ret = -1;
>  	uint32_t nb_objs = 0;
>  	uint32_t nb_mem_chunks = 0;
> +	size_t alignment = 0;
>  	struct rte_mempool *mp_cache = NULL;
>  	struct rte_mempool *mp_nocache = NULL;
>  	struct rte_mempool *mp_stack_anon = NULL;
>  	struct rte_mempool *mp_stack_mempool_iter = NULL;
>  	struct rte_mempool *mp_stack = NULL;
>  	struct rte_mempool *default_pool = NULL;
> +	struct rte_mempool *mp_alignment = NULL;
>  	struct mp_data cb_arg = {
>  		.ret = -1
>  	};
>  	const char *default_pool_ops = rte_mbuf_best_mempool_ops();
> +	struct rte_mempool_mem_range_info mem_range = { 0 };
> 
>  	/* create a mempool (without cache) */
>  	mp_nocache = rte_mempool_create("test_nocache", MEMPOOL_SIZE,
> @@ -967,6 +970,72 @@ test_mempool(void)
>  	}
>  	rte_mempool_obj_iter(default_pool, my_obj_init, NULL);
> 
> +	if (rte_mempool_get_mem_range(default_pool, &mem_range)) {
> +		printf("cannot get mem range from default mempool\n");
> +		GOTO_ERR(ret, err);
> +	}
> +
> +	if (rte_mempool_get_mem_range(NULL, NULL) != -EINVAL) {
> +		printf("rte_mempool_get_mem_range failed to return -EINVAL "
> +				"when passed invalid arguments\n");
> +		GOTO_ERR(ret, err);
> +	}
> +
> +	if (mem_range.start == NULL || mem_range.length <
> +			(MEMPOOL_SIZE * MEMPOOL_ELT_SIZE)) {
> +		printf("mem range of default mempool is invalid\n");
> +		GOTO_ERR(ret, err);
> +	}
> +
> +	/* by default mempool objects are aligned by RTE_MEMPOOL_ALIGN */
> +	alignment = rte_mempool_get_obj_alignment(default_pool);
> +	if (alignment != RTE_MEMPOOL_ALIGN) {
> +		printf("rte_mempool_get_obj_alignment returned wrong value, "
> +				"expected %zu, returned %zu\n",
> +				(size_t)RTE_MEMPOOL_ALIGN, alignment);
> +		GOTO_ERR(ret, err);
> +	}
> +
> +	/* create a mempool with a RTE_MEMPOOL_F_NO_CACHE_ALIGN flag */
> +	mp_alignment = rte_mempool_create("test_alignment",
> +		1, 8, /* the small size guarantees single memory chunk */
> +		0, 0, NULL, NULL, my_obj_init, NULL,
> +		SOCKET_ID_ANY, RTE_MEMPOOL_F_NO_CACHE_ALIGN);
> +
> +	if (mp_alignment == NULL) {
> +		printf("cannot allocate mempool with "
> +				"RTE_MEMPOOL_F_NO_CACHE_ALIGN flag\n");
> +		GOTO_ERR(ret, err);
> +	}
> +
> +	/* mempool was created with RTE_MEMPOOL_F_NO_CACHE_ALIGN
> +	 * and minimum alignment is expected which is sizeof(uint64_t)
> +	 */
> +	alignment = rte_mempool_get_obj_alignment(mp_alignment);
> +	if (alignment != sizeof(uint64_t)) {
> +		printf("rte_mempool_get_obj_alignment returned wrong value, "
> +				"expected %zu, returned %zu\n",
> +				(size_t)sizeof(uint64_t), alignment);
> +		GOTO_ERR(ret, err);
> +	}
> +
> +	alignment = rte_mempool_get_obj_alignment(NULL);
> +	if (alignment != 0) {
> +		printf("rte_mempool_get_obj_alignment failed to return 0 for "
> +				" an invalid mempool\n");
> +		GOTO_ERR(ret, err);
> +	}
> +
> +	if (rte_mempool_get_mem_range(mp_alignment, &mem_range)) {
> +		printf("cannot get mem range from mempool\n");
> +		GOTO_ERR(ret, err);
> +	}
> +
> +	if (!mem_range.is_contiguous) {
> +		printf("mempool not contiguous\n");
> +		GOTO_ERR(ret, err);
> +	}
> +
>  	/* retrieve the mempool from its name */
>  	if (rte_mempool_lookup("test_nocache") != mp_nocache) {
>  		printf("Cannot lookup mempool from its name\n");
> @@ -1039,6 +1108,7 @@ test_mempool(void)
>  	rte_mempool_free(mp_stack_mempool_iter);
>  	rte_mempool_free(mp_stack);
>  	rte_mempool_free(default_pool);
> +	rte_mempool_free(mp_alignment);
> 
>  	return ret;
>  }
> diff --git a/lib/mempool/rte_mempool.c b/lib/mempool/rte_mempool.c
> index 12390a2c81..54d2804151 100644
> --- a/lib/mempool/rte_mempool.c
> +++ b/lib/mempool/rte_mempool.c
> @@ -1386,6 +1386,51 @@ void rte_mempool_walk(void (*func)(struct rte_mempool *, void *),
>  	rte_mcfg_mempool_read_unlock();
>  }
> 
> +int rte_mempool_get_mem_range(const struct rte_mempool *mp,
> +		struct rte_mempool_mem_range_info *mem_range)
> +{

To follow DPDK coding style guide:
int
rte_mempool_get_mem_range(...
same for the second function. 
 

> +	if (mp == NULL || mem_range == NULL)
> +		return -EINVAL;

Again, to follow DPDK coding style:
Variables should be declared at the start of a block of code rather than in the middle.
I.E - move that input params check after local vars definition block. 

With that changes in place:
Acked-by: Konstantin Ananyev <konstantin.ananyev@huawei.com>

> +	void *address_low = (void *)UINTPTR_MAX;
> +	void *address_high = 0;
> +	size_t address_diff = 0;
> +	size_t total_size = 0;
> +	struct rte_mempool_memhdr *hdr;
> +
> +	/* go through memory chunks and find the lowest and highest addresses */
> +	STAILQ_FOREACH(hdr, &mp->mem_list, next) {
> +		if (address_low > hdr->addr)
> +			address_low = hdr->addr;
> +		if (address_high < RTE_PTR_ADD(hdr->addr, hdr->len))
> +			address_high = RTE_PTR_ADD(hdr->addr, hdr->len);
> +		total_size += hdr->len;
> +	}
> +
> +	/* check if mempool was not populated yet (no memory chunks) */
> +	if (address_low == (void *)UINTPTR_MAX)
> +		return -EINVAL;
> +
> +	address_diff = (size_t)RTE_PTR_DIFF(address_high, address_low);
> +
> +	mem_range->start = address_low;
> +	mem_range->length = address_diff;
> +	mem_range->is_contiguous = (total_size == address_diff) ? true : false;
> +
> +	return 0;
> +}
> +
> +size_t rte_mempool_get_obj_alignment(const struct rte_mempool *mp)
> +{
> +	if (mp == NULL)
> +		return 0;

In case of mp==NULL, would it be better to return negative error code (-EINVAL or so)?
In that case the function should be changed to return ssize_t though.

> +
> +	if (mp->flags & RTE_MEMPOOL_F_NO_CACHE_ALIGN)
> +		return sizeof(uint64_t);
> +	else
> +		return RTE_MEMPOOL_ALIGN;
> +}
> +
>  struct mempool_callback_data {
>  	TAILQ_ENTRY(mempool_callback_data) callbacks;
>  	rte_mempool_event_callback *func;
> diff --git a/lib/mempool/rte_mempool.h b/lib/mempool/rte_mempool.h
> index 23fd5c8465..990491a7a7 100644
> --- a/lib/mempool/rte_mempool.h
> +++ b/lib/mempool/rte_mempool.h
> @@ -1917,6 +1917,53 @@ uint32_t rte_mempool_calc_obj_size(uint32_t elt_size, uint32_t flags,
>  void rte_mempool_walk(void (*func)(struct rte_mempool *, void *arg),
>  		      void *arg);
> 
> +/**
> + * A structure used to retrieve information about the memory range
> + * of the mempool.
> + */
> +struct rte_mempool_mem_range_info {
> +	/** Start of the memory range used by mempool objects */
> +	void *start;
> +	/** Length of the memory range used by mempool objects */
> +	size_t length;
> +	/** Are all memory addresses used by mempool objects contiguous */
> +	bool is_contiguous;
> +};
> +
> +/**
> + * @warning
> + * @b EXPERIMENTAL: this API may change without prior notice.
> + *
> + * Get information about the memory range used by the mempool.
> + *
> + * @param[in] mp
> + *   Pointer to an initialized mempool.
> + * @param[out] mem_range
> + *   Pointer to struct which is used to return lowest address,
> + *   length of the memory range containing all the addresses,
> + *   and whether these addresses are contiguous.
> + * @return
> + *   0 on success, -EINVAL if mempool is not valid or mem_range is NULL.
> + **/
> +__rte_experimental
> +int rte_mempool_get_mem_range(const struct rte_mempool *mp,
> +		struct rte_mempool_mem_range_info *mem_range);
> +
> +/**
> + * @warning
> + * @b EXPERIMENTAL: this API may change without prior notice.
> + *
> + * Return object alignment.
> + *
> + * @param[in] mp
> + *   Pointer to a mempool.
> + * @return
> + *   Object alignment if mp is valid. 0 if mp is NULL.
> + *
> + **/
> +__rte_experimental
> +size_t rte_mempool_get_obj_alignment(const struct rte_mempool *mp);
> +
>  /**
>   * @internal Get page size used for mempool object allocation.
>   * This function is internal to mempool library and mempool drivers.
> diff --git a/lib/mempool/version.map b/lib/mempool/version.map
> index 473277400c..02df634b2a 100644
> --- a/lib/mempool/version.map
> +++ b/lib/mempool/version.map
> @@ -50,6 +50,9 @@ EXPERIMENTAL {
>  	__rte_mempool_trace_get_contig_blocks;
>  	__rte_mempool_trace_default_cache;
>  	__rte_mempool_trace_cache_flush;
> +	# added in 24.07
> +	rte_mempool_get_mem_range;
> +	rte_mempool_get_obj_alignment;
>  };
> 
>  INTERNAL {
> --
> 2.25.1


  reply	other threads:[~2024-06-10 14:24 UTC|newest]

Thread overview: 141+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-27 15:08 [RFC 0/2] add pointer compression API Paul Szczepanek
2023-09-27 15:08 ` [RFC 1/2] eal: add pointer compression functions Paul Szczepanek
2023-10-09 15:54   ` Thomas Monjalon
2023-10-11 13:36     ` Honnappa Nagarahalli
2023-10-11 16:43       ` Paul Szczepanek
2023-10-11 12:43   ` [RFC v2 0/2] add pointer compression API Paul Szczepanek
2023-10-11 12:43     ` [RFC v2 1/2] eal: add pointer compression functions Paul Szczepanek
2023-10-11 12:43     ` [RFC v2 2/2] test: add pointer compress tests to ring perf test Paul Szczepanek
2023-10-31 18:10   ` [PATCH v3 0/3] add pointer compression API Paul Szczepanek
2023-10-31 18:10     ` [PATCH v3 1/3] eal: add pointer compression functions Paul Szczepanek
2023-10-31 18:10     ` [PATCH v3 2/3] test: add pointer compress tests to ring perf test Paul Szczepanek
2023-10-31 18:10     ` [PATCH v3 3/3] docs: add pointer compression to the EAL guide Paul Szczepanek
2023-11-01  7:42     ` [PATCH v3 0/3] add pointer compression API Morten Brørup
2023-11-01 12:52       ` Paul Szczepanek
2023-11-01 12:46   ` [PATCH v4 0/4] " Paul Szczepanek
2023-11-01 12:46     ` [PATCH v4 1/4] eal: add pointer compression functions Paul Szczepanek
2023-11-01 12:46     ` [PATCH v4 2/4] test: add pointer compress tests to ring perf test Paul Szczepanek
2023-11-01 12:46     ` [PATCH v4 3/4] docs: add pointer compression to the EAL guide Paul Szczepanek
2023-11-01 12:46     ` [PATCH v4 4/4] test: add unit test for ptr compression Paul Szczepanek
2023-11-01 18:12   ` [PATCH v5 0/4] add pointer compression API Paul Szczepanek
2023-11-01 18:12     ` [PATCH v5 1/4] eal: add pointer compression functions Paul Szczepanek
2024-02-11 15:32       ` Konstantin Ananyev
2023-11-01 18:12     ` [PATCH v5 2/4] test: add pointer compress tests to ring perf test Paul Szczepanek
2023-11-01 18:13     ` [PATCH v5 3/4] docs: add pointer compression to the EAL guide Paul Szczepanek
2023-11-01 18:13     ` [PATCH v5 4/4] test: add unit test for ptr compression Paul Szczepanek
2024-02-22  8:15     ` [PATCH v5 0/4] add pointer compression API Paul Szczepanek
2024-02-22 16:16       ` Konstantin Ananyev
2024-03-01 11:16         ` Morten Brørup
2024-03-01 16:12           ` Patrick Robb
2024-03-01 19:57           ` Honnappa Nagarahalli
2024-03-02 10:33             ` Morten Brørup
2024-03-06 22:31               ` Paul Szczepanek
2024-03-07  2:13                 ` Honnappa Nagarahalli
2024-03-04 14:44             ` Konstantin Ananyev
2024-05-15 17:00               ` Paul Szczepanek
2024-05-15 22:34                 ` Morten Brørup
2024-05-16  8:25                   ` Paul Szczepanek
2024-05-16  8:40                   ` Konstantin Ananyev
2024-05-24  8:33                     ` Paul Szczepanek
2024-05-24  9:09                       ` Konstantin Ananyev
2024-05-28 19:29                         ` Paul Szczepanek
2024-05-29 10:28                           ` Paul Szczepanek
2024-06-06 13:33                           ` Konstantin Ananyev
2024-02-29 16:03   ` [PATCH v6 " Paul Szczepanek
2024-02-29 16:03     ` [PATCH v6 1/4] eal: add pointer compression functions Paul Szczepanek
2024-02-29 16:03     ` [PATCH v6 2/4] test: add pointer compress tests to ring perf test Paul Szczepanek
2024-02-29 16:03     ` [PATCH v6 3/4] docs: add pointer compression to the EAL guide Paul Szczepanek
2024-02-29 16:03     ` [PATCH v6 4/4] test: add unit test for ptr compression Paul Szczepanek
2024-03-01 10:21   ` [PATCH v7 0/4] add pointer compression API Paul Szczepanek
2024-03-01 10:21     ` [PATCH v7 1/4] eal: add pointer compression functions Paul Szczepanek
2024-03-07 11:22       ` David Marchand
2024-03-01 10:21     ` [PATCH v7 2/4] test: add pointer compress tests to ring perf test Paul Szczepanek
2024-03-07 11:27       ` David Marchand
2024-03-01 10:21     ` [PATCH v7 3/4] docs: add pointer compression to the EAL guide Paul Szczepanek
2024-03-01 10:21     ` [PATCH v7 4/4] test: add unit test for ptr compression Paul Szczepanek
2024-03-07 11:30       ` David Marchand
2024-03-07 20:39   ` [PATCH v7 0/4] add pointer compression API Paul Szczepanek
2024-03-07 20:39     ` [PATCH v8 1/4] ptr_compress: add pointer compression library Paul Szczepanek
2024-03-07 20:39     ` [PATCH v8 2/4] test: add pointer compress tests to ring perf test Paul Szczepanek
2024-03-07 20:39     ` [PATCH v8 3/4] docs: add pointer compression guide Paul Szczepanek
2024-03-07 20:39     ` [PATCH v8 4/4] test: add unit test for ptr compression Paul Szczepanek
2024-03-08  8:27     ` [PATCH v7 0/4] add pointer compression API David Marchand
2024-03-10 19:34       ` Honnappa Nagarahalli
2024-03-11  7:44         ` David Marchand
2024-03-11 14:47   ` [PATCH v9 0/5] " Paul Szczepanek
2024-03-11 14:47     ` [PATCH v9 1/5] lib: allow libraries with no sources Paul Szczepanek
2024-03-11 15:23       ` Bruce Richardson
2024-03-15  8:33         ` Paul Szczepanek
2024-03-11 14:47     ` [PATCH v9 2/5] ptr_compress: add pointer compression library Paul Szczepanek
2024-03-11 14:47     ` [PATCH v9 3/5] test: add pointer compress tests to ring perf test Paul Szczepanek
2024-03-11 14:47     ` [PATCH v9 4/5] docs: add pointer compression guide Paul Szczepanek
2024-03-11 14:47     ` [PATCH v9 5/5] test: add unit test for ptr compression Paul Szczepanek
2024-03-11 20:31   ` [PATCH v10 0/5] add pointer compression API Paul Szczepanek
2024-03-11 20:31     ` [PATCH v10 1/5] lib: allow libraries with no sources Paul Szczepanek
2024-03-15  9:14       ` Bruce Richardson
2024-03-11 20:31     ` [PATCH v10 2/5] ptr_compress: add pointer compression library Paul Szczepanek
2024-03-11 20:31     ` [PATCH v10 3/5] test: add pointer compress tests to ring perf test Paul Szczepanek
2024-03-11 20:31     ` [PATCH v10 4/5] docs: add pointer compression guide Paul Szczepanek
2024-03-11 20:31     ` [PATCH v10 5/5] test: add unit test for ptr compression Paul Szczepanek
2024-05-24  8:36   ` [PATCH v11 0/6] add pointer compression API Paul Szczepanek
2024-05-24  8:36     ` [PATCH v11 1/6] lib: allow libraries with no sources Paul Szczepanek
2024-05-24  8:36     ` [PATCH v11 2/6] mempool: add functions to get extra mempool info Paul Szczepanek
2024-05-24 12:20       ` Morten Brørup
2024-05-28 19:33         ` Paul Szczepanek
2024-05-24  8:36     ` [PATCH v11 3/6] ptr_compress: add pointer compression library Paul Szczepanek
2024-05-24 12:50       ` Morten Brørup
2024-06-06 13:22       ` Konstantin Ananyev
2024-05-24  8:36     ` [PATCH v11 4/6] test: add pointer compress tests to ring perf test Paul Szczepanek
2024-05-24  8:36     ` [PATCH v11 5/6] docs: add pointer compression guide Paul Szczepanek
2024-05-24  8:36     ` [PATCH v11 6/6] test: add unit test for ptr compression Paul Szczepanek
2024-05-29 10:22   ` [PATCH v12 0/6] add pointer compression API Paul Szczepanek
2024-05-29 10:22     ` [PATCH v12 1/6] lib: allow libraries with no sources Paul Szczepanek
2024-05-29 10:22     ` [PATCH v12 2/6] mempool: add functions to get extra mempool info Paul Szczepanek
2024-05-29 11:47       ` Morten Brørup
2024-05-29 13:56       ` Morten Brørup
2024-05-29 16:18         ` Paul Szczepanek
2024-05-30  0:56           ` Du, Frank
2024-05-29 10:22     ` [PATCH v12 3/6] ptr_compress: add pointer compression library Paul Szczepanek
2024-05-29 11:52       ` Morten Brørup
2024-05-29 10:22     ` [PATCH v12 4/6] test: add pointer compress tests to ring perf test Paul Szczepanek
2024-05-29 10:22     ` [PATCH v12 5/6] docs: add pointer compression guide Paul Szczepanek
2024-05-29 10:22     ` [PATCH v12 6/6] test: add unit test for ptr compression Paul Szczepanek
2024-05-30  9:40   ` [PATCH v13 0/6] add pointer compression API Paul Szczepanek
2024-05-30  9:40     ` [PATCH v13 1/6] lib: allow libraries with no sources Paul Szczepanek
2024-05-30  9:40     ` [PATCH v13 2/6] mempool: add functions to get extra mempool info Paul Szczepanek
2024-05-31  9:32       ` Morten Brørup
2024-06-06 12:28       ` Konstantin Ananyev
2024-06-07 15:12         ` Paul Szczepanek
2024-05-30  9:40     ` [PATCH v13 3/6] ptr_compress: add pointer compression library Paul Szczepanek
2024-05-30  9:40     ` [PATCH v13 4/6] test: add pointer compress tests to ring perf test Paul Szczepanek
2024-05-30  9:40     ` [PATCH v13 5/6] docs: add pointer compression guide Paul Szczepanek
2024-05-30  9:40     ` [PATCH v13 6/6] test: add unit test for ptr compression Paul Szczepanek
2024-06-04  9:06       ` Paul Szczepanek
2024-06-04  9:07       ` Paul Szczepanek
2024-05-30 13:35     ` [PATCH v13 0/6] add pointer compression API Paul Szczepanek
2024-06-04  9:04     ` Paul Szczepanek
2023-09-27 15:08 ` [RFC 2/2] test: add pointer compress tests to ring perf test Paul Szczepanek
2023-10-09 15:48   ` Thomas Monjalon
2024-06-07 15:09 ` [PATCH v14 0/6] add pointer compression API Paul Szczepanek
2024-06-07 15:09   ` [PATCH v14 1/6] lib: allow libraries with no sources Paul Szczepanek
2024-06-07 15:09   ` [PATCH v14 2/6] mempool: add functions to get extra mempool info Paul Szczepanek
2024-06-10 14:24     ` Konstantin Ananyev [this message]
2024-06-11 13:06       ` Paul Szczepanek
2024-06-07 15:09   ` [PATCH v14 3/6] ptr_compress: add pointer compression library Paul Szczepanek
2024-06-10 15:18     ` David Marchand
2024-06-10 15:37       ` Morten Brørup
2024-06-11 13:16       ` Paul Szczepanek
2024-06-07 15:09   ` [PATCH v14 4/6] test: add pointer compress tests to ring perf test Paul Szczepanek
2024-06-07 15:09   ` [PATCH v14 5/6] docs: add pointer compression guide Paul Szczepanek
2024-06-07 15:10   ` [PATCH v14 6/6] test: add unit test for ptr compression Paul Szczepanek
2024-06-11 12:59 ` [PATCH v15 0/6] add pointer compression API Paul Szczepanek
2024-06-11 12:59   ` [PATCH v15 1/6] lib: allow libraries with no sources Paul Szczepanek
2024-06-11 12:59   ` [PATCH v15 2/6] mempool: add functions to get extra mempool info Paul Szczepanek
2024-06-11 12:59   ` [PATCH v15 3/6] ptr_compress: add pointer compression library Paul Szczepanek
2024-06-11 12:59   ` [PATCH v15 4/6] test: add pointer compress tests to ring perf test Paul Szczepanek
2024-06-11 12:59   ` [PATCH v15 5/6] docs: add pointer compression guide Paul Szczepanek
2024-06-11 12:59   ` [PATCH v15 6/6] test: add unit test for ptr compression Paul Szczepanek
2024-06-14 10:28   ` [PATCH v15 0/6] add pointer compression API David Marchand
2024-06-17 10:02     ` David Marchand
2024-06-17 13:46       ` Paul Szczepanek
2024-06-17 13:57         ` David Marchand

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=91c29c07d353422280fb50e5e80060b3@huawei.com \
    --to=konstantin.ananyev@huawei.com \
    --cc=dev@dpdk.org \
    --cc=jack.bond-preston@foss.arm.com \
    --cc=mb@smartsharesystems.com \
    --cc=nathan.brown@arm.com \
    --cc=paul.szczepanek@arm.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).