diff options
| author | Thomas Weißschuh <thomas@t-8ch.de> | 2024-05-27 08:27:48 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2024-07-01 17:16:04 -0400 |
| commit | c5614ee3f2775534871914c02be4b5a61b71ed40 (patch) | |
| tree | 9ff96c778eefdb4f03499bf0ce98e95b0c625032 /include/standard-headers/misc/pvpanic.h | |
| parent | c51dca04281f9be6eacdad8fc8f9c7ddc87dcf3c (diff) | |
| download | focaccia-qemu-c5614ee3f2775534871914c02be4b5a61b71ed40.tar.gz focaccia-qemu-c5614ee3f2775534871914c02be4b5a61b71ed40.zip | |
linux-headers: update to 6.10-rc1
Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de> Message-Id: <20240527-pvpanic-shutdown-v8-2-5a28ec02558b@t-8ch.de> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include/standard-headers/misc/pvpanic.h')
| -rw-r--r-- | include/standard-headers/misc/pvpanic.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/standard-headers/misc/pvpanic.h b/include/standard-headers/misc/pvpanic.h index 54b7485390..b115094431 100644 --- a/include/standard-headers/misc/pvpanic.h +++ b/include/standard-headers/misc/pvpanic.h @@ -3,7 +3,10 @@ #ifndef __PVPANIC_H__ #define __PVPANIC_H__ -#define PVPANIC_PANICKED (1 << 0) -#define PVPANIC_CRASH_LOADED (1 << 1) +#include "standard-headers/linux/const.h" + +#define PVPANIC_PANICKED _BITUL(0) +#define PVPANIC_CRASH_LOADED _BITUL(1) +#define PVPANIC_SHUTDOWN _BITUL(2) #endif /* __PVPANIC_H__ */ |