mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-20 08:42:06 +00:00
Use the kernel's canonical $(ARCH) paths instead of the raw target triple for KVM selftests directories. KVM selftests are quite nearly the only place in the entire kernel that using the target triple for directories, tools/testing/selftests/drivers/s390x being the lone holdout. Using the kernel's preferred nomenclature eliminates the minor, but annoying, friction of having to translate to KVM's selftests directories, e.g. for pattern matching, opening files, running selftests, etc. Opportunsitically delete file comments that reference the full path of the file, as they are obviously prone to becoming stale, and serve no known purpose. Reviewed-by: Muhammad Usama Anjum <usama.anjum@collabora.com> Acked-by: Claudio Imbrenda <imbrenda@linux.ibm.com> Acked-by: Andrew Jones <ajones@ventanamicro.com> Link: https://lore.kernel.org/r/20241128005547.4077116-16-seanjc@google.com Signed-off-by: Sean Christopherson <seanjc@google.com>
14 lines
268 B
C
14 lines
268 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*
|
|
* Test handler for the s390x DIAGNOSE 0x0318 instruction.
|
|
*
|
|
* Copyright (C) 2020, IBM
|
|
*/
|
|
|
|
#ifndef SELFTEST_KVM_DIAG318_TEST_HANDLER
|
|
#define SELFTEST_KVM_DIAG318_TEST_HANDLER
|
|
|
|
uint64_t get_diag318_info(void);
|
|
|
|
#endif
|