mirror of
https://github.com/torvalds/linux.git
synced 2026-03-13 21:26:14 +01:00
No functional change. Reviewed-by: Namhyung Kim <namhyung@kernel.org> Signed-off-by: Ankur Arora <ankur.a.arora@oracle.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Andy Lutomirski <luto@kernel.org> Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Dave Hansen <dave.hansen@linux.intel.com> Cc: David Hildenbrand <david@redhat.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Cc: Mateusz Guzik <mjguzik@gmail.com> Cc: Matthew Wilcox <willy@infradead.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Raghavendra K T <raghavendra.kt@amd.com> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
13 lines
220 B
C
13 lines
220 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifdef HAVE_ARCH_X86_64_SUPPORT
|
|
|
|
#define MEMSET_FN(fn, init, fini, name, desc) \
|
|
void *fn(void *, int, size_t);
|
|
|
|
#include "mem-memset-x86-64-asm-def.h"
|
|
|
|
#undef MEMSET_FN
|
|
|
|
#endif
|
|
|