examples/tep_term: remove MAX_PRINT_BUFF

Message ID 1547391732-6215-1-git-send-email-ramirose@gmail.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series examples/tep_term: remove MAX_PRINT_BUFF |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK
ci/mellanox-Performance-Testing success Performance Testing PASS
ci/intel-Performance-Testing success Performance Testing PASS

Commit Message

Rami Rosen Jan. 13, 2019, 3:02 p.m. UTC
  The  definition of MAX_PRINT_BUFF in examples/tep_termination/main.c
is not necessary as it is not used. This cleanup patch removes it.

Fixes: a50245ede72a ("examples/tep_term: initialize VXLAN sample")
Cc: stable@dpdk.org 

Signed-off-by: Rami Rosen <ramirose@gmail.com>
---
 examples/tep_termination/main.c | 3 ---
 1 file changed, 3 deletions(-)
  

Comments

Thomas Monjalon Jan. 15, 2019, 12:35 a.m. UTC | #1
13/01/2019 16:02, Rami Rosen:
> The  definition of MAX_PRINT_BUFF in examples/tep_termination/main.c
> is not necessary as it is not used. This cleanup patch removes it.
> 
> Fixes: a50245ede72a ("examples/tep_term: initialize VXLAN sample")
> Cc: stable@dpdk.org 
> 
> Signed-off-by: Rami Rosen <ramirose@gmail.com>

Applied, thanks
  

Patch

diff --git a/examples/tep_termination/main.c b/examples/tep_termination/main.c
index 7795d08..d6379e3 100644
--- a/examples/tep_termination/main.c
+++ b/examples/tep_termination/main.c
@@ -71,9 +71,6 @@ 
 
 #define INVALID_PORT_ID 0xFFFF
 
-/* Size of buffers used for snprintfs. */
-#define MAX_PRINT_BUFF 6072
-
 /* Maximum character device basename size. */
 #define MAX_BASENAME_SZ 20