mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH RESEND] x86/boot: #undef memcpy etc in string.c
@ 2017-07-24 23:51 Matthias Kaehlcke
  2017-07-25 13:47 ` [tip:x86/urgent] x86/boot: #undef memcpy() et al " tip-bot for Michael Davidson
  0 siblings, 1 reply; 2+ messages in thread
From: Matthias Kaehlcke @ 2017-07-24 23:51 UTC (permalink / raw)
  To: Ingo Molnar, H . Peter Anvin, Thomas Gleixner, Michael Davidson
  Cc: x86, linux-kernel, Greg Hackmann, Nick Desaulniers, Kees Cook,
	Arnd Bergmann, Bernhard.Rosenkranzer, Matthias Kaehlcke

From: Michael Davidson <md@google.com>

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>
Acked-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
---
Original post: https://lkml.org/lkml/2017/3/16/1035

 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 630e3664906b..16f49123d747 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.14.0.rc0.284.gd933b75aa4-goog

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-07-25 13:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-24 23:51 [PATCH RESEND] x86/boot: #undef memcpy etc in string.c Matthias Kaehlcke
2017-07-25 13:47 ` [tip:x86/urgent] x86/boot: #undef memcpy() et al " tip-bot for Michael Davidson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome