]> git.droids-corp.org - dpdk.git/commitdiff
examples/load_balancer: fix build for less lcores
authorHemant Agrawal <hemant.agrawal@nxp.com>
Wed, 19 Jul 2017 08:19:35 +0000 (13:49 +0530)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 21 Jul 2017 14:36:20 +0000 (17:36 +0300)
load_balancer app can also work for lower number of cores.
Limit the cores Worker and IO cores to 16 as defined in original
App. Otherwise use the actual number of lcores as MAX.

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
examples/load_balancer/main.h

index d98468a7c0df3e58f480e4d586feb07220136e5a..dc407555d7be36246c9123ff66d86dd511c17f5b 100644 (file)
 #endif
 
 #ifndef APP_MAX_IO_LCORES
+#if (APP_MAX_LCORES > 16)
 #define APP_MAX_IO_LCORES 16
+#else
+#define APP_MAX_IO_LCORES APP_MAX_LCORES
+#endif
 #endif
 #if (APP_MAX_IO_LCORES > APP_MAX_LCORES)
 #error "APP_MAX_IO_LCORES is too big"
 #endif
 
 #ifndef APP_MAX_WORKER_LCORES
+#if (APP_MAX_LCORES > 16)
 #define APP_MAX_WORKER_LCORES 16
+#else
+#define APP_MAX_WORKER_LCORES APP_MAX_LCORES
+#endif
 #endif
 #if (APP_MAX_WORKER_LCORES > APP_MAX_LCORES)
 #error "APP_MAX_WORKER_LCORES is too big"