dpdkstat: Enable all ports by default.
authorTaras Chornyi <tarasx.chornyi@intel.com>
Wed, 22 Mar 2017 10:54:31 +0000 (10:54 +0000)
committerTaras Chornyi <tarasx.chornyi@intel.com>
Wed, 22 Mar 2017 10:54:31 +0000 (10:54 +0000)
If "EnabledPortMask" option is not set
all DPDK ports will be monitored.

Signed-off-by: Taras Chornyi <tarasx.chornyi@intel.com>
src/dpdkstat.c

index 6b057f2..cfe993c 100644 (file)
@@ -103,6 +103,8 @@ static void dpdk_stats_default_config(void) {
   for (int i = 0; i < RTE_MAX_ETHPORTS; i++) {
     ec->config.port_name[i][0] = 0;
   }
+  /* Enable all ports by default */
+  ec->config.enabled_port_mask = ~0;
 }
 
 static int dpdk_stats_preinit(void) {