mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
7f02ce62a6
This is to get the changes from:68674f94ff
("x86: don't use REP_GOOD or ERMS for small memory copies")20f3337d35
("x86: don't use REP_GOOD or ERMS for small memory clearing") This also make the 'perf bench mem' files stop referring to the erms versions that gone away with the above patches. That addresses these perf tools build warning: Warning: Kernel ABI header at 'tools/arch/x86/lib/memcpy_64.S' differs from latest version at 'arch/x86/lib/memcpy_64.S' diff -u tools/arch/x86/lib/memcpy_64.S arch/x86/lib/memcpy_64.S Warning: Kernel ABI header at 'tools/arch/x86/lib/memset_64.S' differs from latest version at 'arch/x86/lib/memset_64.S' diff -u tools/arch/x86/lib/memset_64.S arch/x86/lib/memset_64.S Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
10 lines
224 B
C
10 lines
224 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _TOOLS_ASM_ALTERNATIVE_ASM_H
|
|
#define _TOOLS_ASM_ALTERNATIVE_ASM_H
|
|
|
|
/* Just disable it so we can build arch/x86/lib/memcpy_64.S for perf bench: */
|
|
|
|
#define ALTERNATIVE #
|
|
|
|
#endif
|