From ec86d64fc90e3e4813e9f259756885ae9a128ec2 Mon Sep 17 00:00:00 2001 From: Wangjunqi123 Date: Mon, 27 Nov 2023 15:59:28 +0800 Subject: [PATCH] define hlist_bl_node --- vmlinux/arm64/vmlinux_601.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/vmlinux/arm64/vmlinux_601.h b/vmlinux/arm64/vmlinux_601.h index 2c48558d..a27bbe97 100644 --- a/vmlinux/arm64/vmlinux_601.h +++ b/vmlinux/arm64/vmlinux_601.h @@ -2882,3 +2882,30 @@ struct hlist_bl_node; struct hlist_bl_head { struct hlist_bl_node *first; }; + +struct hlist_bl_node { + struct hlist_bl_node *next; + struct hlist_bl_node **pprev; +}; + +struct lockref { + union { + struct { + spinlock_t lock; + int count; + }; + }; +}; + +struct qstr { + union { + struct { + u32 hash; + u32 len; + }; + u64 hash_len; + }; + const unsigned char *name; +}; + +struct dentry_operations; -- Gitee