The patch titled initialise pi_lock if CONFIG_RT_MUTEXES=N has been removed from the -mm tree. Its filename was initialise-pi_lock-if-config_rt_mutexes=n.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: initialise pi_lock if CONFIG_RT_MUTEXES=N From: Zilvinas Valinskas <zilvinas@xxxxxxxxxxx> Fixes a bogus lockdep warning which causes lockdep to disable itself. Acked-by: Ingo Molnar <mingo@xxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/fork.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/fork.c~initialise-pi_lock-if-config_rt_mutexes=n kernel/fork.c --- a/kernel/fork.c~initialise-pi_lock-if-config_rt_mutexes=n +++ a/kernel/fork.c @@ -933,8 +933,8 @@ asmlinkage long sys_set_tid_address(int static inline void rt_mutex_init_task(struct task_struct *p) { -#ifdef CONFIG_RT_MUTEXES spin_lock_init(&p->pi_lock); +#ifdef CONFIG_RT_MUTEXES plist_head_init(&p->pi_waiters, &p->pi_lock); p->pi_blocked_on = NULL; #endif _ Patches currently in -mm which might be from zilvinas@xxxxxxxxxxx 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