Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Adapted from arm64 version.
0004  *
0005  * Copyright (C) 2012 ARM Limited
0006  */
0007 #ifndef __ASM_VDSO_DATAPAGE_H
0008 #define __ASM_VDSO_DATAPAGE_H
0009 
0010 #ifdef __KERNEL__
0011 
0012 #ifndef __ASSEMBLY__
0013 
0014 #include <vdso/datapage.h>
0015 #include <asm/page.h>
0016 
0017 union vdso_data_store {
0018     struct vdso_data    data[CS_BASES];
0019     u8          page[PAGE_SIZE];
0020 };
0021 
0022 #endif /* !__ASSEMBLY__ */
0023 
0024 #endif /* __KERNEL__ */
0025 
0026 #endif /* __ASM_VDSO_DATAPAGE_H */