~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/radix-tree/test.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/testing/radix-tree/test.c (Architecture sparc) and /tools/testing/radix-tree/test.c (Architecture m68k)


  1 // SPDX-License-Identifier: GPL-2.0                 1 // SPDX-License-Identifier: GPL-2.0
  2 #include <stdlib.h>                                 2 #include <stdlib.h>
  3 #include <assert.h>                                 3 #include <assert.h>
  4 #include <stdio.h>                                  4 #include <stdio.h>
  5 #include <linux/types.h>                            5 #include <linux/types.h>
  6 #include <linux/kernel.h>                           6 #include <linux/kernel.h>
  7 #include <linux/bitops.h>                           7 #include <linux/bitops.h>
  8                                                     8 
  9 #include "test.h"                                   9 #include "test.h"
 10                                                    10 
 11 struct item *                                      11 struct item *
 12 item_tag_set(struct radix_tree_root *root, uns     12 item_tag_set(struct radix_tree_root *root, unsigned long index, int tag)
 13 {                                                  13 {
 14         return radix_tree_tag_set(root, index,     14         return radix_tree_tag_set(root, index, tag);
 15 }                                                  15 }
 16                                                    16 
 17 struct item *                                      17 struct item *
 18 item_tag_clear(struct radix_tree_root *root, u     18 item_tag_clear(struct radix_tree_root *root, unsigned long index, int tag)
 19 {                                                  19 {
 20         return radix_tree_tag_clear(root, inde     20         return radix_tree_tag_clear(root, index, tag);
 21 }                                                  21 }
 22                                                    22 
 23 int item_tag_get(struct radix_tree_root *root,     23 int item_tag_get(struct radix_tree_root *root, unsigned long index, int tag)
 24 {                                                  24 {
 25         return radix_tree_tag_get(root, index,     25         return radix_tree_tag_get(root, index, tag);
 26 }                                                  26 }
 27                                                    27 
 28 struct item *item_create(unsigned long index,      28 struct item *item_create(unsigned long index, unsigned int order)
 29 {                                                  29 {
 30         struct item *ret = malloc(sizeof(*ret)     30         struct item *ret = malloc(sizeof(*ret));
 31                                                    31 
 32         ret->index = index;                        32         ret->index = index;
 33         ret->order = order;                        33         ret->order = order;
 34         return ret;                                34         return ret;
 35 }                                                  35 }
 36                                                    36 
 37 int item_insert(struct radix_tree_root *root,      37 int item_insert(struct radix_tree_root *root, unsigned long index)
 38 {                                                  38 {
 39         struct item *item = item_create(index,     39         struct item *item = item_create(index, 0);
 40         int err = radix_tree_insert(root, item     40         int err = radix_tree_insert(root, item->index, item);
 41         if (err)                                   41         if (err)
 42                 free(item);                        42                 free(item);
 43         return err;                                43         return err;
 44 }                                                  44 }
 45                                                    45 
 46 void item_sanity(struct item *item, unsigned l     46 void item_sanity(struct item *item, unsigned long index)
 47 {                                                  47 {
 48         unsigned long mask;                        48         unsigned long mask;
 49         assert(!radix_tree_is_internal_node(it     49         assert(!radix_tree_is_internal_node(item));
 50         assert(item->order < BITS_PER_LONG);       50         assert(item->order < BITS_PER_LONG);
 51         mask = (1UL << item->order) - 1;           51         mask = (1UL << item->order) - 1;
 52         assert((item->index | mask) == (index      52         assert((item->index | mask) == (index | mask));
 53 }                                                  53 }
 54                                                    54 
 55 void item_free(struct item *item, unsigned lon     55 void item_free(struct item *item, unsigned long index)
 56 {                                                  56 {
 57         item_sanity(item, index);                  57         item_sanity(item, index);
 58         free(item);                                58         free(item);
 59 }                                                  59 }
 60                                                    60 
 61 int item_delete(struct radix_tree_root *root,      61 int item_delete(struct radix_tree_root *root, unsigned long index)
 62 {                                                  62 {
 63         struct item *item = radix_tree_delete(     63         struct item *item = radix_tree_delete(root, index);
 64                                                    64 
 65         if (!item)                                 65         if (!item)
 66                 return 0;                          66                 return 0;
 67                                                    67 
 68         item_free(item, index);                    68         item_free(item, index);
 69         return 1;                                  69         return 1;
 70 }                                                  70 }
 71                                                    71 
 72 static void item_free_rcu(struct rcu_head *hea     72 static void item_free_rcu(struct rcu_head *head)
 73 {                                                  73 {
 74         struct item *item = container_of(head,     74         struct item *item = container_of(head, struct item, rcu_head);
 75                                                    75 
 76         free(item);                                76         free(item);
 77 }                                                  77 }
 78                                                    78 
 79 int item_delete_rcu(struct xarray *xa, unsigne     79 int item_delete_rcu(struct xarray *xa, unsigned long index)
 80 {                                                  80 {
 81         struct item *item = xa_erase(xa, index     81         struct item *item = xa_erase(xa, index);
 82                                                    82 
 83         if (item) {                                83         if (item) {
 84                 item_sanity(item, index);          84                 item_sanity(item, index);
 85                 call_rcu(&item->rcu_head, item     85                 call_rcu(&item->rcu_head, item_free_rcu);
 86                 return 1;                          86                 return 1;
 87         }                                          87         }
 88         return 0;                                  88         return 0;
 89 }                                                  89 }
 90                                                    90 
 91 void item_check_present(struct radix_tree_root     91 void item_check_present(struct radix_tree_root *root, unsigned long index)
 92 {                                                  92 {
 93         struct item *item;                         93         struct item *item;
 94                                                    94 
 95         item = radix_tree_lookup(root, index);     95         item = radix_tree_lookup(root, index);
 96         assert(item != NULL);                      96         assert(item != NULL);
 97         item_sanity(item, index);                  97         item_sanity(item, index);
 98 }                                                  98 }
 99                                                    99 
100 struct item *item_lookup(struct radix_tree_roo    100 struct item *item_lookup(struct radix_tree_root *root, unsigned long index)
101 {                                                 101 {
102         return radix_tree_lookup(root, index);    102         return radix_tree_lookup(root, index);
103 }                                                 103 }
104                                                   104 
105 void item_check_absent(struct radix_tree_root     105 void item_check_absent(struct radix_tree_root *root, unsigned long index)
106 {                                                 106 {
107         struct item *item;                        107         struct item *item;
108                                                   108 
109         item = radix_tree_lookup(root, index);    109         item = radix_tree_lookup(root, index);
110         assert(item == NULL);                     110         assert(item == NULL);
111 }                                                 111 }
112                                                   112 
113 /*                                                113 /*
114  * Scan only the passed (start, start+nr] for     114  * Scan only the passed (start, start+nr] for present items
115  */                                               115  */
116 void item_gang_check_present(struct radix_tree    116 void item_gang_check_present(struct radix_tree_root *root,
117                         unsigned long start, u    117                         unsigned long start, unsigned long nr,
118                         int chunk, int hop)       118                         int chunk, int hop)
119 {                                                 119 {
120         struct item *items[chunk];                120         struct item *items[chunk];
121         unsigned long into;                       121         unsigned long into;
122                                                   122 
123         for (into = 0; into < nr; ) {             123         for (into = 0; into < nr; ) {
124                 int nfound;                       124                 int nfound;
125                 int nr_to_find = chunk;           125                 int nr_to_find = chunk;
126                 int i;                            126                 int i;
127                                                   127 
128                 if (nr_to_find > (nr - into))     128                 if (nr_to_find > (nr - into))
129                         nr_to_find = nr - into    129                         nr_to_find = nr - into;
130                                                   130 
131                 nfound = radix_tree_gang_looku    131                 nfound = radix_tree_gang_lookup(root, (void **)items,
132                                                   132                                                 start + into, nr_to_find);
133                 assert(nfound == nr_to_find);     133                 assert(nfound == nr_to_find);
134                 for (i = 0; i < nfound; i++)      134                 for (i = 0; i < nfound; i++)
135                         assert(items[i]->index    135                         assert(items[i]->index == start + into + i);
136                 into += hop;                      136                 into += hop;
137         }                                         137         }
138 }                                                 138 }
139                                                   139 
140 /*                                                140 /*
141  * Scan the entire tree, only expecting presen    141  * Scan the entire tree, only expecting present items (start, start+nr]
142  */                                               142  */
143 void item_full_scan(struct radix_tree_root *ro    143 void item_full_scan(struct radix_tree_root *root, unsigned long start,
144                         unsigned long nr, int     144                         unsigned long nr, int chunk)
145 {                                                 145 {
146         struct item *items[chunk];                146         struct item *items[chunk];
147         unsigned long into = 0;                   147         unsigned long into = 0;
148         unsigned long this_index = start;         148         unsigned long this_index = start;
149         int nfound;                               149         int nfound;
150         int i;                                    150         int i;
151                                                   151 
152 //      printf("%s(0x%08lx, 0x%08lx, %d)\n", _    152 //      printf("%s(0x%08lx, 0x%08lx, %d)\n", __FUNCTION__, start, nr, chunk);
153                                                   153 
154         while ((nfound = radix_tree_gang_looku    154         while ((nfound = radix_tree_gang_lookup(root, (void **)items, into,
155                                         chunk)    155                                         chunk))) {
156 //              printf("At 0x%08lx, nfound=%d\    156 //              printf("At 0x%08lx, nfound=%d\n", into, nfound);
157                 for (i = 0; i < nfound; i++) {    157                 for (i = 0; i < nfound; i++) {
158                         assert(items[i]->index    158                         assert(items[i]->index == this_index);
159                         this_index++;             159                         this_index++;
160                 }                                 160                 }
161 //              printf("Found 0x%08lx->0x%08lx    161 //              printf("Found 0x%08lx->0x%08lx\n",
162 //                      items[0]->index, items    162 //                      items[0]->index, items[nfound-1]->index);
163                 into = this_index;                163                 into = this_index;
164         }                                         164         }
165         if (chunk)                                165         if (chunk)
166                 assert(this_index == start + n    166                 assert(this_index == start + nr);
167         nfound = radix_tree_gang_lookup(root,     167         nfound = radix_tree_gang_lookup(root, (void **)items,
168                                         this_i    168                                         this_index, chunk);
169         assert(nfound == 0);                      169         assert(nfound == 0);
170 }                                                 170 }
171                                                   171 
172 /* Use the same pattern as tag_pages_for_write    172 /* Use the same pattern as tag_pages_for_writeback() in mm/page-writeback.c */
173 int tag_tagged_items(struct xarray *xa, unsign    173 int tag_tagged_items(struct xarray *xa, unsigned long start, unsigned long end,
174                 unsigned batch, xa_mark_t ifta    174                 unsigned batch, xa_mark_t iftag, xa_mark_t thentag)
175 {                                                 175 {
176         XA_STATE(xas, xa, start);                 176         XA_STATE(xas, xa, start);
177         unsigned int tagged = 0;                  177         unsigned int tagged = 0;
178         struct item *item;                        178         struct item *item;
179                                                   179 
180         if (batch == 0)                           180         if (batch == 0)
181                 batch = 1;                        181                 batch = 1;
182                                                   182 
183         xas_lock_irq(&xas);                       183         xas_lock_irq(&xas);
184         xas_for_each_marked(&xas, item, end, i    184         xas_for_each_marked(&xas, item, end, iftag) {
185                 xas_set_mark(&xas, thentag);      185                 xas_set_mark(&xas, thentag);
186                 if (++tagged % batch)             186                 if (++tagged % batch)
187                         continue;                 187                         continue;
188                                                   188 
189                 xas_pause(&xas);                  189                 xas_pause(&xas);
190                 xas_unlock_irq(&xas);             190                 xas_unlock_irq(&xas);
191                 rcu_barrier();                    191                 rcu_barrier();
192                 xas_lock_irq(&xas);               192                 xas_lock_irq(&xas);
193         }                                         193         }
194         xas_unlock_irq(&xas);                     194         xas_unlock_irq(&xas);
195                                                   195 
196         return tagged;                            196         return tagged;
197 }                                                 197 }
198                                                   198 
199 static int verify_node(struct radix_tree_node     199 static int verify_node(struct radix_tree_node *slot, unsigned int tag,
200                         int tagged)               200                         int tagged)
201 {                                                 201 {
202         int anyset = 0;                           202         int anyset = 0;
203         int i;                                    203         int i;
204         int j;                                    204         int j;
205                                                   205 
206         slot = entry_to_node(slot);               206         slot = entry_to_node(slot);
207                                                   207 
208         /* Verify consistency at this level */    208         /* Verify consistency at this level */
209         for (i = 0; i < RADIX_TREE_TAG_LONGS;     209         for (i = 0; i < RADIX_TREE_TAG_LONGS; i++) {
210                 if (slot->tags[tag][i]) {         210                 if (slot->tags[tag][i]) {
211                         anyset = 1;               211                         anyset = 1;
212                         break;                    212                         break;
213                 }                                 213                 }
214         }                                         214         }
215         if (tagged != anyset) {                   215         if (tagged != anyset) {
216                 printf("tag: %u, shift %u, tag    216                 printf("tag: %u, shift %u, tagged: %d, anyset: %d\n",
217                         tag, slot->shift, tagg    217                         tag, slot->shift, tagged, anyset);
218                 for (j = 0; j < RADIX_TREE_MAX    218                 for (j = 0; j < RADIX_TREE_MAX_TAGS; j++) {
219                         printf("tag %d: ", j);    219                         printf("tag %d: ", j);
220                         for (i = 0; i < RADIX_    220                         for (i = 0; i < RADIX_TREE_TAG_LONGS; i++)
221                                 printf("%016lx    221                                 printf("%016lx ", slot->tags[j][i]);
222                         printf("\n");             222                         printf("\n");
223                 }                                 223                 }
224                 return 1;                         224                 return 1;
225         }                                         225         }
226         assert(tagged == anyset);                 226         assert(tagged == anyset);
227                                                   227 
228         /* Go for next level */                   228         /* Go for next level */
229         if (slot->shift > 0) {                    229         if (slot->shift > 0) {
230                 for (i = 0; i < RADIX_TREE_MAP    230                 for (i = 0; i < RADIX_TREE_MAP_SIZE; i++)
231                         if (slot->slots[i])       231                         if (slot->slots[i])
232                                 if (verify_nod    232                                 if (verify_node(slot->slots[i], tag,
233                                             !!    233                                             !!test_bit(i, slot->tags[tag]))) {
234                                         printf    234                                         printf("Failure at off %d\n", i);
235                                         for (j    235                                         for (j = 0; j < RADIX_TREE_MAX_TAGS; j++) {
236                                                   236                                                 printf("tag %d: ", j);
237                                                   237                                                 for (i = 0; i < RADIX_TREE_TAG_LONGS; i++)
238                                                   238                                                         printf("%016lx ", slot->tags[j][i]);
239                                                   239                                                 printf("\n");
240                                         }         240                                         }
241                                         return    241                                         return 1;
242                                 }                 242                                 }
243         }                                         243         }
244         return 0;                                 244         return 0;
245 }                                                 245 }
246                                                   246 
247 void verify_tag_consistency(struct radix_tree_    247 void verify_tag_consistency(struct radix_tree_root *root, unsigned int tag)
248 {                                                 248 {
249         struct radix_tree_node *node = root->x    249         struct radix_tree_node *node = root->xa_head;
250         if (!radix_tree_is_internal_node(node)    250         if (!radix_tree_is_internal_node(node))
251                 return;                           251                 return;
252         verify_node(node, tag, !!root_tag_get(    252         verify_node(node, tag, !!root_tag_get(root, tag));
253 }                                                 253 }
254                                                   254 
255 void item_kill_tree(struct xarray *xa)            255 void item_kill_tree(struct xarray *xa)
256 {                                                 256 {
257         XA_STATE(xas, xa, 0);                     257         XA_STATE(xas, xa, 0);
258         void *entry;                              258         void *entry;
259                                                   259 
260         xas_for_each(&xas, entry, ULONG_MAX) {    260         xas_for_each(&xas, entry, ULONG_MAX) {
261                 if (!xa_is_value(entry)) {        261                 if (!xa_is_value(entry)) {
262                         item_free(entry, xas.x    262                         item_free(entry, xas.xa_index);
263                 }                                 263                 }
264                 xas_store(&xas, NULL);            264                 xas_store(&xas, NULL);
265         }                                         265         }
266                                                   266 
267         assert(xa_empty(xa));                     267         assert(xa_empty(xa));
268 }                                                 268 }
269                                                   269 
270 void tree_verify_min_height(struct radix_tree_    270 void tree_verify_min_height(struct radix_tree_root *root, int maxindex)
271 {                                                 271 {
272         unsigned shift;                           272         unsigned shift;
273         struct radix_tree_node *node = root->x    273         struct radix_tree_node *node = root->xa_head;
274         if (!radix_tree_is_internal_node(node)    274         if (!radix_tree_is_internal_node(node)) {
275                 assert(maxindex == 0);            275                 assert(maxindex == 0);
276                 return;                           276                 return;
277         }                                         277         }
278                                                   278 
279         node = entry_to_node(node);               279         node = entry_to_node(node);
280         assert(maxindex <= node_maxindex(node)    280         assert(maxindex <= node_maxindex(node));
281                                                   281 
282         shift = node->shift;                      282         shift = node->shift;
283         if (shift > 0)                            283         if (shift > 0)
284                 assert(maxindex > shift_maxind    284                 assert(maxindex > shift_maxindex(shift - RADIX_TREE_MAP_SHIFT));
285         else                                      285         else
286                 assert(maxindex > 0);             286                 assert(maxindex > 0);
287 }                                                 287 }
288                                                   288 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php