diff options
author | Josh Triplett <josht@us.ibm.com> | 2006-10-04 05:17:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 10:55:31 -0400 |
commit | 4b6c2cca6eef9cc4a15350bf1c61839e12e08b84 (patch) | |
tree | 47c59830f653cb20716bd24fa5272963cceaa68f | |
parent | 11a147013e39ff4cb031395cb78a9d307c4799cd (diff) |
[PATCH] rcu: add sched torture type to rcutorture
Implement torture testing for the "sched" variant of RCU, which uses
preempt_disable, preempt_enable, and synchronize_sched.
Signed-off-by: Josh Triplett <josh@freedesktop.org>
Acked-by: Paul E. McKenney <paulmck@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | Documentation/RCU/torture.txt | 5 | ||||
-rw-r--r-- | kernel/rcutorture.c | 40 |
2 files changed, 42 insertions, 3 deletions
diff --git a/Documentation/RCU/torture.txt b/Documentation/RCU/torture.txt index cc4b1efe5ea8..25a3c3f7d378 100644 --- a/Documentation/RCU/torture.txt +++ b/Documentation/RCU/torture.txt | |||
@@ -56,8 +56,9 @@ test_no_idle_hz Whether or not to test the ability of RCU to operate in | |||
56 | torture_type The type of RCU to test: "rcu" for the rcu_read_lock() API, | 56 | torture_type The type of RCU to test: "rcu" for the rcu_read_lock() API, |
57 | "rcu_sync" for rcu_read_lock() with synchronous reclamation, | 57 | "rcu_sync" for rcu_read_lock() with synchronous reclamation, |
58 | "rcu_bh" for the rcu_read_lock_bh() API, "rcu_bh_sync" for | 58 | "rcu_bh" for the rcu_read_lock_bh() API, "rcu_bh_sync" for |
59 | rcu_read_lock_bh() with synchronous reclamation, and "srcu" | 59 | rcu_read_lock_bh() with synchronous reclamation, "srcu" for |
60 | for the "srcu_read_lock()" API. | 60 | the "srcu_read_lock()" API, and "sched" for the use of |
61 | preempt_disable() together with synchronize_sched(). | ||
61 | 62 | ||
62 | verbose Enable debug printk()s. Default is disabled. | 63 | verbose Enable debug printk()s. Default is disabled. |
63 | 64 | ||
diff --git a/kernel/rcutorture.c b/kernel/rcutorture.c index 0f0ff1556b5d..e2bda18f6f42 100644 --- a/kernel/rcutorture.c +++ b/kernel/rcutorture.c | |||
@@ -464,9 +464,47 @@ static struct rcu_torture_ops srcu_ops = { | |||
464 | .name = "srcu" | 464 | .name = "srcu" |
465 | }; | 465 | }; |
466 | 466 | ||
467 | /* | ||
468 | * Definitions for sched torture testing. | ||
469 | */ | ||
470 | |||
471 | static int sched_torture_read_lock(void) | ||
472 | { | ||
473 | preempt_disable(); | ||
474 | return 0; | ||
475 | } | ||
476 | |||
477 | static void sched_torture_read_unlock(int idx) | ||
478 | { | ||
479 | preempt_enable(); | ||
480 | } | ||
481 | |||
482 | static int sched_torture_completed(void) | ||
483 | { | ||
484 | return 0; | ||
485 | } | ||
486 | |||
487 | static void sched_torture_synchronize(void) | ||
488 | { | ||
489 | synchronize_sched(); | ||
490 | } | ||
491 | |||
492 | static struct rcu_torture_ops sched_ops = { | ||
493 | .init = rcu_sync_torture_init, | ||
494 | .cleanup = NULL, | ||
495 | .readlock = sched_torture_read_lock, | ||
496 | .readdelay = rcu_read_delay, /* just reuse rcu's version. */ | ||
497 | .readunlock = sched_torture_read_unlock, | ||
498 | .completed = sched_torture_completed, | ||
499 | .deferredfree = rcu_sync_torture_deferred_free, | ||
500 | .sync = sched_torture_synchronize, | ||
501 | .stats = NULL, | ||
502 | .name = "sched" | ||
503 | }; | ||
504 | |||
467 | static struct rcu_torture_ops *torture_ops[] = | 505 | static struct rcu_torture_ops *torture_ops[] = |
468 | { &rcu_ops, &rcu_sync_ops, &rcu_bh_ops, &rcu_bh_sync_ops, &srcu_ops, | 506 | { &rcu_ops, &rcu_sync_ops, &rcu_bh_ops, &rcu_bh_sync_ops, &srcu_ops, |
469 | NULL }; | 507 | &sched_ops, NULL }; |
470 | 508 | ||
471 | /* | 509 | /* |
472 | * RCU torture writer kthread. Repeatedly substitutes a new structure | 510 | * RCU torture writer kthread. Repeatedly substitutes a new structure |