From 259143ae06a726f53384614d75d61ac02899b083 Mon Sep 17 00:00:00 2001 From: liqiuyu123 Date: Tue, 28 Nov 2023 13:58:13 +0800 Subject: [PATCH] Pointer to BTF data --- vmlinux/loongarch/vmlinux.h | 39 +++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/vmlinux/loongarch/vmlinux.h b/vmlinux/loongarch/vmlinux.h index 9df537ae..87a83ea0 100644 --- a/vmlinux/loongarch/vmlinux.h +++ b/vmlinux/loongarch/vmlinux.h @@ -446,3 +446,42 @@ struct kernel_param_ops { int (*get)(char *, const struct kernel_param *); void (*free)(void *); }; + +typedef void *fl_owner_t; + +struct file; + +struct kiocb; + +struct iov_iter; + +struct io_comp_batch; + +struct dir_context; + +struct poll_table_struct; + +struct vm_area_struct; + +struct inode; + +struct file_lock; + +struct page; + +struct pipe_inode_info; + +struct seq_file; + +struct io_uring_cmd; + +struct static_call_key { + void *func; +}; + +struct bug_entry { + int bug_addr_disp; + int file_disp; + short unsigned int line; + short unsigned int flags; +}; -- Gitee