1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
|
/*
* ptrlist.c
*
* (C) Copyright Linus Torvalds 2003-2005
*/
///
// Pointer list manipulation
// -------------------------
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "ptrlist.h"
#include "allocate.h"
#include "compat.h"
__DECLARE_ALLOCATOR(struct ptr_list, ptrlist);
__ALLOCATOR(struct ptr_list, "ptr list", ptrlist);
///
// get the size of a ptrlist
// @head: the head of the list
// @return: the size of the list given by @head.
int ptr_list_size(struct ptr_list *head)
{
int nr = 0;
if (head) {
struct ptr_list *list = head;
do {
nr += list->nr - list->rm;
} while ((list = list->next) != head);
}
return nr;
}
///
// linearize the entries of a list
//
// @head: the list to be linearized
// @arr: a ``void*`` array to fill with @head's entries
// @max: the maximum number of entries to store into @arr
// @return: the number of entries linearized.
//
// Linearize the entries of a list up to a total of @max,
// and return the nr of entries linearized.
//
// The array to linearize into (@arr) should really
// be ``void *x[]``, but we want to let people fill in any kind
// of pointer array, so let's just call it ``void **``.
int linearize_ptr_list(struct ptr_list *head, void **arr, int max)
{
int nr = 0;
if (head && max > 0) {
struct ptr_list *list = head;
do {
int i = list->nr;
if (i > max)
i = max;
memcpy(arr, list->list, i*sizeof(void *));
arr += i;
nr += i;
max -= i;
if (!max)
break;
} while ((list = list->next) != head);
}
return nr;
}
///
// pack a ptrlist
//
// @listp: a pointer to the list to be packed.
//
// When we've walked the list and deleted entries,
// we may need to re-pack it so that we don't have
// any empty blocks left (empty blocks upset the
// walking code).
void pack_ptr_list(struct ptr_list **listp)
{
struct ptr_list *head = *listp;
if (head) {
struct ptr_list *entry = head;
do {
struct ptr_list *next;
restart:
next = entry->next;
if (!entry->nr) {
struct ptr_list *prev;
if (next == entry) {
__free_ptrlist(entry);
*listp = NULL;
return;
}
prev = entry->prev;
prev->next = next;
next->prev = prev;
__free_ptrlist(entry);
if (entry == head) {
*listp = next;
head = next;
entry = next;
goto restart;
}
}
entry = next;
} while (entry != head);
}
}
///
// split a ptrlist block
// @head: the ptrlist block to be splitted
//
// A new block is inserted just after @head and the entries
// at the half end of @head are moved to this new block.
// The goal being to create space inside @head for a new entry.
void split_ptr_list_head(struct ptr_list *head)
{
int old = head->nr, nr = old / 2;
struct ptr_list *newlist = __alloc_ptrlist(0);
struct ptr_list *next = head->next;
old -= nr;
head->nr = old;
newlist->next = next;
next->prev = newlist;
newlist->prev = head;
head->next = newlist;
newlist->nr = nr;
memcpy(newlist->list, head->list + old, nr * sizeof(void *));
memset(head->list + old, 0xf0, nr * sizeof(void *));
}
///
// add an entry to a ptrlist
// @listp: a pointer to the list
// @ptr: the entry to add to the list
// @tag: the tag to add to **ptr**, usually ``0``.
// @return: the address where the new entry is stored.
//
// :note: code must not use this function and should use one of
// :func:`add_ptr_list`, :func:`add_ptr_list_notag` or
// :func:`add_ptr_list_tag` instead.
void **__add_ptr_list(struct ptr_list **listp, void *ptr, unsigned long tag)
{
struct ptr_list *list = *listp;
struct ptr_list *last = NULL; /* gcc complains needlessly */
void **ret;
int nr;
/* The low two bits are reserved for tags */
assert((3 & (unsigned long)ptr) == 0);
assert((~3 & tag) == 0);
ptr = (void *)(tag | (unsigned long)ptr);
if (!list || (nr = (last = list->prev)->nr) >= LIST_NODE_NR) {
struct ptr_list *newlist = __alloc_ptrlist(0);
if (!list) {
newlist->next = newlist;
newlist->prev = newlist;
*listp = newlist;
} else {
newlist->prev = last;
newlist->next = list;
list->prev = newlist;
last->next = newlist;
}
last = newlist;
nr = 0;
}
ret = last->list + nr;
*ret = ptr;
nr++;
last->nr = nr;
return ret;
}
///
// delete an entry from a ptrlist
// @list: a pointer to the list
// @entry: the item to be deleted
// @count: the minimum number of times @entry should be deleted or 0.
int delete_ptr_list_entry(struct ptr_list **list, void *entry, int count)
{
void *ptr;
FOR_EACH_PTR(*list, ptr) {
if (ptr == entry) {
DELETE_CURRENT_PTR(ptr);
if (!--count)
goto out;
}
} END_FOR_EACH_PTR(ptr);
assert(count <= 0);
out:
pack_ptr_list(list);
return count;
}
///
// replace an entry in a ptrlist
// @list: a pointer to the list
// @old_ptr: the entry to be replaced
// @new_ptr: the new entry
// @count: the minimum number of times @entry should be deleted or 0.
int replace_ptr_list_entry(struct ptr_list **list, void *old_ptr,
void *new_ptr, int count)
{
void *ptr;
FOR_EACH_PTR(*list, ptr) {
if (ptr==old_ptr) {
REPLACE_CURRENT_PTR(ptr, new_ptr);
if (!--count)
goto out;
}
}END_FOR_EACH_PTR(ptr);
assert(count <= 0);
out:
return count;
}
///
// remove the last entry but doesn't pack the ptr list
void * undo_ptr_list_last(struct ptr_list **head)
{
struct ptr_list *last, *first = *head;
if (!first)
return NULL;
last = first;
do {
last = last->prev;
if (last->nr) {
void *ptr;
int nr = --last->nr;
ptr = last->list[nr];
last->list[nr] = (void *)0xf1f1f1f1;
return ptr;
}
} while (last != first);
return NULL;
}
///
// remove the last entry and repack the list
void * delete_ptr_list_last(struct ptr_list **head)
{
void *ptr = NULL;
struct ptr_list *last, *first = *head;
if (!first)
return NULL;
last = first->prev;
if (last->nr)
ptr = last->list[--last->nr];
if (last->nr <=0) {
first->prev = last->prev;
last->prev->next = first;
if (last == first)
*head = NULL;
__free_ptrlist(last);
}
return ptr;
}
///
// concat two ptrlists
// @a: the source list
// @b: a pointer to the destination list.
// The element of @a are added at the end of @b.
void concat_ptr_list(struct ptr_list *a, struct ptr_list **b)
{
void *entry;
FOR_EACH_PTR(a, entry) {
add_ptr_list(b, entry);
} END_FOR_EACH_PTR(entry);
}
///
// free a ptrlist
// @listp: a pointer to the list
// Each blocks of the list are freed (but the entries
// themselves are not freed).
//
// :note: code must not use this function and should use
// the macro :func:`free_ptr_list` instead.
void __free_ptr_list(struct ptr_list **listp)
{
struct ptr_list *tmp, *list = *listp;
if (!list)
return;
list->prev->next = NULL;
while (list) {
tmp = list;
list = list->next;
__free_ptrlist(tmp);
}
*listp = NULL;
}
|