From 6528ac9b2288db00117e415c956d867eb546e304 Mon Sep 17 00:00:00 2001 From: Wangjunqi123 Date: Thu, 30 Nov 2023 09:06:57 +0800 Subject: [PATCH] define pollfd --- vmlinux/arm64/vmlinux_601.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/vmlinux/arm64/vmlinux_601.h b/vmlinux/arm64/vmlinux_601.h index 6ca8ab99..66aeab87 100644 --- a/vmlinux/arm64/vmlinux_601.h +++ b/vmlinux/arm64/vmlinux_601.h @@ -3836,3 +3836,29 @@ enum lockdep_wait_type { LD_WAIT_SLEEP = 3, LD_WAIT_MAX = 4, }; + +struct pollfd { + int fd; + short int events; + short int revents; +}; + +typedef void (*smp_call_func_t)(void *); + +typedef u64 pmdval_t; + +typedef struct { + pteval_t pte; +} pte_t; + +typedef struct { + pmdval_t pmd; +} pmd_t; + +typedef struct { + pgd_t pgd; +} p4d_t; + +typedef struct { + p4d_t p4d; +} pud_t; -- Gitee