From 4da013609683aaa6cf1c375c0a2a7dc768d9b865 Mon Sep 17 00:00:00 2001 From: Joyce Kong Date: Wed, 13 Oct 2021 15:48:12 -0500 Subject: [PATCH] stack: remove unneeded atomic header include In stack module, remove the header file rte_atomic.h as it is not being used. Signed-off-by: Joyce Kong Signed-off-by: Dharmik Thakkar Reviewed-by: Ruifeng Wang Acked-by: Olivier Matz --- app/test/test_stack.c | 1 - lib/stack/rte_stack.c | 1 - lib/stack/rte_stack.h | 1 - 3 files changed, 3 deletions(-) diff --git a/app/test/test_stack.c b/app/test/test_stack.c index 00efb38e2a..bc38961433 100644 --- a/app/test/test_stack.c +++ b/app/test/test_stack.c @@ -4,7 +4,6 @@ #include -#include #include #include #include diff --git a/lib/stack/rte_stack.c b/lib/stack/rte_stack.c index 5e56cd9f0c..56bf2c8d6d 100644 --- a/lib/stack/rte_stack.c +++ b/lib/stack/rte_stack.c @@ -6,7 +6,6 @@ #include #include -#include #include #include #include diff --git a/lib/stack/rte_stack.h b/lib/stack/rte_stack.h index 27640f87b2..321f4cec1a 100644 --- a/lib/stack/rte_stack.h +++ b/lib/stack/rte_stack.h @@ -19,7 +19,6 @@ extern "C" { #endif -#include #include #include #include -- 2.20.1