mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-07-04 00:03:25 -04:00
As suggested by John, export time data similarly to how its done by vsyscall support. This allows KVM to retrieve necessary information to implement vsyscall support in KVM guests. Acked-by: John Stultz <johnstul@us.ibm.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
9 lines
250 B
C
9 lines
250 B
C
#ifndef _PVCLOCK_GTOD_H
|
|
#define _PVCLOCK_GTOD_H
|
|
|
|
#include <linux/notifier.h>
|
|
|
|
extern int pvclock_gtod_register_notifier(struct notifier_block *nb);
|
|
extern int pvclock_gtod_unregister_notifier(struct notifier_block *nb);
|
|
|
|
#endif /* _PVCLOCK_GTOD_H */
|