Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 889d487a authored by Paul E. McKenney's avatar Paul E. McKenney
Browse files

rcutorture: Fix module unwind when bad torture_type specified



The rcutorture module has a list of torture types, and specifying a
type not on this list is supposed to cleanly fail the module load.
Unfortunately, the "fail" happens without the "cleanly".  This commit
therefore adds the needed clean-up after an incorrect torture_type.

Reported-by: default avatarDavid Miller <davem@davemloft.net>
Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: default avatarDavid Miller <davem@davemloft.net>
Reviewed-by: default avatarJosh Triplett <josh@joshtriplett.org>
parent 19a5ecde
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1742,15 +1742,15 @@ rcu_torture_init(void)
		for (i = 0; i < ARRAY_SIZE(torture_ops); i++)
			pr_alert(" %s", torture_ops[i]->name);
		pr_alert("\n");
		torture_init_end();
		return -EINVAL;
		firsterr = -EINVAL;
		goto unwind;
	}
	if (cur_ops->fqs == NULL && fqs_duration != 0) {
		pr_alert("rcu-torture: ->fqs NULL and non-zero fqs_duration, fqs disabled.\n");
		fqs_duration = 0;
	}
	if (cur_ops->init)
		cur_ops->init(); /* no "goto unwind" prior to this point!!! */
		cur_ops->init();

	if (nreaders >= 0) {
		nrealreaders = nreaders;