The patch titled Subject: signal-turn-dequeue_signal_lock-into-kernel_dequeue_signal-fix has been removed from the -mm tree. Its filename was signal-turn-dequeue_signal_lock-into-kernel_dequeue_signal-fix.patch This patch was dropped because it was folded into signal-turn-dequeue_signal_lock-into-kernel_dequeue_signal.patch ------------------------------------------------------ From: Oleg Nesterov <oleg@xxxxxxxxxx> Subject: signal-turn-dequeue_signal_lock-into-kernel_dequeue_signal-fix As Markus reports (thanks!) signal-turn-dequeue_signal_lock-into-kernel_dequeue_signal.patch conflicts with the recent change in Linus' tree, > I just realised that this patch will conflict with a fixup patch for nbd > that will be included in rc7. > > dcc909d90ccd (nbd: Add locking for tasks) > > I think there is basically one new instance of dequeue_signal_lock() that > needs to be replaced with kernel_dequeue_signal(). Unless I missed something, this new dequeue_signal_lock() should simply die, but lets fix the conflict first. Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Cc: Felipe Balbi <balbi@xxxxxx> Cc: Markus Pargmann <mpa@xxxxxxxxxxxxxx> Cc: Tejun Heo <tj@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/block/nbd.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff -puN drivers/block/nbd.c~signal-turn-dequeue_signal_lock-into-kernel_dequeue_signal-fix drivers/block/nbd.c --- a/drivers/block/nbd.c~signal-turn-dequeue_signal_lock-into-kernel_dequeue_signal-fix +++ a/drivers/block/nbd.c @@ -587,10 +587,8 @@ static int nbd_thread_send(void *data) spin_unlock_irqrestore(&nbd->tasks_lock, flags); /* Clear maybe pending signals */ - if (signal_pending(current)) { - siginfo_t info; - dequeue_signal_lock(current, ¤t->blocked, &info); - } + if (signal_pending(current)) + kernel_dequeue_signal(NULL); return 0; } _ Patches currently in -mm which might be from oleg@xxxxxxxxxx are proc-actually-make-proc_fd_permission-thread-friendly.patch change-current_is_single_threaded-to-use-for_each_thread.patch signals-kill-block_all_signals-and-unblock_all_signals.patch signal-turn-dequeue_signal_lock-into-kernel_dequeue_signal.patch signal-introduce-kernel_signal_stop-to-fix-jffs2_garbage_collect_thread.patch signal-remove-jffs2_garbage_collect_thread-allow_signalsigcont.patch coredump-ensure-all-coredumping-tasks-have-signal_group_coredump.patch coredump-change-zap_threads-and-zap_process-to-use-for_each_thread.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