diff options
author | 2016-11-23 23:47:53 +0100 | |
---|---|---|
committer | 2016-11-24 09:24:05 +0000 | |
commit | f3ebeda1da8b0646af7be6a04696f72572112f90 (patch) | |
tree | 6da47f0c167be9c7c5e3eefb00dfaef9daa6b614 /dpdk/dpdk-16.04_patches/0010-Fix-O0-clang-build.patch | |
parent | e99007b3df4c6dafff044e47a1c417955094b8c2 (diff) |
dpdk: remove old patches
Change-Id: I31244207ca5420558c6ff00b2021126ff5628e08
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'dpdk/dpdk-16.04_patches/0010-Fix-O0-clang-build.patch')
-rw-r--r-- | dpdk/dpdk-16.04_patches/0010-Fix-O0-clang-build.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/dpdk/dpdk-16.04_patches/0010-Fix-O0-clang-build.patch b/dpdk/dpdk-16.04_patches/0010-Fix-O0-clang-build.patch deleted file mode 100644 index 2ce0e7c856b..00000000000 --- a/dpdk/dpdk-16.04_patches/0010-Fix-O0-clang-build.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 2b82c248638bba6e98ecf388c6e0b1f5f0b44028 Mon Sep 17 00:00:00 2001 -From: Damjan Marion <damarion@cisco.com> -Date: Tue, 26 Apr 2016 12:36:52 +0200 -Subject: [PATCH] Fix -O0 clang build - -Signed-off-by: Damjan Marion <damarion@cisco.com> ---- - lib/librte_eal/common/include/arch/x86/rte_rtm.h | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/lib/librte_eal/common/include/arch/x86/rte_rtm.h b/lib/librte_eal/common/include/arch/x86/rte_rtm.h -index d935641..30c1969 100644 ---- a/lib/librte_eal/common/include/arch/x86/rte_rtm.h -+++ b/lib/librte_eal/common/include/arch/x86/rte_rtm.h -@@ -50,11 +50,14 @@ void rte_xend(void) - asm volatile(".byte 0x0f,0x01,0xd5" ::: "memory"); - } - -+#define rte_xabort(x) asm volatile(".byte 0xc6,0xf8,%P0" :: "i" (x) : "memory") -+#if 0 - static __attribute__((__always_inline__)) inline - void rte_xabort(const unsigned int status) - { - asm volatile(".byte 0xc6,0xf8,%P0" :: "i" (status) : "memory"); - } -+#endif - - static __attribute__((__always_inline__)) inline - int rte_xtest(void) --- -2.7.4 - |