The patch titled Add Sparse annotations to SRCU wrapper functions in rcutorture has been removed from the -mm tree. Its filename was add-sparse-annotations-to-srcu-wrapper-functions-in-rcutorture.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Add Sparse annotations to SRCU wrapper functions in rcutorture From: Josh Triplett <josh@xxxxxxxxxxxxxxx> The SRCU wrapper functions srcu_torture_read_lock and srcu_torture_read_u= nlock in rcutorture intentionally change the SRCU context; annotate them accordingly, to avoid a warning. Signed-off-by: Josh Triplett <josh@xxxxxxxxxxxxxxx> Acked-by: Paul E. McKenney <paulmck@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/rcutorture.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN kernel/rcutorture.c~add-sparse-annotations-to-srcu-wrapper-functions-in-rcutorture kernel/rcutorture.c --- a/kernel/rcutorture.c~add-sparse-annotations-to-srcu-wrapper-functions-in-rcutorture +++ a/kernel/rcutorture.c @@ -401,7 +401,7 @@ static void srcu_torture_cleanup(void) cleanup_srcu_struct(&srcu_ctl); } -static int srcu_torture_read_lock(void) +static int srcu_torture_read_lock(void) __acquires(&srcu_ctl) { return srcu_read_lock(&srcu_ctl); } @@ -419,7 +419,7 @@ static void srcu_read_delay(struct rcu_r schedule_timeout_interruptible(longdelay); } -static void srcu_torture_read_unlock(int idx) +static void srcu_torture_read_unlock(int idx) __releases(&srcu_ctl) { srcu_read_unlock(&srcu_ctl, idx); } _ Patches currently in -mm which might be from josh@xxxxxxxxxxxxxxx are origin.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html