]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
tools/nolibc: include arch.h from string.h
authorThomas Weißschuh <linux@weissschuh.net>
Thu, 25 Jul 2024 16:54:18 +0000 (18:54 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 4 Oct 2024 14:33:43 +0000 (16:33 +0200)
commitd7e07c2e87d8d9ed2d2f3e434631e24e8ec24dce
treef8ee96d1684f0de21c857fc2dc911cf73d2369d9
parent8d80003cf38aa2c72be79d00689b938e3b8ddc82
tools/nolibc: include arch.h from string.h

commit 6ea2987c9a7b6c5f37d08a3eaa664c9ff7467670 upstream.

string.h tests for the macros NOLIBC_ARCH_HAS_$FUNC to use the
architecture-optimized function variants.
However if string.h is included before arch.h header then that check
does not work, leading to duplicate function definitions.

Fixes: 553845eebd60 ("tools/nolibc: x86-64: Use `rep movsb` for `memcpy()` and `memmove()`")
Fixes: 12108aa8c1a1 ("tools/nolibc: x86-64: Use `rep stosb` for `memset()`")
Cc: stable@vger.kernel.org
Acked-by: Willy Tarreau <w@1wt.eu>
Link: https://lore.kernel.org/r/20240725-arch-has-func-v1-1-5521ed354acd@weissschuh.net
Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
tools/include/nolibc/string.h