[dpdk-dev] [PATCH] rte_bus_pci: remove unneeded library dependency.

2019-10-11 Thread Seth Howell
librte_ethdev. Signed-off-by: Seth Howell --- drivers/bus/pci/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/bus/pci/Makefile b/drivers/bus/pci/Makefile index 68c1f3fde..45d12427a 100644 --- a/drivers/bus/pci/Makefile +++ b/drivers/bus/pci/Makefile @@ -25,7 +25,7

[dpdk-dev] [PATCH v2] malloc: notify primary process about hotplug in secondary

2018-12-07 Thread Seth Howell
lback present in the primary process only - is never called. After this patch, a primary process fires memory event callbacks before secondary processes start their synchronizations - both for hotplug and hotremove. Fixes: 07dcbfe0101f ("malloc: support multiprocess memory hotplug") Sign

[dpdk-dev] [PATCH] malloc: notify primary process about hotplug in secondary

2018-12-07 Thread Seth Howell
lback present in the primary process only - is never called. After this patch, a primary process fires memory event callbacks before secondary processes start their synchronizations - both for hotplug and hotremove. Fixes: 07dcbfe0101f ("malloc: support multiprocess memory hotplug") Sign

[dpdk-dev] [PATCH] malloc: notify primary process about hotplug in secondary

2018-12-04 Thread Seth Howell
lback present in the primary process only - is never called. After this patch, a primary process fires memory event callbacks before secondary processes start their synchronizations - both for hotplug and hotremove. Change-Id: I60de33913f58bc2454069c3844826c92cb043fff Signed-off-by: Seth Howell Signed-o

[dpdk-dev] [PATCH v3] eal/linuxapp: check mmap return value MAP_FAILED

2017-08-28 Thread Seth Howell
If mmap fails, it will return the value MAP_FAILED. Checking for this return code allows us to properly identify mmap failures and report them as such to the calling function. Signed-off-by: Seth Howell --- lib/librte_eal/linuxapp/eal/eal_memory.c | 2 ++ 1 file changed, 2 insertions(+) diff

[dpdk-dev] [PATCH v2] eal/linuxapp: check mmap return value MAP_FAILED

2017-08-28 Thread Seth Howell
If mmap fails, it will return the value MAP_FAILED. Checking for this return code allows us to properly identify mmap failures and report them as such to the calling function. Signed-off-by: Seth Howell --- lib/librte_eal/linuxapp/eal/eal_memory.c | 2 ++ 1 file changed, 2 insertions(+) diff

[dpdk-dev] [PATCH] eal/linuxapp: check mmap return value MAP_FAILED

2017-08-15 Thread Seth Howell
If mmap fails, it will return the value MAP_FAILED. Checking for this return code allows us to properly identify mmap failures and report them as such to the calling function. Signed-off-by: Seth Howell --- lib/librte_eal/linuxapp/eal/eal_memory.c | 2 ++ 1 file changed, 2 insertions(+) diff