Re: [dpdk-dev] [PATCH] drivers: fix memzone allocations for DMA memory

2021-07-06 Thread Min Hu (Connor)
在 2021/7/6 17:49, David Marchand 写道: On Tue, Jul 6, 2021 at 11:36 AM Min Hu (Connor) wrote: acked. Thanks for the quick review, just translating this "acked" to: Acked-by: Min Hu (Connor) For patchwork to catch it. OK, I will do it as you suggest in future.

Re: [dpdk-dev] [PATCH] drivers: fix memzone allocations for DMA memory

2021-07-06 Thread David Marchand
On Tue, Jul 6, 2021 at 11:36 AM Min Hu (Connor) wrote: > > acked. Thanks for the quick review, just translating this "acked" to: Acked-by: Min Hu (Connor) For patchwork to catch it. -- David Marchand

Re: [dpdk-dev] [PATCH] drivers: fix memzone allocations for DMA memory

2021-07-06 Thread Min Hu (Connor)
acked. 在 2021/7/6 16:57, David Marchand 写道: Caught by code review. Using a random name for memzone allocations can result in init failures in the unlikely case that a name collision occurs. Use a simple sequential generator on 64 bits. Fixes: 3f50f072ff06 ("i40e: fix memzone freeing") Fixes: 2

[dpdk-dev] [PATCH] drivers: fix memzone allocations for DMA memory

2021-07-06 Thread David Marchand
Caught by code review. Using a random name for memzone allocations can result in init failures in the unlikely case that a name collision occurs. Use a simple sequential generator on 64 bits. Fixes: 3f50f072ff06 ("i40e: fix memzone freeing") Fixes: 22b123a36d07 ("net/avf: initialize PMD") Fixes: