The patch titled n_hdlc-fix-read-and-write-locking-update has been removed from the -mm tree. Its filename was n_hdlc-fix-read-and-write-locking-update.patch This patch was dropped because it was folded into n_hdlc-fix-read-and-write-locking.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: n_hdlc-fix-read-and-write-locking-update From: Paul Fulghum <paulkf@xxxxxxxxxxxxx> Signed-off-by: Paul Fulghum <paulkf@xxxxxxxxxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/tty/n_hdlc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/tty/n_hdlc.c~n_hdlc-fix-read-and-write-locking-update drivers/tty/n_hdlc.c --- a/drivers/tty/n_hdlc.c~n_hdlc-fix-read-and-write-locking-update +++ a/drivers/tty/n_hdlc.c @@ -646,7 +646,7 @@ static ssize_t n_hdlc_tty_read(struct tt } remove_wait_queue(&tty->read_wait, &wait); - set_current_state(TASK_RUNNING); + __set_current_state(TASK_RUNNING); return ret; @@ -719,7 +719,7 @@ static ssize_t n_hdlc_tty_write(struct t } } - set_current_state(TASK_RUNNING); + __set_current_state(TASK_RUNNING); remove_wait_queue(&tty->write_wait, &wait); if (!error) { _ Patches currently in -mm which might be from paulkf@xxxxxxxxxxxxx are n_hdlc-fix-read-and-write-locking.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