xref: /linux/arch/loongarch/include/asm/vdso/vdso.h (revision e78f70bad29c5ae1e1076698b690b15794e9b81e)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Author: Huacai Chen <chenhuacai@loongson.cn>
4  * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
5  */
6 
7 #ifndef _ASM_VDSO_VDSO_H
8 #define _ASM_VDSO_VDSO_H
9 
10 #ifndef __ASSEMBLER__
11 
12 #include <asm/asm.h>
13 #include <asm/page.h>
14 #include <asm/vdso.h>
15 #include <vdso/datapage.h>
16 
17 #define VVAR_SIZE (VDSO_NR_PAGES << PAGE_SHIFT)
18 
19 #endif /* __ASSEMBLER__ */
20 
21 #endif
22