The patch titled Char: cyclades, fix deadlock has been added to the -mm tree. Its filename is char-cyclades-fix-deadlock.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Char: cyclades, fix deadlock From: Jiri Slaby <jirislaby@xxxxxxxxx> An omitted unlock. Signed-off-by: Jiri Slaby <jirislaby@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/cyclades.c | 1 + 1 files changed, 1 insertion(+) diff -puN drivers/char/cyclades.c~char-cyclades-fix-deadlock drivers/char/cyclades.c --- a/drivers/char/cyclades.c~char-cyclades-fix-deadlock +++ a/drivers/char/cyclades.c @@ -1061,6 +1061,7 @@ static void cyy_intr_chip(struct cyclade if (data & info->ignore_status_mask) { info->icount.rx++; + spin_unlock(&cinfo->card_lock); return; } if (tty_buffer_request_room(tty, 1)) { _ Patches currently in -mm which might be from jirislaby@xxxxxxxxx are cinergyt2-fix-file-release-handler.patch auerswald-fix-file-release-handler.patch char-cyclades-fix-deadlock.patch char-cyclades-add-firmware-loading.patch char-cyclades-fix-sparse-warning.patch shrink_slab-handle-bad-shrinkers.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