From: Ferruh Yigit Date: Thu, 28 Jan 2016 12:20:23 +0000 (+0000) Subject: eal: move cpu flags out of headers X-Git-Tag: spdx-start~7666 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=c344eab3eecb71203681e6c5c5b64aefb2d7ad94;hp=c344eab3eecb71203681e6c5c5b64aefb2d7ad94;p=dpdk.git eal: move cpu flags out of headers Move cpu_feature_table array from arch specific rte_cpuflags.h files to new arch specific rte_cpuflags.c files. Main motivation is to escape from static variable declarations in header files. cpu_feature_table has many copies in final binary, even exist in some object files that does not use this variable at all. And this can be a sample to create architecture specific source files and move some functions which are not performance sensitive from architecture header files to source files. Signed-off-by: Ferruh Yigit ---