aboutsummaryrefslogtreecommitdiffstats
path: root/executor
diff options
context:
space:
mode:
Diffstat (limited to 'executor')
-rw-r--r--executor/common_kvm_amd64_syzos.h5
-rw-r--r--executor/common_kvm_arm64_syzos.h5
2 files changed, 6 insertions, 4 deletions
diff --git a/executor/common_kvm_amd64_syzos.h b/executor/common_kvm_amd64_syzos.h
index 897f3ef8c..9de54655f 100644
--- a/executor/common_kvm_amd64_syzos.h
+++ b/executor/common_kvm_amd64_syzos.h
@@ -6,11 +6,12 @@
// This file provides guest code running inside the AMD64 KVM.
-#include "common_kvm_syzos.h"
-#include "kvm.h"
#include <linux/kvm.h>
#include <stdbool.h>
+#include "common_kvm_syzos.h"
+#include "kvm.h"
+
// There are no particular rules to assign numbers here, but changing them will
// result in losing some existing reproducers. Therefore, we try to leave spaces
// between unrelated IDs.
diff --git a/executor/common_kvm_arm64_syzos.h b/executor/common_kvm_arm64_syzos.h
index 5b50368dd..ae4f0530d 100644
--- a/executor/common_kvm_arm64_syzos.h
+++ b/executor/common_kvm_arm64_syzos.h
@@ -6,11 +6,12 @@
// This file provides guest code running inside the ARM64 KVM.
-#include "common_kvm_syzos.h"
-#include "kvm.h"
#include <linux/kvm.h>
#include <stdbool.h>
+#include "common_kvm_syzos.h"
+#include "kvm.h"
+
// Compilers will eagerly try to transform the switch statement in guest_main()
// into a jump table, unless the cases are sparse enough.
// We use prime numbers multiplied by 10 to prevent this behavior.