mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-01 12:00:18 +07:00
x86: pvclock: Add flag to indicate that a vm was stopped by the host
This flag will be used to check if the vm was stopped by the host when a soft lockup was detected. The host will set the flag when it stops the guest. On resume, the guest will check this flag if a soft lockup is detected and skip issuing the warning. Signed-off-by: Eric B Munson <emunson@mgebm.net> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
2246f8b563
commit
eae3ee7d8a
@ -40,5 +40,6 @@ struct pvclock_wall_clock {
|
|||||||
} __attribute__((__packed__));
|
} __attribute__((__packed__));
|
||||||
|
|
||||||
#define PVCLOCK_TSC_STABLE_BIT (1 << 0)
|
#define PVCLOCK_TSC_STABLE_BIT (1 << 0)
|
||||||
|
#define PVCLOCK_GUEST_STOPPED (1 << 1)
|
||||||
#endif /* __ASSEMBLY__ */
|
#endif /* __ASSEMBLY__ */
|
||||||
#endif /* _ASM_X86_PVCLOCK_ABI_H */
|
#endif /* _ASM_X86_PVCLOCK_ABI_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user