[dpdk-dev] [PATCH] librte_acl make it build/work for 'default' target

Neil Horman nhorman at tuxdriver.com
Wed Aug 6 20:55:24 CEST 2014


On Wed, Aug 06, 2014 at 06:53:45PM +0100, Konstantin Ananyev wrote:
> Make ACL library to build/work on 'default' architecture:
> - make rte_acl_classify_scalar really scalar
>  (make sure it wouldn't use sse4 instrincts through resolve_priority()).
> - Provide two versions of rte_acl_classify code path:
>   rte_acl_classify_sse() - could be build and used only on systems with sse4.2
>   and upper, return -ENOTSUP on lower arch.
>   rte_acl_classify_scalar() - a slower version, but could be build and used
>   on all systems.
> - rte_acl_classify() - becomes just a macro pointing to one of the functions
>   mentioned abovei (highest avaialbe version at build time).
> - keep code common for both version code.
> 
> Signed-off-by: Konstantin Ananyev <konstantin.ananyev at intel.com>
> ---
>  lib/librte_acl/acl_bld.c           |   5 +-
>  lib/librte_acl/acl_match_check.def |  92 +++++
>  lib/librte_acl/acl_run.c           | 692 ++++---------------------------------
>  lib/librte_acl/acl_run_sse.h       | 629 +++++++++++++++++++++++++++++++++
>  lib/librte_acl/rte_acl.h           |  12 +-
>  5 files changed, 806 insertions(+), 624 deletions(-)
>  create mode 100644 lib/librte_acl/acl_match_check.def
>  create mode 100644 lib/librte_acl/acl_run_sse.h
> 
This is still compile time selected.  You've gone to all the trouble to separate
the scalar and sse vector paths.  Why not make it run time selectable based on
cpu testing?  Just because its built for the default machine doesn't mean it
will run on the default machine.  We may as well take advantage of the faster
paths when we're able.

Neil



More information about the dev mailing list