The patch titled Char: n_hdlc, allow RESTARTSYS retval of tty write has been added to the -mm tree. Its filename is char-n_hdlc-allow-restartsys-retval-of-tty-write.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: n_hdlc, allow RESTARTSYS retval of tty write From: Jiri Slaby <jirislaby@xxxxxxxxx> Acked-by: Paul Fulghum <paulkf@xxxxxxxxxxxxx> Signed-off-by: Jiri Slaby <jirislaby@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/n_hdlc.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletion(-) diff -puN drivers/char/n_hdlc.c~char-n_hdlc-allow-restartsys-retval-of-tty-write drivers/char/n_hdlc.c --- a/drivers/char/n_hdlc.c~char-n_hdlc-allow-restartsys-retval-of-tty-write +++ a/drivers/char/n_hdlc.c @@ -400,7 +400,12 @@ static void n_hdlc_send_frames(struct n_ /* Send the next block of data to device */ tty->flags |= (1 << TTY_DO_WRITE_WAKEUP); actual = tty->driver->write(tty, tbuf->buf, tbuf->count); - + + /* rollback was possible and has been done */ + if (actual == -ERESTARTSYS) { + n_hdlc->tbuf = tbuf; + break; + } /* if transmit error, throw frame away by */ /* pretending it was accepted by driver */ if (actual < 0) _ Patches currently in -mm which might be from jirislaby@xxxxxxxxx are origin.patch char-cyclades-fix-deadlock.patch misc-phantom-move-to-unlocked_ioctl.patch misc-phantom-take-care-of-pci-posting.patch cinergyt2-fix-file-release-handler.patch rocketc-fix-unchecked-mutex_lock_interruptible.patch char-n_hdlc-allow-restartsys-retval-of-tty-write.patch char-cyclades-add-firmware-loading.patch char-cyclades-fix-sparse-warning.patch char-isicom-cleanup-locking.patch char-isicom-del_timer-at-exit.patch char-isicom-proper-variables-types.patch char-moxa-eliminate-busy-waiting.patch char-specialix-remove-busy-waiting.patch char-riscom8-eliminate-busy-loop.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