* [PATCH 4/4] rcu: Add sched torture type to rcutorture
@ 2006-08-31 22:56 Josh Triplett
2006-09-01 1:30 ` Paul E. McKenney
0 siblings, 1 reply; 2+ messages in thread
From: Josh Triplett @ 2006-08-31 22:56 UTC (permalink / raw)
To: linux-kernel; +Cc: Andrew Morton, Paul McKenney, Dipankar Sarma
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>
---
Documentation/RCU/torture.txt | 5 +++--
kernel/rcutorture.c | 40 +++++++++++++++++++++++++++++++++++++++-
2 files changed, 42 insertions(+), 3 deletions(-)
diff --git a/Documentation/RCU/torture.txt b/Documentation/RCU/torture.txt
index cc4b1ef..25a3c3f 100644
--- a/Documentation/RCU/torture.txt
+++ b/Documentation/RCU/torture.txt
@@ -56,8 +56,9 @@ test_no_idle_hz Whether or not to test t
torture_type The type of RCU to test: "rcu" for the rcu_read_lock() API,
"rcu_sync" for rcu_read_lock() with synchronous reclamation,
"rcu_bh" for the rcu_read_lock_bh() API, "rcu_bh_sync" for
- rcu_read_lock_bh() with synchronous reclamation, and "srcu"
- for the "srcu_read_lock()" API.
+ rcu_read_lock_bh() with synchronous reclamation, "srcu" for
+ the "srcu_read_lock()" API, and "sched" for the use of
+ preempt_disable() together with synchronize_sched().
verbose Enable debug printk()s. Default is disabled.
diff --git a/kernel/rcutorture.c b/kernel/rcutorture.c
index 0f0ff15..e2bda18 100644
--- a/kernel/rcutorture.c
+++ b/kernel/rcutorture.c
@@ -464,9 +464,47 @@ static struct rcu_torture_ops srcu_ops =
.name = "srcu"
};
+/*
+ * Definitions for sched torture testing.
+ */
+
+static int sched_torture_read_lock(void)
+{
+ preempt_disable();
+ return 0;
+}
+
+static void sched_torture_read_unlock(int idx)
+{
+ preempt_enable();
+}
+
+static int sched_torture_completed(void)
+{
+ return 0;
+}
+
+static void sched_torture_synchronize(void)
+{
+ synchronize_sched();
+}
+
+static struct rcu_torture_ops sched_ops = {
+ .init = rcu_sync_torture_init,
+ .cleanup = NULL,
+ .readlock = sched_torture_read_lock,
+ .readdelay = rcu_read_delay, /* just reuse rcu's version. */
+ .readunlock = sched_torture_read_unlock,
+ .completed = sched_torture_completed,
+ .deferredfree = rcu_sync_torture_deferred_free,
+ .sync = sched_torture_synchronize,
+ .stats = NULL,
+ .name = "sched"
+};
+
static struct rcu_torture_ops *torture_ops[] =
{ &rcu_ops, &rcu_sync_ops, &rcu_bh_ops, &rcu_bh_sync_ops, &srcu_ops,
- NULL };
+ &sched_ops, NULL };
/*
* RCU torture writer kthread. Repeatedly substitutes a new structure
--
1.4.1.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 4/4] rcu: Add sched torture type to rcutorture
2006-08-31 22:56 [PATCH 4/4] rcu: Add sched torture type to rcutorture Josh Triplett
@ 2006-09-01 1:30 ` Paul E. McKenney
0 siblings, 0 replies; 2+ messages in thread
From: Paul E. McKenney @ 2006-09-01 1:30 UTC (permalink / raw)
To: Josh Triplett; +Cc: linux-kernel, Andrew Morton, Dipankar Sarma
On Thu, Aug 31, 2006 at 03:56:58PM -0700, Josh Triplett wrote:
> Implement torture testing for the "sched" variant of RCU, which uses
> preempt_disable, preempt_enable, and synchronize_sched.
Acked-by: Paul E. McKenney <paulmck@us.ibm.com>
> Signed-off-by: Josh Triplett <josh@freedesktop.org>
> ---
> Documentation/RCU/torture.txt | 5 +++--
> kernel/rcutorture.c | 40 +++++++++++++++++++++++++++++++++++++++-
> 2 files changed, 42 insertions(+), 3 deletions(-)
>
> diff --git a/Documentation/RCU/torture.txt b/Documentation/RCU/torture.txt
> index cc4b1ef..25a3c3f 100644
> --- a/Documentation/RCU/torture.txt
> +++ b/Documentation/RCU/torture.txt
> @@ -56,8 +56,9 @@ test_no_idle_hz Whether or not to test t
> torture_type The type of RCU to test: "rcu" for the rcu_read_lock() API,
> "rcu_sync" for rcu_read_lock() with synchronous reclamation,
> "rcu_bh" for the rcu_read_lock_bh() API, "rcu_bh_sync" for
> - rcu_read_lock_bh() with synchronous reclamation, and "srcu"
> - for the "srcu_read_lock()" API.
> + rcu_read_lock_bh() with synchronous reclamation, "srcu" for
> + the "srcu_read_lock()" API, and "sched" for the use of
> + preempt_disable() together with synchronize_sched().
>
> verbose Enable debug printk()s. Default is disabled.
>
> diff --git a/kernel/rcutorture.c b/kernel/rcutorture.c
> index 0f0ff15..e2bda18 100644
> --- a/kernel/rcutorture.c
> +++ b/kernel/rcutorture.c
> @@ -464,9 +464,47 @@ static struct rcu_torture_ops srcu_ops =
> .name = "srcu"
> };
>
> +/*
> + * Definitions for sched torture testing.
> + */
> +
> +static int sched_torture_read_lock(void)
> +{
> + preempt_disable();
> + return 0;
> +}
> +
> +static void sched_torture_read_unlock(int idx)
> +{
> + preempt_enable();
> +}
> +
> +static int sched_torture_completed(void)
> +{
> + return 0;
> +}
> +
> +static void sched_torture_synchronize(void)
> +{
> + synchronize_sched();
> +}
> +
> +static struct rcu_torture_ops sched_ops = {
> + .init = rcu_sync_torture_init,
> + .cleanup = NULL,
> + .readlock = sched_torture_read_lock,
> + .readdelay = rcu_read_delay, /* just reuse rcu's version. */
> + .readunlock = sched_torture_read_unlock,
> + .completed = sched_torture_completed,
> + .deferredfree = rcu_sync_torture_deferred_free,
> + .sync = sched_torture_synchronize,
> + .stats = NULL,
> + .name = "sched"
> +};
> +
> static struct rcu_torture_ops *torture_ops[] =
> { &rcu_ops, &rcu_sync_ops, &rcu_bh_ops, &rcu_bh_sync_ops, &srcu_ops,
> - NULL };
> + &sched_ops, NULL };
>
> /*
> * RCU torture writer kthread. Repeatedly substitutes a new structure
> --
> 1.4.1.1
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-09-01 1:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-31 22:56 [PATCH 4/4] rcu: Add sched torture type to rcutorture Josh Triplett
2006-09-01 1:30 ` Paul E. McKenney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox