arm: extend pvclock_wall_clock with sec_hi

The hypervisor actually exposes an additional field to struct
pvclock_wall_clock, with the high 32 bit seconds.

Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Reviewed-by: Julien Grall <julien.grall@citrix.com>
This commit is contained in:
Stefano Stabellini 2015-11-23 10:39:12 +00:00 committed by David Vrabel
parent f3d6027ee0
commit ab76078a3d
1 changed files with 1 additions and 0 deletions

View File

@ -78,6 +78,7 @@ struct pvclock_wall_clock {
u32 version;
u32 sec;
u32 nsec;
u32 sec_hi;
} __attribute__((__packed__));
#endif