The patch titled timer: add lock annotation to lock_timer_base has been removed from the -mm tree. Its filename is timer-add-lock-annotation-to-lock_timer_base.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: timer: add lock annotation to lock_timer_base From: Josh Triplett <josht@xxxxxxxxxx> lock_timer_base acquires a lock and returns with that lock held. Add a lock annotation to this function so that sparse can check callers for lock pairing, and so that sparse will not complain about this function since it intentionally uses the lock in this manner. Signed-off-by: Josh Triplett <josh@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/timer.c | 1 + 1 file changed, 1 insertion(+) diff -puN kernel/timer.c~timer-add-lock-annotation-to-lock_timer_base kernel/timer.c --- a/kernel/timer.c~timer-add-lock-annotation-to-lock_timer_base +++ a/kernel/timer.c @@ -175,6 +175,7 @@ static inline void detach_timer(struct t */ static tvec_base_t *lock_timer_base(struct timer_list *timer, unsigned long *flags) + __acquires(timer->base->lock) { tvec_base_t *base; _ Patches currently in -mm which might be from josht@xxxxxxxxxx are origin.patch pass-sparse-the-lock-expression-given-to-lock-annotations.patch nfsd-add-lock-annotations-to-e_start-and-e_stop.patch srcu-3-rcu-variant-permitting-read-side-blocking-srcu-add-lock-annotations.patch rcu-add-module_author-to-rcutorture-module.patch rcu-fix-incorrect-description-of-default-for-rcutorture.patch rcu-mention-rcu_bh-in-description-of-rcutortures.patch rcu-avoid-kthread_stop-on-invalid-pointer-if-rcutorture.patch rcu-fix-sign-bug-making-rcu_random-always-return-the-same.patch rcu-add-fake-writers-to-rcutorture.patch rcu-add-fake-writers-to-rcutorture-tidy.patch rcu-refactor-srcu_torture_deferred_free-to-work-for.patch rcu-add-rcu_sync-torture-type-to-rcutorture.patch rcu-add-rcu_bh_sync-torture-type-to-rcutorture.patch rcu-add-sched-torture-type-to-rcutorture.patch rcu-credits-and-maintainers.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