From 7dc1cb33ae76d43d894dd96c2c4435a6a26b963d Mon Sep 17 00:00:00 2001 From: Alexander Potapenko Date: Thu, 23 Oct 2025 16:32:28 +0200 Subject: executor: add include guards to KVM headers Not having these results in three copies of every KVM-related #define in each reproducer. --- executor/common_kvm_amd64.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'executor/common_kvm_amd64.h') diff --git a/executor/common_kvm_amd64.h b/executor/common_kvm_amd64.h index 3c376e017..e4c961962 100644 --- a/executor/common_kvm_amd64.h +++ b/executor/common_kvm_amd64.h @@ -1,6 +1,9 @@ // Copyright 2017 syzkaller project authors. All rights reserved. // Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. +#ifndef EXECUTOR_COMMON_KVM_AMD64_H +#define EXECUTOR_COMMON_KVM_AMD64_H + // This file is shared between executor and csource package. // Implementation of syz_kvm_setup_cpu pseudo-syscall. @@ -1182,3 +1185,5 @@ static long syz_kvm_assert_syzos_uexit(volatile long a0, volatile long a1) return 0; } #endif + +#endif // EXECUTOR_COMMON_KVM_AMD64_H \ No newline at end of file -- cgit mrf-deployment