> -----Original Message----- > From: Sun, Xutao > Sent: Tuesday, October 27, 2015 1:11 PM > To: dev at dpdk.org > Cc: Wu, Jingjing; Zhang, Helin; Sun, Xutao > Subject: [PATCH v2] examples/vmdq: Fix the core dump issue when > mem_pool is more than 34 > > Macro MAX_QUEUES was defined to 128, only allow 16 vmdq_pools in > theory. > When running vmdq_app with more than 34 vmdq_pools, it will cause the > core_dump issue. > Change MAX_QUEUES to 1024 will solve this issue. > > Signed-off-by: Xutao Sun <xutao.sun at intel.com>
Acked-by: Jingjing Wu <jingjing.wu at intel.com> > --- > v2: > - rectify the NUM_MBUFS_PER_PORT since MAX_QUEUES has been > changed > > examples/vmdq/main.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > 1.9.3