Re: [dpdk-dev] [PATCH] vhost: fix crash on NUMA

2017-06-02 Thread Loftus, Ciara
> The queue allocation was changed, from allocating one queue-pair at a > time to one queue at a time. Most of the changes have been done, but > just with one being missed: the size of coping the old queue is still > based on queue-pair at numa_realloc(), which leads to overwritten issue. > As a re

Re: [dpdk-dev] [PATCH] vhost: fix crash on NUMA

2017-06-02 Thread Jens Freimann
On Fri, Jun 02, 2017 at 08:14:46AM +0800, Yuanhan Liu wrote: > The queue allocation was changed, from allocating one queue-pair at a > time to one queue at a time. Most of the changes have been done, but > just with one being missed: the size of coping the old queue is still s/coping/copying/ ? >

[dpdk-dev] [PATCH] vhost: fix crash on NUMA

2017-06-01 Thread Yuanhan Liu
The queue allocation was changed, from allocating one queue-pair at a time to one queue at a time. Most of the changes have been done, but just with one being missed: the size of coping the old queue is still based on queue-pair at numa_realloc(), which leads to overwritten issue. As a result, cras