On Fri, Nov 27, 2015 at 07:04:28PM +0530, Jerin Jacob wrote: > Commit 42ec27a0178a causes compiling error on arm, as RTE_SCHED_VECTOR > does support only SSE intrinsic, so disable it till we have neon support. > > Fixes: 42ec27a0178a ("sched: enable SSE optimizations in config") > > Signed-off-by: Jerin Jacob <jerin.jacob at caviumnetworks.com> > --- > config/common_arm64 | 1 + > config/defconfig_arm-armv7a-linuxapp-gcc | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/config/common_arm64 b/config/common_arm64 > index 5e5e303..d6a9cb9 100644 > --- a/config/common_arm64 > +++ b/config/common_arm64 > @@ -46,3 +46,4 @@ CONFIG_RTE_LIBRTE_I40E_PMD=n > CONFIG_RTE_LIBRTE_LPM=n > CONFIG_RTE_LIBRTE_TABLE=n > CONFIG_RTE_LIBRTE_PIPELINE=n > +CONFIG_RTE_SCHED_VECTOR=n > diff --git a/config/defconfig_arm-armv7a-linuxapp-gcc > b/config/defconfig_arm-armv7a-linuxapp-gcc > index 82143af..9924ff9 100644 > --- a/config/defconfig_arm-armv7a-linuxapp-gcc > +++ b/config/defconfig_arm-armv7a-linuxapp-gcc > @@ -57,6 +57,7 @@ CONFIG_RTE_LIBRTE_ACL=n > CONFIG_RTE_LIBRTE_LPM=n > CONFIG_RTE_LIBRTE_TABLE=n > CONFIG_RTE_LIBRTE_PIPELINE=n > +CONFIG_RTE_SCHED_VECTOR=n > > # cannot use those on ARM > CONFIG_RTE_KNI_KMOD=n > -- > 2.1.0 >
Hi Jerin, In this way, we still have to modify two files each time a new feature is added but not verified on ARM architectures. Since disabling those drivers and libs are common for both armv7 and armv8, can you put them in one config file, for example: common_arm? It is not like common_arm64, which is solely for armv8 platform. Actually, the arm64 common config is defconfig_arm64-armv8a-linuxapp-gcc you can include it in the thunderx or xgene1 config files respectively, and overriding some special config if needed. On the other hand, If we support the features in the future by replacing SSE intrinsic with NEON, we just need to remove the lines in one place. Regards, Jianbo