Re: [ovs-dev] [PATCH 2/2] dpdk: Use dynamic string for socket-mem construction.

2019-01-28 Thread Ian Stokes
On 1/22/2019 1:22 PM, Ilya Maximets wrote: No need to allocate memory and use 'strcat' direcly. 'dynamic-string' could do this for us. > Signed-off-by: Ilya Maximets --- lib/dpdk.c | 13 + 1 file changed, 5 insertions(+), 8 deletions(-) Thanks for this Ilya, I've pushed this to

[ovs-dev] [PATCH 2/2] dpdk: Use dynamic string for socket-mem construction.

2019-01-22 Thread Ilya Maximets
No need to allocate memory and use 'strcat' direcly. 'dynamic-string' could do this for us. Signed-off-by: Ilya Maximets --- lib/dpdk.c | 13 + 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/lib/dpdk.c b/lib/dpdk.c index d70884aad..855bcf013 100644 --- a/lib/dpdk.c +++