From e120c17a96d3ba9f299e7c9aab2ac1b801d4f2dd Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Tue, 19 Jul 2016 09:46:12 -0700 Subject: [PATCH] examples/nvme/hello_world: specify -n to DPDK The example won't run without specifying the number of memory channels. Change-Id: I278c225ee82181677a6206f73a11df09fd045209 Signed-off-by: Daniel Verkamp --- examples/nvme/hello_world/hello_world.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/nvme/hello_world/hello_world.c b/examples/nvme/hello_world/hello_world.c index 19ba9843a..0a843bec9 100644 --- a/examples/nvme/hello_world/hello_world.c +++ b/examples/nvme/hello_world/hello_world.c @@ -332,6 +332,7 @@ cleanup(void) static char *ealargs[] = { "hello_world", "-c 0x1", + "-n 4", }; int main(int argc, char **argv)