[dpdk-dev] [PATCH v4 1/1] change hugepage sorting to avoid overlapping memcpy

2016-01-07 Thread Ralf Hoffmann
with only one hugepage or already sorted hugepage addresses, the sort function called memcpy with same src and dst pointer. Debugging with valgrind will issue a warning about overlapping area. This patch changes the sort method to qsort to avoid this behavior. The separate sort function is no longe

[dpdk-dev] [PATCH v4 1/1] change hugepage sorting to avoid overlapping memcpy

2016-01-07 Thread Sergio Gonzalez Monroy
Hi Ralf, It seems like the title update you did for v3 is missing in this patch. On 07/01/2016 13:59, Ralf Hoffmann wrote: > with only one hugepage or already sorted hugepage addresses, the sort > function called memcpy with same src and dst pointer. Debugging with > valgrind will issue a warning