Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1601761
| From | Michael Davidson <md@google.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 1/2] x86, boot: #undef memcpy etc in string.c |
| Date | 2017-03-15 22:50 +0100 |
| Message-ID | <tloXT-59Y-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
undef memcpy and friends in boot/string.c so that the functions
defined here will have the correct names, otherwise we end up
up trying to redefine __builtin_memcpy etc.
Surprisingly, gcc allows this (and, helpfully, discards the
--builtin_ prefix from the function name when compiling it),
but clang does not.
Adding these #undef's appears to preserve what I assume was
the original intent of the code.
Signed-off-by: Michael Davidson <md@google.com>
---
arch/x86/boot/string.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/arch/x86/boot/string.c b/arch/x86/boot/string.c
index 5457b02fc050..b40266850869 100644
--- a/arch/x86/boot/string.c
+++ b/arch/x86/boot/string.c
@@ -16,6 +16,15 @@
#include "ctype.h"
#include "string.h"
+/*
+ * Undef these macros so that the functions that we provide
+ * here will have the correct names regardless of how string.h
+ * may have chosen to #define them.
+ */
+#undef memcpy
+#undef memset
+#undef memcmp
+
int memcmp(const void *s1, const void *s2, size_t len)
{
bool diff;
--
2.12.0.367.g23dc2f6d3c-goog
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 1/2] x86, boot: #undef memcpy etc in string.c Michael Davidson <md@google.com> - 2017-03-15 22:50 +0100
csiph-web