]> git.droids-corp.org - dpdk.git/commitdiff
ip_frag: clean includes
authorThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 17 Jun 2014 00:31:30 +0000 (02:31 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 17 Jun 2014 00:37:28 +0000 (02:37 +0200)
Add required rte_byteorder in rte_ip_frag.h.
Remove useless includes in *.c files.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
lib/librte_ip_frag/ip_frag_internal.c
lib/librte_ip_frag/rte_ip_frag.h
lib/librte_ip_frag/rte_ip_frag_common.c
lib/librte_ip_frag/rte_ipv4_fragmentation.c
lib/librte_ip_frag/rte_ipv4_reassembly.c
lib/librte_ip_frag/rte_ipv6_fragmentation.c
lib/librte_ip_frag/rte_ipv6_reassembly.c

index 5d3503788b4561193a04e353d4c29b14a8916aa2..cfcab1bd20034314b92c0cd89410835a618a8498 100644 (file)
  */
 
 #include <stddef.h>
-#include <stdint.h>
 
-#include <rte_byteorder.h>
 #include <rte_jhash.h>
 #ifdef RTE_MACHINE_CPUFLAG_SSE4_2
 #include <rte_hash_crc.h>
 #endif /* RTE_MACHINE_CPUFLAG_SSE4_2 */
 
-#include "rte_ip_frag.h"
 #include "ip_frag_common.h"
 
 #define        PRIME_VALUE     0xeaad8405
index 13249d33299746bbae18af7ecc86034c37587731..f1e7036f2f5927be08cfbaefe65803feac2c76f2 100644 (file)
@@ -47,6 +47,7 @@
 #include <rte_malloc.h>
 #include <rte_mbuf.h>
 #include <rte_ip.h>
+#include <rte_byteorder.h>
 
 enum {
        IP_LAST_FRAG_IDX,    /**< index of last fragment */
index acd1864eace112e8094f4614826aa1ffbd45e46c..e4d16d0c2c8c759128eecddd32847dad5797ef5d 100644 (file)
  */
 
 #include <stddef.h>
-#include <stdint.h>
 #include <stdio.h>
 
 #include <rte_memory.h>
 #include <rte_log.h>
-#include <rte_byteorder.h>
 
-#include "rte_ip_frag.h"
 #include "ip_frag_common.h"
 
 #define        IP_FRAG_HASH_FNUM       2
index 7ec20cf522906bafa4201886403891f55f1f3bc2..3ab665f46c3f82cdc0cac2b95216673533bf83f2 100644 (file)
  */
 
 #include <stddef.h>
-#include <stdint.h>
 #include <errno.h>
 
-#include <rte_byteorder.h>
 #include <rte_memcpy.h>
 #include <rte_mempool.h>
 #include <rte_debug.h>
-#include <rte_mbuf.h>
-#include <rte_ip.h>
 
-#include "rte_ip_frag.h"
 #include "ip_frag_common.h"
 
 /* Fragment Offset */
index cc9a9c846455f817d6af69a3165ab7f3ea73f622..cbac413a2ed8a3d2d94268626e1c27d73c432457 100644 (file)
  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-
-
 #include <stddef.h>
-#include <stdint.h>
 
-#include <rte_byteorder.h>
-#include <rte_mbuf.h>
 #include <rte_debug.h>
 #include <rte_tailq.h>
-#include <rte_malloc.h>
-#include <rte_ip.h>
 
-#include "rte_ip_frag.h"
 #include "ip_frag_common.h"
 
 /*
index e8f137cfc5b73a8e8176534615e883a710f9a7e9..6b660c4062f5665e3a9071147ca20d621761863b 100644 (file)
  */
 
 #include <stddef.h>
-#include <stdint.h>
 #include <errno.h>
 
-#include <rte_byteorder.h>
 #include <rte_memcpy.h>
-#include <rte_ip.h>
 
-#include "rte_ip_frag.h"
 #include "ip_frag_common.h"
 
 /**
index c6522508c4126458f907ac6b3f630aca39cded87..1d83c79eec85677b8afe55be5aa649f52a1f69fe 100644 (file)
  */
 
 #include <stddef.h>
-#include <stdint.h>
 
-#include <rte_malloc.h>
 #include <rte_memcpy.h>
-#include <rte_byteorder.h>
-#include <rte_mbuf.h>
-#include <rte_ip.h>
 
-#include "rte_ip_frag.h"
 #include "ip_frag_common.h"
 
 /**