]> git.droids-corp.org - dpdk.git/commitdiff
eal: remove useless internal function from memcpy headers
authorThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 19 Apr 2016 20:38:31 +0000 (22:38 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 27 Apr 2016 15:41:46 +0000 (17:41 +0200)
The function rte_memcpy_func() is used in ARM and PPC implementations
of rte_memcpy().
There are some useless copies in Tile and some ARM branches.
It was also declared without doxygen comment in the generic header.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: David Marchand <david.marchand@6wind.com>
lib/librte_eal/common/include/arch/arm/rte_memcpy_32.h
lib/librte_eal/common/include/arch/arm/rte_memcpy_64.h
lib/librte_eal/common/include/arch/tile/rte_memcpy.h
lib/librte_eal/common/include/generic/rte_memcpy.h

index 988125b347a3a0e9560a1d7f1eb460a4cc89c00f..da6c233a31e663a7787b70f56086fd138a8278aa 100644 (file)
@@ -323,12 +323,6 @@ rte_memcpy(void *dst, const void *src, size_t n)
        return memcpy(dst, src, n);
 }
 
-static inline void *
-rte_memcpy_func(void *dst, const void *src, size_t n)
-{
-       return memcpy(dst, src, n);
-}
-
 #endif /* RTE_ARCH_ARM_NEON_MEMCPY */
 
 #ifdef __cplusplus
index 917cdc1b9204f39f56b7a274c8759b9a48769e76..5db66b63dccf63874d4f1faaa4c585e2a92cb8f2 100644 (file)
@@ -80,12 +80,6 @@ rte_mov256(uint8_t *dst, const uint8_t *src)
 
 #define rte_memcpy(d, s, n)    memcpy((d), (s), (n))
 
-static inline void *
-rte_memcpy_func(void *dst, const void *src, size_t n)
-{
-       return memcpy(dst, src, n);
-}
-
 #ifdef __cplusplus
 }
 #endif
index 9b5b37ef4d43892281a0ae4b422d153240827b5a..e606957ccd83483412f52b6e2f1723d558ef266f 100644 (file)
@@ -80,12 +80,6 @@ rte_mov256(uint8_t *dst, const uint8_t *src)
 
 #define rte_memcpy(d, s, n)    memcpy((d), (s), (n))
 
-static inline void *
-rte_memcpy_func(void *dst, const void *src, size_t n)
-{
-       return memcpy(dst, src, n);
-}
-
 #ifdef __cplusplus
 }
 #endif
index 03e8477383aac46ab6986731da3ecff36438ba53..afb0afe4373ceb7d75bdbaf5ac1599848b67fd77 100644 (file)
@@ -134,11 +134,4 @@ rte_memcpy(void *dst, const void *src, size_t n);
 
 #endif /* __DOXYGEN__ */
 
-/*
- * memcpy() function used by rte_memcpy macro
- */
-static inline void *
-rte_memcpy_func(void *dst, const void *src, size_t n) __attribute__((always_inline));
-
-
 #endif /* _RTE_MEMCPY_H_ */