pvclock-abi.h 374 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* Copyright (C) 2019 Arm Ltd. */
  3. #ifndef __ASM_PVCLOCK_ABI_H
  4. #define __ASM_PVCLOCK_ABI_H
  5. /* The below structure is defined in ARM DEN0057A */
  6. struct pvclock_vcpu_stolen_time {
  7. __le32 revision;
  8. __le32 attributes;
  9. __le64 stolen_time;
  10. /* Structure must be 64 byte aligned, pad to that size */
  11. u8 padding[48];
  12. } __packed;
  13. #endif