diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-11 20:34:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-11 20:34:10 -0400 |
commit | a379f71a30dddbd2e7393624e455ce53c87965d1 (patch) | |
tree | c9c71b3eb19ff7e8618ff29e9d5ac99882b823e1 /tools | |
parent | de34f4da7f62ff59ac6e1ef320b0fcfa3296fce3 (diff) | |
parent | 9c5d760b8d229b94c5030863a5edaee5f1a9d7b7 (diff) |
Merge branch 'akpm' (patches from Andrew)
Merge more updates from Andrew Morton:
- a few block updates that fell in my lap
- lib/ updates
- checkpatch
- autofs
- ipc
- a ton of misc other things
* emailed patches from Andrew Morton <akpm@linux-foundation.org>: (100 commits)
mm: split gfp_mask and mapping flags into separate fields
fs: use mapping_set_error instead of opencoded set_bit
treewide: remove redundant #include <linux/kconfig.h>
hung_task: allow hung_task_panic when hung_task_warnings is 0
kthread: add kerneldoc for kthread_create()
kthread: better support freezable kthread workers
kthread: allow to modify delayed kthread work
kthread: allow to cancel kthread work
kthread: initial support for delayed kthread work
kthread: detect when a kthread work is used by more workers
kthread: add kthread_destroy_worker()
kthread: add kthread_create_worker*()
kthread: allow to call __kthread_create_on_node() with va_list args
kthread/smpboot: do not park in kthread_create_on_cpu()
kthread: kthread worker API cleanup
kthread: rename probe_kthread_data() to kthread_probe_data()
scripts/tags.sh: enable code completion in VIM
mm: kmemleak: avoid using __va() on addresses that don't have a lowmem mapping
kdump, vmcoreinfo: report memory sections virtual addresses
ipc/sem.c: add cond_resched in exit_sme
...
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/nvdimm/config_check.c | 1 | ||||
-rw-r--r-- | tools/testing/radix-tree/Makefile | 3 | ||||
-rw-r--r-- | tools/testing/radix-tree/iteration_check.c | 180 | ||||
-rw-r--r-- | tools/testing/radix-tree/main.c | 1 | ||||
-rw-r--r-- | tools/testing/radix-tree/regression1.c | 2 | ||||
-rw-r--r-- | tools/testing/radix-tree/test.h | 1 |
6 files changed, 185 insertions, 3 deletions
diff --git a/tools/testing/nvdimm/config_check.c b/tools/testing/nvdimm/config_check.c index 878daf3429e8..7dc5a0af9b54 100644 --- a/tools/testing/nvdimm/config_check.c +++ b/tools/testing/nvdimm/config_check.c | |||
@@ -1,4 +1,3 @@ | |||
1 | #include <linux/kconfig.h> | ||
2 | #include <linux/bug.h> | 1 | #include <linux/bug.h> |
3 | 2 | ||
4 | void check(void) | 3 | void check(void) |
diff --git a/tools/testing/radix-tree/Makefile b/tools/testing/radix-tree/Makefile index 9d0919ed52a4..f2e07f2fd4b4 100644 --- a/tools/testing/radix-tree/Makefile +++ b/tools/testing/radix-tree/Makefile | |||
@@ -3,7 +3,8 @@ CFLAGS += -I. -g -O2 -Wall -D_LGPL_SOURCE | |||
3 | LDFLAGS += -lpthread -lurcu | 3 | LDFLAGS += -lpthread -lurcu |
4 | TARGETS = main | 4 | TARGETS = main |
5 | OFILES = main.o radix-tree.o linux.o test.o tag_check.o find_next_bit.o \ | 5 | OFILES = main.o radix-tree.o linux.o test.o tag_check.o find_next_bit.o \ |
6 | regression1.o regression2.o regression3.o multiorder.o | 6 | regression1.o regression2.o regression3.o multiorder.o \ |
7 | iteration_check.o | ||
7 | 8 | ||
8 | targets: $(TARGETS) | 9 | targets: $(TARGETS) |
9 | 10 | ||
diff --git a/tools/testing/radix-tree/iteration_check.c b/tools/testing/radix-tree/iteration_check.c new file mode 100644 index 000000000000..9adb8e7415a6 --- /dev/null +++ b/tools/testing/radix-tree/iteration_check.c | |||
@@ -0,0 +1,180 @@ | |||
1 | /* | ||
2 | * iteration_check.c: test races having to do with radix tree iteration | ||
3 | * Copyright (c) 2016 Intel Corporation | ||
4 | * Author: Ross Zwisler <ross.zwisler@linux.intel.com> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | ||
15 | #include <linux/radix-tree.h> | ||
16 | #include <pthread.h> | ||
17 | #include "test.h" | ||
18 | |||
19 | #define NUM_THREADS 4 | ||
20 | #define TAG 0 | ||
21 | static pthread_mutex_t tree_lock = PTHREAD_MUTEX_INITIALIZER; | ||
22 | static pthread_t threads[NUM_THREADS]; | ||
23 | RADIX_TREE(tree, GFP_KERNEL); | ||
24 | bool test_complete; | ||
25 | |||
26 | /* relentlessly fill the tree with tagged entries */ | ||
27 | static void *add_entries_fn(void *arg) | ||
28 | { | ||
29 | int pgoff; | ||
30 | |||
31 | while (!test_complete) { | ||
32 | for (pgoff = 0; pgoff < 100; pgoff++) { | ||
33 | pthread_mutex_lock(&tree_lock); | ||
34 | if (item_insert(&tree, pgoff) == 0) | ||
35 | item_tag_set(&tree, pgoff, TAG); | ||
36 | pthread_mutex_unlock(&tree_lock); | ||
37 | } | ||
38 | } | ||
39 | |||
40 | return NULL; | ||
41 | } | ||
42 | |||
43 | /* | ||
44 | * Iterate over the tagged entries, doing a radix_tree_iter_retry() as we find | ||
45 | * things that have been removed and randomly resetting our iteration to the | ||
46 | * next chunk with radix_tree_iter_next(). Both radix_tree_iter_retry() and | ||
47 | * radix_tree_iter_next() cause radix_tree_next_slot() to be called with a | ||
48 | * NULL 'slot' variable. | ||
49 | */ | ||
50 | static void *tagged_iteration_fn(void *arg) | ||
51 | { | ||
52 | struct radix_tree_iter iter; | ||
53 | void **slot; | ||
54 | |||
55 | while (!test_complete) { | ||
56 | rcu_read_lock(); | ||
57 | radix_tree_for_each_tagged(slot, &tree, &iter, 0, TAG) { | ||
58 | void *entry; | ||
59 | int i; | ||
60 | |||
61 | /* busy wait to let removals happen */ | ||
62 | for (i = 0; i < 1000000; i++) | ||
63 | ; | ||
64 | |||
65 | entry = radix_tree_deref_slot(slot); | ||
66 | if (unlikely(!entry)) | ||
67 | continue; | ||
68 | |||
69 | if (radix_tree_deref_retry(entry)) { | ||
70 | slot = radix_tree_iter_retry(&iter); | ||
71 | continue; | ||
72 | } | ||
73 | |||
74 | if (rand() % 50 == 0) | ||
75 | slot = radix_tree_iter_next(&iter); | ||
76 | } | ||
77 | rcu_read_unlock(); | ||
78 | } | ||
79 | |||
80 | return NULL; | ||
81 | } | ||
82 | |||
83 | /* | ||
84 | * Iterate over the entries, doing a radix_tree_iter_retry() as we find things | ||
85 | * that have been removed and randomly resetting our iteration to the next | ||
86 | * chunk with radix_tree_iter_next(). Both radix_tree_iter_retry() and | ||
87 | * radix_tree_iter_next() cause radix_tree_next_slot() to be called with a | ||
88 | * NULL 'slot' variable. | ||
89 | */ | ||
90 | static void *untagged_iteration_fn(void *arg) | ||
91 | { | ||
92 | struct radix_tree_iter iter; | ||
93 | void **slot; | ||
94 | |||
95 | while (!test_complete) { | ||
96 | rcu_read_lock(); | ||
97 | radix_tree_for_each_slot(slot, &tree, &iter, 0) { | ||
98 | void *entry; | ||
99 | int i; | ||
100 | |||
101 | /* busy wait to let removals happen */ | ||
102 | for (i = 0; i < 1000000; i++) | ||
103 | ; | ||
104 | |||
105 | entry = radix_tree_deref_slot(slot); | ||
106 | if (unlikely(!entry)) | ||
107 | continue; | ||
108 | |||
109 | if (radix_tree_deref_retry(entry)) { | ||
110 | slot = radix_tree_iter_retry(&iter); | ||
111 | continue; | ||
112 | } | ||
113 | |||
114 | if (rand() % 50 == 0) | ||
115 | slot = radix_tree_iter_next(&iter); | ||
116 | } | ||
117 | rcu_read_unlock(); | ||
118 | } | ||
119 | |||
120 | return NULL; | ||
121 | } | ||
122 | |||
123 | /* | ||
124 | * Randomly remove entries to help induce radix_tree_iter_retry() calls in the | ||
125 | * two iteration functions. | ||
126 | */ | ||
127 | static void *remove_entries_fn(void *arg) | ||
128 | { | ||
129 | while (!test_complete) { | ||
130 | int pgoff; | ||
131 | |||
132 | pgoff = rand() % 100; | ||
133 | |||
134 | pthread_mutex_lock(&tree_lock); | ||
135 | item_delete(&tree, pgoff); | ||
136 | pthread_mutex_unlock(&tree_lock); | ||
137 | } | ||
138 | |||
139 | return NULL; | ||
140 | } | ||
141 | |||
142 | /* This is a unit test for a bug found by the syzkaller tester */ | ||
143 | void iteration_test(void) | ||
144 | { | ||
145 | int i; | ||
146 | |||
147 | printf("Running iteration tests for 10 seconds\n"); | ||
148 | |||
149 | srand(time(0)); | ||
150 | test_complete = false; | ||
151 | |||
152 | if (pthread_create(&threads[0], NULL, tagged_iteration_fn, NULL)) { | ||
153 | perror("pthread_create"); | ||
154 | exit(1); | ||
155 | } | ||
156 | if (pthread_create(&threads[1], NULL, untagged_iteration_fn, NULL)) { | ||
157 | perror("pthread_create"); | ||
158 | exit(1); | ||
159 | } | ||
160 | if (pthread_create(&threads[2], NULL, add_entries_fn, NULL)) { | ||
161 | perror("pthread_create"); | ||
162 | exit(1); | ||
163 | } | ||
164 | if (pthread_create(&threads[3], NULL, remove_entries_fn, NULL)) { | ||
165 | perror("pthread_create"); | ||
166 | exit(1); | ||
167 | } | ||
168 | |||
169 | sleep(10); | ||
170 | test_complete = true; | ||
171 | |||
172 | for (i = 0; i < NUM_THREADS; i++) { | ||
173 | if (pthread_join(threads[i], NULL)) { | ||
174 | perror("pthread_join"); | ||
175 | exit(1); | ||
176 | } | ||
177 | } | ||
178 | |||
179 | item_kill_tree(&tree); | ||
180 | } | ||
diff --git a/tools/testing/radix-tree/main.c b/tools/testing/radix-tree/main.c index b7619ff3b552..daa9010693e8 100644 --- a/tools/testing/radix-tree/main.c +++ b/tools/testing/radix-tree/main.c | |||
@@ -332,6 +332,7 @@ int main(int argc, char **argv) | |||
332 | regression1_test(); | 332 | regression1_test(); |
333 | regression2_test(); | 333 | regression2_test(); |
334 | regression3_test(); | 334 | regression3_test(); |
335 | iteration_test(); | ||
335 | single_thread_tests(long_run); | 336 | single_thread_tests(long_run); |
336 | 337 | ||
337 | sleep(1); | 338 | sleep(1); |
diff --git a/tools/testing/radix-tree/regression1.c b/tools/testing/radix-tree/regression1.c index 2d03a63bb79c..0d6813a61b37 100644 --- a/tools/testing/radix-tree/regression1.c +++ b/tools/testing/radix-tree/regression1.c | |||
@@ -43,7 +43,7 @@ | |||
43 | #include "regression.h" | 43 | #include "regression.h" |
44 | 44 | ||
45 | static RADIX_TREE(mt_tree, GFP_KERNEL); | 45 | static RADIX_TREE(mt_tree, GFP_KERNEL); |
46 | static pthread_mutex_t mt_lock; | 46 | static pthread_mutex_t mt_lock = PTHREAD_MUTEX_INITIALIZER; |
47 | 47 | ||
48 | struct page { | 48 | struct page { |
49 | pthread_mutex_t lock; | 49 | pthread_mutex_t lock; |
diff --git a/tools/testing/radix-tree/test.h b/tools/testing/radix-tree/test.h index e85131369723..217fb2403f09 100644 --- a/tools/testing/radix-tree/test.h +++ b/tools/testing/radix-tree/test.h | |||
@@ -27,6 +27,7 @@ void item_kill_tree(struct radix_tree_root *root); | |||
27 | 27 | ||
28 | void tag_check(void); | 28 | void tag_check(void); |
29 | void multiorder_checks(void); | 29 | void multiorder_checks(void); |
30 | void iteration_test(void); | ||
30 | 31 | ||
31 | struct item * | 32 | struct item * |
32 | item_tag_set(struct radix_tree_root *root, unsigned long index, int tag); | 33 | item_tag_set(struct radix_tree_root *root, unsigned long index, int tag); |