When running dpdk applications on cores whose ids are bigger than original max_core setting, eal error as below: EAL: Detected 104 lcore(s) EAL: Detected 2 NUMA nodes EAL: invalid core list -l CORELIST core indexes between 0 and 128 The fix is to increase max_core to 256 on arm64 platform. Fixes: b3ce00e5 ("mk: introduce ARMv8 architecture") Cc: stable@dpdk.org Signed-off-by: Joyce Kong <joyce.kong@arm.com> Reviewed-by: Gavin Hu <gavin.hu@arm.com> Acked-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
10 lines
189 B
Plaintext
10 lines
189 B
Plaintext
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2015 Cavium, Inc
|
|
#
|
|
|
|
#include "common_armv8a_linuxapp"
|
|
|
|
CONFIG_RTE_TOOLCHAIN="gcc"
|
|
CONFIG_RTE_TOOLCHAIN_GCC=y
|
|
CONFIG_RTE_MAX_LCORE=256
|