examples/vhost: remove unnecessary constant
authorRami Rosen <ramirose@gmail.com>
Sat, 25 Aug 2018 19:22:40 +0000 (22:22 +0300)
committerFerruh Yigit <ferruh.yigit@intel.com>
Wed, 12 Sep 2018 17:10:09 +0000 (19:10 +0200)
This patch removes an unnecessary definition of MAX_PRINT_BUFF
in examples/vhost/main.c, since it is no longer being used.

Fixes: 68363d85857d ("examples/vhost: remove the non-working zero copy code")
Cc: stable@dpdk.org
Signed-off-by: Rami Rosen <ramirose@gmail.com>
Reviewed-by: Tiwei Bie <tiwei.bie@intel.com>
examples/vhost/main.c

index 2175c11..5d28d03 100644 (file)
@@ -58,9 +58,6 @@
 /* Max number of devices. Limited by vmdq. */
 #define MAX_DEVICES 64
 
-/* Size of buffers used for snprintfs. */
-#define MAX_PRINT_BUFF 6072
-
 /* Maximum long option length for option parsing. */
 #define MAX_LONG_OPT_SZ 64