1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __VDSO_HELPERS_H
3 #define __VDSO_HELPERS_H
7 #include <asm/barrier.h>
8 #include <vdso/datapage.h>
10 static __always_inline u32
vdso_read_begin(const struct vdso_data
*vd
)
14 while (unlikely((seq
= READ_ONCE(vd
->seq
)) & 1))
21 static __always_inline u32
vdso_read_retry(const struct vdso_data
*vd
,
27 seq
= READ_ONCE(vd
->seq
);
31 static __always_inline
void vdso_write_begin(struct vdso_data
*vd
)
34 * WRITE_ONCE() is required otherwise the compiler can validly tear
35 * updates to vd[x].seq and it is possible that the value seen by the
36 * reader is inconsistent.
38 WRITE_ONCE(vd
[CS_HRES_COARSE
].seq
, vd
[CS_HRES_COARSE
].seq
+ 1);
39 WRITE_ONCE(vd
[CS_RAW
].seq
, vd
[CS_RAW
].seq
+ 1);
43 static __always_inline
void vdso_write_end(struct vdso_data
*vd
)
47 * WRITE_ONCE() is required otherwise the compiler can validly tear
48 * updates to vd[x].seq and it is possible that the value seen by the
49 * reader is inconsistent.
51 WRITE_ONCE(vd
[CS_HRES_COARSE
].seq
, vd
[CS_HRES_COARSE
].seq
+ 1);
52 WRITE_ONCE(vd
[CS_RAW
].seq
, vd
[CS_RAW
].seq
+ 1);
55 #endif /* !__ASSEMBLY__ */
57 #endif /* __VDSO_HELPERS_H */