dpdk: split PCI blacklist rte_eal args from startup.conf
[vpp.git] / src / plugins / dpdk / device / init.c
index d07acd6..2615f16 100644 (file)
@@ -1258,9 +1258,10 @@ dpdk_config (vlib_main_t * vm, unformat_input_t * input)
        if (unformat
            (input, "blacklist %x:%x:%x.%x", &domain, &bus, &device, &func))
        {
+         tmp = format (0, "-b%c", 0);
+         vec_add1 (conf->eal_init_args, tmp);
          tmp =
-           format (0, "-b %04x:%02x:%02x.%x%c", domain, bus, device, func,
-                   0);
+           format (0, "%04x:%02x:%02x.%x%c", domain, bus, device, func, 0);
          vec_add1 (conf->eal_init_args, tmp);
        }
       else if (unformat (input, "blacklist %x:%x", &vendor, &device))