From: Guruprasad Rao Date: Fri, 23 Sep 2016 13:54:50 +0000 (-0700) Subject: app/test-pipeline: fix table hash LRU initialization X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=fcbddedc531997b66c78fea478b2b7f56683a0f2;p=dpdk.git app/test-pipeline: fix table hash LRU initialization macro ‘APP_METADATA_OFFSET’ was not used to initialize ‘signature_offset’ and ‘key_offset’ part of struct rte_table_hash_lru_params. Instead integer offset values were directly used. with this fix 'hash-8-lru', 'hash-16-lru', 'hash-32-lru' table types are able to forward traffic as expected. Fixes: 48f31ca50cc4 ("app/pipeline: packet framework benchmark") Signed-off-by: Sankar Chokkalingam Signed-off-by: Guruprasad Rao Acked-by: Cristian Dumitrescu --- diff --git a/app/test-pipeline/pipeline_hash.c b/app/test-pipeline/pipeline_hash.c index f8aac0d818..0e369a2327 100644 --- a/app/test-pipeline/pipeline_hash.c +++ b/app/test-pipeline/pipeline_hash.c @@ -190,8 +190,8 @@ app_main_loop_worker_pipeline_hash(void) { .n_buckets = 1 << 22, .f_hash = test_hash, .seed = 0, - .signature_offset = 0, - .key_offset = 32, + .signature_offset = APP_METADATA_OFFSET(0), + .key_offset = APP_METADATA_OFFSET(32), }; struct rte_pipeline_table_params table_params = {