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

TOMOYO Linux Cross Reference
Linux/lib/test_meminit.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ 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.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /lib/test_meminit.c (Architecture sparc) and /lib/test_meminit.c (Architecture i386)


  1 // SPDX-License-Identifier: GPL-2.0                 1 // SPDX-License-Identifier: GPL-2.0
  2 /*                                                  2 /*
  3  * Test cases for SL[AOU]B/page initialization      3  * Test cases for SL[AOU]B/page initialization at alloc/free time.
  4  */                                                 4  */
  5 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt         5 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  6                                                     6 
  7 #include <linux/init.h>                             7 #include <linux/init.h>
  8 #include <linux/kernel.h>                           8 #include <linux/kernel.h>
  9 #include <linux/mm.h>                               9 #include <linux/mm.h>
 10 #include <linux/module.h>                          10 #include <linux/module.h>
 11 #include <linux/slab.h>                            11 #include <linux/slab.h>
 12 #include <linux/string.h>                          12 #include <linux/string.h>
 13 #include <linux/vmalloc.h>                         13 #include <linux/vmalloc.h>
 14                                                    14 
 15 #define GARBAGE_INT (0x09A7BA9E)                   15 #define GARBAGE_INT (0x09A7BA9E)
 16 #define GARBAGE_BYTE (0x9E)                        16 #define GARBAGE_BYTE (0x9E)
 17                                                    17 
 18 #define REPORT_FAILURES_IN_FN() \                  18 #define REPORT_FAILURES_IN_FN() \
 19         do {    \                                  19         do {    \
 20                 if (failures)   \                  20                 if (failures)   \
 21                         pr_info("%s failed %d      21                         pr_info("%s failed %d out of %d times\n",       \
 22                                 __func__, fail     22                                 __func__, failures, num_tests);         \
 23                 else            \                  23                 else            \
 24                         pr_info("all %d tests      24                         pr_info("all %d tests in %s passed\n",          \
 25                                 num_tests, __f     25                                 num_tests, __func__);                   \
 26         } while (0)                                26         } while (0)
 27                                                    27 
 28 /* Calculate the number of uninitialized bytes     28 /* Calculate the number of uninitialized bytes in the buffer. */
 29 static int __init count_nonzero_bytes(void *pt     29 static int __init count_nonzero_bytes(void *ptr, size_t size)
 30 {                                                  30 {
 31         int i, ret = 0;                            31         int i, ret = 0;
 32         unsigned char *p = (unsigned char *)pt     32         unsigned char *p = (unsigned char *)ptr;
 33                                                    33 
 34         for (i = 0; i < size; i++)                 34         for (i = 0; i < size; i++)
 35                 if (p[i])                          35                 if (p[i])
 36                         ret++;                     36                         ret++;
 37         return ret;                                37         return ret;
 38 }                                                  38 }
 39                                                    39 
 40 /* Fill a buffer with garbage, skipping |skip|     40 /* Fill a buffer with garbage, skipping |skip| first bytes. */
 41 static void __init fill_with_garbage_skip(void     41 static void __init fill_with_garbage_skip(void *ptr, int size, size_t skip)
 42 {                                                  42 {
 43         unsigned int *p = (unsigned int *)((ch     43         unsigned int *p = (unsigned int *)((char *)ptr + skip);
 44         int i = 0;                                 44         int i = 0;
 45                                                    45 
 46         WARN_ON(skip > size);                      46         WARN_ON(skip > size);
 47         size -= skip;                              47         size -= skip;
 48                                                    48 
 49         while (size >= sizeof(*p)) {               49         while (size >= sizeof(*p)) {
 50                 p[i] = GARBAGE_INT;                50                 p[i] = GARBAGE_INT;
 51                 i++;                               51                 i++;
 52                 size -= sizeof(*p);                52                 size -= sizeof(*p);
 53         }                                          53         }
 54         if (size)                                  54         if (size)
 55                 memset(&p[i], GARBAGE_BYTE, si     55                 memset(&p[i], GARBAGE_BYTE, size);
 56 }                                                  56 }
 57                                                    57 
 58 static void __init fill_with_garbage(void *ptr     58 static void __init fill_with_garbage(void *ptr, size_t size)
 59 {                                                  59 {
 60         fill_with_garbage_skip(ptr, size, 0);      60         fill_with_garbage_skip(ptr, size, 0);
 61 }                                                  61 }
 62                                                    62 
 63 static int __init do_alloc_pages_order(int ord     63 static int __init do_alloc_pages_order(int order, int *total_failures)
 64 {                                                  64 {
 65         struct page *page;                         65         struct page *page;
 66         void *buf;                                 66         void *buf;
 67         size_t size = PAGE_SIZE << order;          67         size_t size = PAGE_SIZE << order;
 68                                                    68 
 69         page = alloc_pages(GFP_KERNEL, order);     69         page = alloc_pages(GFP_KERNEL, order);
 70         if (!page)                                 70         if (!page)
 71                 goto err;                          71                 goto err;
 72         buf = page_address(page);                  72         buf = page_address(page);
 73         fill_with_garbage(buf, size);              73         fill_with_garbage(buf, size);
 74         __free_pages(page, order);                 74         __free_pages(page, order);
 75                                                    75 
 76         page = alloc_pages(GFP_KERNEL, order);     76         page = alloc_pages(GFP_KERNEL, order);
 77         if (!page)                                 77         if (!page)
 78                 goto err;                          78                 goto err;
 79         buf = page_address(page);                  79         buf = page_address(page);
 80         if (count_nonzero_bytes(buf, size))        80         if (count_nonzero_bytes(buf, size))
 81                 (*total_failures)++;               81                 (*total_failures)++;
 82         fill_with_garbage(buf, size);              82         fill_with_garbage(buf, size);
 83         __free_pages(page, order);                 83         __free_pages(page, order);
 84         return 1;                                  84         return 1;
 85 err:                                               85 err:
 86         (*total_failures)++;                       86         (*total_failures)++;
 87         return 1;                                  87         return 1;
 88 }                                                  88 }
 89                                                    89 
 90 /* Test the page allocator by calling alloc_pa     90 /* Test the page allocator by calling alloc_pages with different orders. */
 91 static int __init test_pages(int *total_failur     91 static int __init test_pages(int *total_failures)
 92 {                                                  92 {
 93         int failures = 0, num_tests = 0;           93         int failures = 0, num_tests = 0;
 94         int i;                                     94         int i;
 95                                                    95 
 96         for (i = 0; i < NR_PAGE_ORDERS; i++)       96         for (i = 0; i < NR_PAGE_ORDERS; i++)
 97                 num_tests += do_alloc_pages_or     97                 num_tests += do_alloc_pages_order(i, &failures);
 98                                                    98 
 99         REPORT_FAILURES_IN_FN();                   99         REPORT_FAILURES_IN_FN();
100         *total_failures += failures;              100         *total_failures += failures;
101         return num_tests;                         101         return num_tests;
102 }                                                 102 }
103                                                   103 
104 /* Test kmalloc() with given parameters. */       104 /* Test kmalloc() with given parameters. */
105 static int __init do_kmalloc_size(size_t size,    105 static int __init do_kmalloc_size(size_t size, int *total_failures)
106 {                                                 106 {
107         void *buf;                                107         void *buf;
108                                                   108 
109         buf = kmalloc(size, GFP_KERNEL);          109         buf = kmalloc(size, GFP_KERNEL);
110         if (!buf)                                 110         if (!buf)
111                 goto err;                         111                 goto err;
112         fill_with_garbage(buf, size);             112         fill_with_garbage(buf, size);
113         kfree(buf);                               113         kfree(buf);
114                                                   114 
115         buf = kmalloc(size, GFP_KERNEL);          115         buf = kmalloc(size, GFP_KERNEL);
116         if (!buf)                                 116         if (!buf)
117                 goto err;                         117                 goto err;
118         if (count_nonzero_bytes(buf, size))       118         if (count_nonzero_bytes(buf, size))
119                 (*total_failures)++;              119                 (*total_failures)++;
120         fill_with_garbage(buf, size);             120         fill_with_garbage(buf, size);
121         kfree(buf);                               121         kfree(buf);
122         return 1;                                 122         return 1;
123 err:                                              123 err:
124         (*total_failures)++;                      124         (*total_failures)++;
125         return 1;                                 125         return 1;
126 }                                                 126 }
127                                                   127 
128 /* Test vmalloc() with given parameters. */       128 /* Test vmalloc() with given parameters. */
129 static int __init do_vmalloc_size(size_t size,    129 static int __init do_vmalloc_size(size_t size, int *total_failures)
130 {                                                 130 {
131         void *buf;                                131         void *buf;
132                                                   132 
133         buf = vmalloc(size);                      133         buf = vmalloc(size);
134         if (!buf)                                 134         if (!buf)
135                 goto err;                         135                 goto err;
136         fill_with_garbage(buf, size);             136         fill_with_garbage(buf, size);
137         vfree(buf);                               137         vfree(buf);
138                                                   138 
139         buf = vmalloc(size);                      139         buf = vmalloc(size);
140         if (!buf)                                 140         if (!buf)
141                 goto err;                         141                 goto err;
142         if (count_nonzero_bytes(buf, size))       142         if (count_nonzero_bytes(buf, size))
143                 (*total_failures)++;              143                 (*total_failures)++;
144         fill_with_garbage(buf, size);             144         fill_with_garbage(buf, size);
145         vfree(buf);                               145         vfree(buf);
146         return 1;                                 146         return 1;
147 err:                                              147 err:
148         (*total_failures)++;                      148         (*total_failures)++;
149         return 1;                                 149         return 1;
150 }                                                 150 }
151                                                   151 
152 /* Test kmalloc()/vmalloc() by allocating obje    152 /* Test kmalloc()/vmalloc() by allocating objects of different sizes. */
153 static int __init test_kvmalloc(int *total_fai    153 static int __init test_kvmalloc(int *total_failures)
154 {                                                 154 {
155         int failures = 0, num_tests = 0;          155         int failures = 0, num_tests = 0;
156         int i, size;                              156         int i, size;
157                                                   157 
158         for (i = 0; i < 20; i++) {                158         for (i = 0; i < 20; i++) {
159                 size = 1 << i;                    159                 size = 1 << i;
160                 num_tests += do_kmalloc_size(s    160                 num_tests += do_kmalloc_size(size, &failures);
161                 num_tests += do_vmalloc_size(s    161                 num_tests += do_vmalloc_size(size, &failures);
162         }                                         162         }
163                                                   163 
164         REPORT_FAILURES_IN_FN();                  164         REPORT_FAILURES_IN_FN();
165         *total_failures += failures;              165         *total_failures += failures;
166         return num_tests;                         166         return num_tests;
167 }                                                 167 }
168                                                   168 
169 #define CTOR_BYTES (sizeof(unsigned int))         169 #define CTOR_BYTES (sizeof(unsigned int))
170 #define CTOR_PATTERN (0x41414141)                 170 #define CTOR_PATTERN (0x41414141)
171 /* Initialize the first 4 bytes of the object.    171 /* Initialize the first 4 bytes of the object. */
172 static void test_ctor(void *obj)                  172 static void test_ctor(void *obj)
173 {                                                 173 {
174         *(unsigned int *)obj = CTOR_PATTERN;      174         *(unsigned int *)obj = CTOR_PATTERN;
175 }                                                 175 }
176                                                   176 
177 /*                                                177 /*
178  * Check the invariants for the buffer allocat    178  * Check the invariants for the buffer allocated from a slab cache.
179  * If the cache has a test constructor, the fi    179  * If the cache has a test constructor, the first 4 bytes of the object must
180  * always remain equal to CTOR_PATTERN.           180  * always remain equal to CTOR_PATTERN.
181  * If the cache isn't an RCU-typesafe one, or     181  * If the cache isn't an RCU-typesafe one, or if the allocation is done with
182  * __GFP_ZERO, then the object contents must b    182  * __GFP_ZERO, then the object contents must be zeroed after allocation.
183  * If the cache is an RCU-typesafe one, the ob    183  * If the cache is an RCU-typesafe one, the object contents must never be
184  * zeroed after the first use. This is checked    184  * zeroed after the first use. This is checked by memcmp() in
185  * do_kmem_cache_size().                          185  * do_kmem_cache_size().
186  */                                               186  */
187 static bool __init check_buf(void *buf, int si    187 static bool __init check_buf(void *buf, int size, bool want_ctor,
188                              bool want_rcu, bo    188                              bool want_rcu, bool want_zero)
189 {                                                 189 {
190         int bytes;                                190         int bytes;
191         bool fail = false;                        191         bool fail = false;
192                                                   192 
193         bytes = count_nonzero_bytes(buf, size)    193         bytes = count_nonzero_bytes(buf, size);
194         WARN_ON(want_ctor && want_zero);          194         WARN_ON(want_ctor && want_zero);
195         if (want_zero)                            195         if (want_zero)
196                 return bytes;                     196                 return bytes;
197         if (want_ctor) {                          197         if (want_ctor) {
198                 if (*(unsigned int *)buf != CT    198                 if (*(unsigned int *)buf != CTOR_PATTERN)
199                         fail = 1;                 199                         fail = 1;
200         } else {                                  200         } else {
201                 if (bytes)                        201                 if (bytes)
202                         fail = !want_rcu;         202                         fail = !want_rcu;
203         }                                         203         }
204         return fail;                              204         return fail;
205 }                                                 205 }
206                                                   206 
207 #define BULK_SIZE 100                             207 #define BULK_SIZE 100
208 static void *bulk_array[BULK_SIZE];               208 static void *bulk_array[BULK_SIZE];
209                                                   209 
210 /*                                                210 /*
211  * Test kmem_cache with given parameters:         211  * Test kmem_cache with given parameters:
212  *  want_ctor - use a constructor;                212  *  want_ctor - use a constructor;
213  *  want_rcu - use SLAB_TYPESAFE_BY_RCU;          213  *  want_rcu - use SLAB_TYPESAFE_BY_RCU;
214  *  want_zero - use __GFP_ZERO.                   214  *  want_zero - use __GFP_ZERO.
215  */                                               215  */
216 static int __init do_kmem_cache_size(size_t si    216 static int __init do_kmem_cache_size(size_t size, bool want_ctor,
217                                      bool want    217                                      bool want_rcu, bool want_zero,
218                                      int *tota    218                                      int *total_failures)
219 {                                                 219 {
220         struct kmem_cache *c;                     220         struct kmem_cache *c;
221         int iter;                                 221         int iter;
222         bool fail = false;                        222         bool fail = false;
223         gfp_t alloc_mask = GFP_KERNEL | (want_    223         gfp_t alloc_mask = GFP_KERNEL | (want_zero ? __GFP_ZERO : 0);
224         void *buf, *buf_copy;                     224         void *buf, *buf_copy;
225                                                   225 
226         c = kmem_cache_create("test_cache", si    226         c = kmem_cache_create("test_cache", size, 1,
227                               want_rcu ? SLAB_    227                               want_rcu ? SLAB_TYPESAFE_BY_RCU : 0,
228                               want_ctor ? test    228                               want_ctor ? test_ctor : NULL);
229         for (iter = 0; iter < 10; iter++) {       229         for (iter = 0; iter < 10; iter++) {
230                 /* Do a test of bulk allocatio    230                 /* Do a test of bulk allocations */
231                 if (!want_rcu && !want_ctor) {    231                 if (!want_rcu && !want_ctor) {
232                         int ret;                  232                         int ret;
233                                                   233 
234                         ret = kmem_cache_alloc    234                         ret = kmem_cache_alloc_bulk(c, alloc_mask, BULK_SIZE, bulk_array);
235                         if (!ret) {               235                         if (!ret) {
236                                 fail = true;      236                                 fail = true;
237                         } else {                  237                         } else {
238                                 int i;            238                                 int i;
239                                 for (i = 0; i     239                                 for (i = 0; i < ret; i++)
240                                         fail |    240                                         fail |= check_buf(bulk_array[i], size, want_ctor, want_rcu, want_zero);
241                                 kmem_cache_fre    241                                 kmem_cache_free_bulk(c, ret, bulk_array);
242                         }                         242                         }
243                 }                                 243                 }
244                                                   244 
245                 buf = kmem_cache_alloc(c, allo    245                 buf = kmem_cache_alloc(c, alloc_mask);
246                 /* Check that buf is zeroed, i    246                 /* Check that buf is zeroed, if it must be. */
247                 fail |= check_buf(buf, size, w    247                 fail |= check_buf(buf, size, want_ctor, want_rcu, want_zero);
248                 fill_with_garbage_skip(buf, si    248                 fill_with_garbage_skip(buf, size, want_ctor ? CTOR_BYTES : 0);
249                                                   249 
250                 if (!want_rcu) {                  250                 if (!want_rcu) {
251                         kmem_cache_free(c, buf    251                         kmem_cache_free(c, buf);
252                         continue;                 252                         continue;
253                 }                                 253                 }
254                                                   254 
255                 /*                                255                 /*
256                  * If this is an RCU cache, us    256                  * If this is an RCU cache, use a critical section to ensure we
257                  * can touch objects after the    257                  * can touch objects after they're freed.
258                  */                               258                  */
259                 rcu_read_lock();                  259                 rcu_read_lock();
260                 /*                                260                 /*
261                  * Copy the buffer to check th    261                  * Copy the buffer to check that it's not wiped on
262                  * free().                        262                  * free().
263                  */                               263                  */
264                 buf_copy = kmalloc(size, GFP_A    264                 buf_copy = kmalloc(size, GFP_ATOMIC);
265                 if (buf_copy)                     265                 if (buf_copy)
266                         memcpy(buf_copy, buf,     266                         memcpy(buf_copy, buf, size);
267                                                   267 
268                 kmem_cache_free(c, buf);          268                 kmem_cache_free(c, buf);
269                 /*                                269                 /*
270                  * Check that |buf| is intact     270                  * Check that |buf| is intact after kmem_cache_free().
271                  * |want_zero| is false, becau    271                  * |want_zero| is false, because we wrote garbage to
272                  * the buffer already.            272                  * the buffer already.
273                  */                               273                  */
274                 fail |= check_buf(buf, size, w    274                 fail |= check_buf(buf, size, want_ctor, want_rcu,
275                                   false);         275                                   false);
276                 if (buf_copy) {                   276                 if (buf_copy) {
277                         fail |= (bool)memcmp(b    277                         fail |= (bool)memcmp(buf, buf_copy, size);
278                         kfree(buf_copy);          278                         kfree(buf_copy);
279                 }                                 279                 }
280                 rcu_read_unlock();                280                 rcu_read_unlock();
281         }                                         281         }
282         kmem_cache_destroy(c);                    282         kmem_cache_destroy(c);
283                                                   283 
284         *total_failures += fail;                  284         *total_failures += fail;
285         return 1;                                 285         return 1;
286 }                                                 286 }
287                                                   287 
288 /*                                                288 /*
289  * Check that the data written to an RCU-alloc    289  * Check that the data written to an RCU-allocated object survives
290  * reallocation.                                  290  * reallocation.
291  */                                               291  */
292 static int __init do_kmem_cache_rcu_persistent    292 static int __init do_kmem_cache_rcu_persistent(int size, int *total_failures)
293 {                                                 293 {
294         struct kmem_cache *c;                     294         struct kmem_cache *c;
295         void *buf, *buf_contents, *saved_ptr;     295         void *buf, *buf_contents, *saved_ptr;
296         void **used_objects;                      296         void **used_objects;
297         int i, iter, maxiter = 1024;              297         int i, iter, maxiter = 1024;
298         bool fail = false;                        298         bool fail = false;
299                                                   299 
300         c = kmem_cache_create("test_cache", si    300         c = kmem_cache_create("test_cache", size, size, SLAB_TYPESAFE_BY_RCU,
301                               NULL);              301                               NULL);
302         buf = kmem_cache_alloc(c, GFP_KERNEL);    302         buf = kmem_cache_alloc(c, GFP_KERNEL);
303         if (!buf)                                 303         if (!buf)
304                 goto out;                         304                 goto out;
305         saved_ptr = buf;                          305         saved_ptr = buf;
306         fill_with_garbage(buf, size);             306         fill_with_garbage(buf, size);
307         buf_contents = kmalloc(size, GFP_KERNE    307         buf_contents = kmalloc(size, GFP_KERNEL);
308         if (!buf_contents) {                      308         if (!buf_contents) {
309                 kmem_cache_free(c, buf);          309                 kmem_cache_free(c, buf);
310                 goto out;                         310                 goto out;
311         }                                         311         }
312         used_objects = kmalloc_array(maxiter,     312         used_objects = kmalloc_array(maxiter, sizeof(void *), GFP_KERNEL);
313         if (!used_objects) {                      313         if (!used_objects) {
314                 kmem_cache_free(c, buf);          314                 kmem_cache_free(c, buf);
315                 kfree(buf_contents);              315                 kfree(buf_contents);
316                 goto out;                         316                 goto out;
317         }                                         317         }
318         memcpy(buf_contents, buf, size);          318         memcpy(buf_contents, buf, size);
319         kmem_cache_free(c, buf);                  319         kmem_cache_free(c, buf);
320         /*                                        320         /*
321          * Run for a fixed number of iteration    321          * Run for a fixed number of iterations. If we never hit saved_ptr,
322          * assume the test passes.                322          * assume the test passes.
323          */                                       323          */
324         for (iter = 0; iter < maxiter; iter++)    324         for (iter = 0; iter < maxiter; iter++) {
325                 buf = kmem_cache_alloc(c, GFP_    325                 buf = kmem_cache_alloc(c, GFP_KERNEL);
326                 used_objects[iter] = buf;         326                 used_objects[iter] = buf;
327                 if (buf == saved_ptr) {           327                 if (buf == saved_ptr) {
328                         fail = memcmp(buf_cont    328                         fail = memcmp(buf_contents, buf, size);
329                         for (i = 0; i <= iter;    329                         for (i = 0; i <= iter; i++)
330                                 kmem_cache_fre    330                                 kmem_cache_free(c, used_objects[i]);
331                         goto free_out;            331                         goto free_out;
332                 }                                 332                 }
333         }                                         333         }
334                                                   334 
335         for (iter = 0; iter < maxiter; iter++)    335         for (iter = 0; iter < maxiter; iter++)
336                 kmem_cache_free(c, used_object    336                 kmem_cache_free(c, used_objects[iter]);
337                                                   337 
338 free_out:                                         338 free_out:
339         kfree(buf_contents);                      339         kfree(buf_contents);
340         kfree(used_objects);                      340         kfree(used_objects);
341 out:                                              341 out:
342         kmem_cache_destroy(c);                    342         kmem_cache_destroy(c);
343         *total_failures += fail;                  343         *total_failures += fail;
344         return 1;                                 344         return 1;
345 }                                                 345 }
346                                                   346 
347 static int __init do_kmem_cache_size_bulk(int     347 static int __init do_kmem_cache_size_bulk(int size, int *total_failures)
348 {                                                 348 {
349         struct kmem_cache *c;                     349         struct kmem_cache *c;
350         int i, iter, maxiter = 1024;              350         int i, iter, maxiter = 1024;
351         int num, bytes;                           351         int num, bytes;
352         bool fail = false;                        352         bool fail = false;
353         void *objects[10];                        353         void *objects[10];
354                                                   354 
355         c = kmem_cache_create("test_cache", si    355         c = kmem_cache_create("test_cache", size, size, 0, NULL);
356         for (iter = 0; (iter < maxiter) && !fa    356         for (iter = 0; (iter < maxiter) && !fail; iter++) {
357                 num = kmem_cache_alloc_bulk(c,    357                 num = kmem_cache_alloc_bulk(c, GFP_KERNEL, ARRAY_SIZE(objects),
358                                             ob    358                                             objects);
359                 for (i = 0; i < num; i++) {       359                 for (i = 0; i < num; i++) {
360                         bytes = count_nonzero_    360                         bytes = count_nonzero_bytes(objects[i], size);
361                         if (bytes)                361                         if (bytes)
362                                 fail = true;      362                                 fail = true;
363                         fill_with_garbage(obje    363                         fill_with_garbage(objects[i], size);
364                 }                                 364                 }
365                                                   365 
366                 if (num)                          366                 if (num)
367                         kmem_cache_free_bulk(c    367                         kmem_cache_free_bulk(c, num, objects);
368         }                                         368         }
369         kmem_cache_destroy(c);                    369         kmem_cache_destroy(c);
370         *total_failures += fail;                  370         *total_failures += fail;
371         return 1;                                 371         return 1;
372 }                                                 372 }
373                                                   373 
374 /*                                                374 /*
375  * Test kmem_cache allocation by creating cach    375  * Test kmem_cache allocation by creating caches of different sizes, with and
376  * without constructors, with and without SLAB    376  * without constructors, with and without SLAB_TYPESAFE_BY_RCU.
377  */                                               377  */
378 static int __init test_kmemcache(int *total_fa    378 static int __init test_kmemcache(int *total_failures)
379 {                                                 379 {
380         int failures = 0, num_tests = 0;          380         int failures = 0, num_tests = 0;
381         int i, flags, size;                       381         int i, flags, size;
382         bool ctor, rcu, zero;                     382         bool ctor, rcu, zero;
383                                                   383 
384         for (i = 0; i < 10; i++) {                384         for (i = 0; i < 10; i++) {
385                 size = 8 << i;                    385                 size = 8 << i;
386                 for (flags = 0; flags < 8; fla    386                 for (flags = 0; flags < 8; flags++) {
387                         ctor = flags & 1;         387                         ctor = flags & 1;
388                         rcu = flags & 2;          388                         rcu = flags & 2;
389                         zero = flags & 4;         389                         zero = flags & 4;
390                         if (ctor & zero)          390                         if (ctor & zero)
391                                 continue;         391                                 continue;
392                         num_tests += do_kmem_c    392                         num_tests += do_kmem_cache_size(size, ctor, rcu, zero,
393                                                   393                                                         &failures);
394                 }                                 394                 }
395                 num_tests += do_kmem_cache_siz    395                 num_tests += do_kmem_cache_size_bulk(size, &failures);
396         }                                         396         }
397         REPORT_FAILURES_IN_FN();                  397         REPORT_FAILURES_IN_FN();
398         *total_failures += failures;              398         *total_failures += failures;
399         return num_tests;                         399         return num_tests;
400 }                                                 400 }
401                                                   401 
402 /* Test the behavior of SLAB_TYPESAFE_BY_RCU c    402 /* Test the behavior of SLAB_TYPESAFE_BY_RCU caches of different sizes. */
403 static int __init test_rcu_persistent(int *tot    403 static int __init test_rcu_persistent(int *total_failures)
404 {                                                 404 {
405         int failures = 0, num_tests = 0;          405         int failures = 0, num_tests = 0;
406         int i, size;                              406         int i, size;
407                                                   407 
408         for (i = 0; i < 10; i++) {                408         for (i = 0; i < 10; i++) {
409                 size = 8 << i;                    409                 size = 8 << i;
410                 num_tests += do_kmem_cache_rcu    410                 num_tests += do_kmem_cache_rcu_persistent(size, &failures);
411         }                                         411         }
412         REPORT_FAILURES_IN_FN();                  412         REPORT_FAILURES_IN_FN();
413         *total_failures += failures;              413         *total_failures += failures;
414         return num_tests;                         414         return num_tests;
415 }                                                 415 }
416                                                   416 
417 /*                                                417 /*
418  * Run the tests. Each test function returns t    418  * Run the tests. Each test function returns the number of executed tests and
419  * updates |failures| with the number of faile    419  * updates |failures| with the number of failed tests.
420  */                                               420  */
421 static int __init test_meminit_init(void)         421 static int __init test_meminit_init(void)
422 {                                                 422 {
423         int failures = 0, num_tests = 0;          423         int failures = 0, num_tests = 0;
424                                                   424 
425         num_tests += test_pages(&failures);       425         num_tests += test_pages(&failures);
426         num_tests += test_kvmalloc(&failures);    426         num_tests += test_kvmalloc(&failures);
427         num_tests += test_kmemcache(&failures)    427         num_tests += test_kmemcache(&failures);
428         num_tests += test_rcu_persistent(&fail    428         num_tests += test_rcu_persistent(&failures);
429                                                   429 
430         if (failures == 0)                        430         if (failures == 0)
431                 pr_info("all %d tests passed!\    431                 pr_info("all %d tests passed!\n", num_tests);
432         else                                      432         else
433                 pr_info("failures: %d out of %    433                 pr_info("failures: %d out of %d\n", failures, num_tests);
434                                                   434 
435         return failures ? -EINVAL : 0;            435         return failures ? -EINVAL : 0;
436 }                                                 436 }
437 module_init(test_meminit_init);                   437 module_init(test_meminit_init);
438                                                   438 
439 MODULE_DESCRIPTION("Test cases for SL[AOU]B/pa    439 MODULE_DESCRIPTION("Test cases for SL[AOU]B/page initialization at alloc/free time");
440 MODULE_LICENSE("GPL");                            440 MODULE_LICENSE("GPL");
441                                                   441 

~ [ 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