[dpdk-dev] [PATCH] examples/vmdq: Fix the core dump issue when mem_pool is more than 34

2015-10-15 Thread Sun, Xutao
> -Original Message- > From: De Lara Guarch, Pablo > Sent: Tuesday, October 13, 2015 3:59 PM > To: Sun, Xutao; dev at dpdk.org > Subject: RE: [dpdk-dev] [PATCH] examples/vmdq: Fix the core dump issue > when mem_pool is more than 34 > > Hi Xutao, >

[dpdk-dev] [PATCH] examples/vmdq: Fix the core dump issue when mem_pool is more than 34

2015-10-13 Thread Xutao Sun
Macro MAX_QUEUES was defined to 128, only allow 16 mem_pools in theory. When running vmdq_app with more than 34 mem_pools, it will cause the core_dump issue. Change MAX_QUEUES to 1024 will solve this issue. Signed-off-by: Xutao Sun --- examples/vmdq/main.c | 2 +- 1 file changed, 1

[dpdk-dev] [PATCH] examples/vmdq: Fix the core dump issue when mem_pool is more than 34

2015-09-21 Thread Xu, Qian Q
Subject: Re: [dpdk-dev] [PATCH] examples/vmdq: Fix the core dump issue when mem_pool is more than 34 > -Original Message- > From: Sun, Xutao > Sent: Monday, September 21, 2015 1:45 PM > To: dev at dpdk.org > Cc: Wu, Jingjing; Zhang, Helin; Sun, Xutao > Subject: [PATCH]

[dpdk-dev] [PATCH] examples/vmdq: Fix the core dump issue when mem_pool is more than 34

2015-09-21 Thread Wu, Jingjing
> -Original Message- > From: Sun, Xutao > Sent: Monday, September 21, 2015 1:45 PM > To: dev at dpdk.org > Cc: Wu, Jingjing; Zhang, Helin; Sun, Xutao > Subject: [PATCH] examples/vmdq: Fix the core dump issue when mem_pool > is more than 34 > > Macro MAX_QUEUES was defined to 128, only