1 #ifndef _LINUX_LIST_BL_H
2 #define _LINUX_LIST_BL_H
4 #include <linux/list.h>
5 #include <linux/bit_spinlock.h>
8 * Special version of lists, where head of the list has a lock in the lowest
9 * bit. This is useful for scalable hash tables without increasing memory
12 * For modification operations, the 0 bit of hlist_bl_head->first
13 * pointer must be set.
15 * With some small modifications, this can easily be adapted to store several
16 * arbitrary bits (not just a single lock bit), if the need arises to store
17 * some fast and compact auxiliary data.
20 #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
21 #define LIST_BL_LOCKMASK 1UL
23 #define LIST_BL_LOCKMASK 0UL
26 #ifdef CONFIG_DEBUG_LIST
27 #define LIST_BL_BUG_ON(x) BUG_ON(x)
29 #define LIST_BL_BUG_ON(x)
33 struct hlist_bl_head
{
34 struct hlist_bl_node
*first
;
37 struct hlist_bl_node
{
38 struct hlist_bl_node
*next
, **pprev
;
40 #define INIT_HLIST_BL_HEAD(ptr) \
43 static inline void INIT_HLIST_BL_NODE(struct hlist_bl_node
*h
)
49 #define hlist_bl_entry(ptr, type, member) container_of(ptr,type,member)
51 static inline int hlist_bl_unhashed(const struct hlist_bl_node
*h
)
56 static inline struct hlist_bl_node
*hlist_bl_first(struct hlist_bl_head
*h
)
58 return (struct hlist_bl_node
*)
59 ((unsigned long)h
->first
& ~LIST_BL_LOCKMASK
);
62 static inline void hlist_bl_set_first(struct hlist_bl_head
*h
,
63 struct hlist_bl_node
*n
)
65 LIST_BL_BUG_ON((unsigned long)n
& LIST_BL_LOCKMASK
);
66 LIST_BL_BUG_ON(((unsigned long)h
->first
& LIST_BL_LOCKMASK
) !=
68 h
->first
= (struct hlist_bl_node
*)((unsigned long)n
| LIST_BL_LOCKMASK
);
71 static inline int hlist_bl_empty(const struct hlist_bl_head
*h
)
73 return !((unsigned long)h
->first
& ~LIST_BL_LOCKMASK
);
76 static inline void hlist_bl_add_head(struct hlist_bl_node
*n
,
77 struct hlist_bl_head
*h
)
79 struct hlist_bl_node
*first
= hlist_bl_first(h
);
83 first
->pprev
= &n
->next
;
85 hlist_bl_set_first(h
, n
);
88 static inline void __hlist_bl_del(struct hlist_bl_node
*n
)
90 struct hlist_bl_node
*next
= n
->next
;
91 struct hlist_bl_node
**pprev
= n
->pprev
;
93 LIST_BL_BUG_ON((unsigned long)n
& LIST_BL_LOCKMASK
);
95 /* pprev may be `first`, so be careful not to lose the lock bit */
96 *pprev
= (struct hlist_bl_node
*)
97 ((unsigned long)next
|
98 ((unsigned long)*pprev
& LIST_BL_LOCKMASK
));
103 static inline void hlist_bl_del(struct hlist_bl_node
*n
)
106 n
->next
= LIST_POISON1
;
107 n
->pprev
= LIST_POISON2
;
110 static inline void hlist_bl_del_init(struct hlist_bl_node
*n
)
112 if (!hlist_bl_unhashed(n
)) {
114 INIT_HLIST_BL_NODE(n
);
118 static inline void hlist_bl_lock(struct hlist_bl_head
*b
)
120 bit_spin_lock(0, (unsigned long *)b
);
123 static inline void hlist_bl_unlock(struct hlist_bl_head
*b
)
125 __bit_spin_unlock(0, (unsigned long *)b
);
129 * hlist_bl_for_each_entry - iterate over list of given type
130 * @tpos: the type * to use as a loop cursor.
131 * @pos: the &struct hlist_node to use as a loop cursor.
132 * @head: the head for your list.
133 * @member: the name of the hlist_node within the struct.
136 #define hlist_bl_for_each_entry(tpos, pos, head, member) \
137 for (pos = hlist_bl_first(head); \
139 ({ tpos = hlist_bl_entry(pos, typeof(*tpos), member); 1;}); \
143 * hlist_bl_for_each_entry_safe - iterate over list of given type safe against removal of list entry
144 * @tpos: the type * to use as a loop cursor.
145 * @pos: the &struct hlist_node to use as a loop cursor.
146 * @n: another &struct hlist_node to use as temporary storage
147 * @head: the head for your list.
148 * @member: the name of the hlist_node within the struct.
150 #define hlist_bl_for_each_entry_safe(tpos, pos, n, head, member) \
151 for (pos = hlist_bl_first(head); \
152 pos && ({ n = pos->next; 1; }) && \
153 ({ tpos = hlist_bl_entry(pos, typeof(*tpos), member); 1;}); \