Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* Copyright (C) 2019 Arm Ltd. */
0003 
0004 #ifndef __ASM_PVCLOCK_ABI_H
0005 #define __ASM_PVCLOCK_ABI_H
0006 
0007 /* The below structure is defined in ARM DEN0057A */
0008 
0009 struct pvclock_vcpu_stolen_time {
0010     __le32 revision;
0011     __le32 attributes;
0012     __le64 stolen_time;
0013     /* Structure must be 64 byte aligned, pad to that size */
0014     u8 padding[48];
0015 } __packed;
0016 
0017 #endif