diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2024-06-03 14:16:55 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-06-05 11:01:05 +0200 |
| commit | b8116f4cbaa0f64bb07564f20b3b5219e23c8bff (patch) | |
| tree | acd761e49a8fd348708ecc1f99a9b0a4094c9fc9 /include/standard-headers/misc/pvpanic.h | |
| parent | ef7c70f020ca1fe9e7c98ea2cd9d6ba3c5714716 (diff) | |
| download | focaccia-qemu-b8116f4cbaa0f64bb07564f20b3b5219e23c8bff.tar.gz focaccia-qemu-b8116f4cbaa0f64bb07564f20b3b5219e23c8bff.zip | |
update-linux-headers: move pvpanic.h to correct directory
Linux has <misc/pvpanic.h>, not <linux/pvpanic.h>. Use the same directory for QEMU's include/standard-headers/ copy. Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/standard-headers/misc/pvpanic.h')
| -rw-r--r-- | include/standard-headers/misc/pvpanic.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/standard-headers/misc/pvpanic.h b/include/standard-headers/misc/pvpanic.h new file mode 100644 index 0000000000..54b7485390 --- /dev/null +++ b/include/standard-headers/misc/pvpanic.h @@ -0,0 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ + +#ifndef __PVPANIC_H__ +#define __PVPANIC_H__ + +#define PVPANIC_PANICKED (1 << 0) +#define PVPANIC_CRASH_LOADED (1 << 1) + +#endif /* __PVPANIC_H__ */ |