mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
19d0070a27
Architectures can have the requirement to add additional architecture specific data to the VDSO data page which needs to be updated independent of the timekeeper updates. To protect these updates vs. concurrent readers and a conflicting update through timekeeping, provide helper functions to make such updates safe. vdso_update_begin() takes the timekeeper_lock to protect against a potential update from timekeeper code and increments the VDSO sequence count to signal data inconsistency to concurrent readers. vdso_update_end() makes the sequence count even again to signal data consistency and drops the timekeeper lock. [ Sven: Add interrupt disable handling to the functions ] Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Sven Schnelle <svens@linux.ibm.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lkml.kernel.org/r/20200804150124.41692-3-svens@linux.ibm.com
14 lines
288 B
C
14 lines
288 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __VDSO_VSYSCALL_H
|
|
#define __VDSO_VSYSCALL_H
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#include <asm/vdso/vsyscall.h>
|
|
|
|
unsigned long vdso_update_begin(void);
|
|
void vdso_update_end(unsigned long flags);
|
|
|
|
#endif /* !__ASSEMBLY__ */
|
|
|
|
#endif /* __VDSO_VSYSCALL_H */
|