diff options
author | Deepak S <deepak.s@linux.intel.com> | 2017-07-21 09:59:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-21 09:59:39 +0000 |
commit | 75d272f80206aa886776a0a30e5547f470ce0d62 (patch) | |
tree | 4e1455ec14a72ac09f164ce8f3a535b46628cce5 /VNFs/vFW/init.c | |
parent | edfede7dab90e412464cf3b0064f29f1a104acc0 (diff) | |
parent | d88705d806228f3b5688d4d9256de6d106d206df (diff) |
Merge "VNFs: Correcting the fdir mode for SWLB and HWLB"
Diffstat (limited to 'VNFs/vFW/init.c')
-rw-r--r-- | VNFs/vFW/init.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/VNFs/vFW/init.c b/VNFs/vFW/init.c index f5d457a4..4e98b335 100644 --- a/VNFs/vFW/init.c +++ b/VNFs/vFW/init.c @@ -730,10 +730,11 @@ app_init_link(struct app_params *app) My_local_conf->rx_adv_conf.rss_conf.rss_key = NULL; My_local_conf->rx_adv_conf.rss_conf.rss_hf = ETH_RSS_IP | ETH_RSS_UDP | ETH_RSS_TCP; - } else {/* disable-rss */ - My_local_conf->rx_adv_conf.rss_conf.rss_hf = 0; /* pkt-filter-mode is perfect */ My_local_conf->fdir_conf.mode = RTE_FDIR_MODE_PERFECT; + } else { + /* disable-rss */ + My_local_conf->rx_adv_conf.rss_conf.rss_hf = 0; } /* Set the hardware CRC stripping to avoid double stripping |