aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/n_tty.c
diff options
context:
space:
mode:
authorPeter Hurley <peter@hurleysoftware.com>2013-07-24 08:29:49 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-07-24 12:26:51 -0400
commit7d88d637a3c75257b7611f9feee0c17fa187ecc9 (patch)
treefa732de61969c8f4de4efb503b0c0e9222f47670 /drivers/tty/n_tty.c
parent86e35aea477f4cc5a724d8704f5e9d956c73d424 (diff)
n_tty: Factor standard per-char i/o into separate fn
Simplify __receive_buf() into a dispatch function; perform per-char processing for all other modes not already handled. Signed-off-by: Peter Hurley <peter@hurleysoftware.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/n_tty.c')
-rw-r--r--drivers/tty/n_tty.c27
1 files changed, 17 insertions, 10 deletions
diff --git a/drivers/tty/n_tty.c b/drivers/tty/n_tty.c
index 2c120b634295..951ecfeed8d3 100644
--- a/drivers/tty/n_tty.c
+++ b/drivers/tty/n_tty.c
@@ -1569,6 +1569,22 @@ n_tty_receive_buf_closing(struct tty_struct *tty, const unsigned char *cp,
1569 } 1569 }
1570} 1570}
1571 1571
1572static void
1573n_tty_receive_buf_standard(struct tty_struct *tty, const unsigned char *cp,
1574 char *fp, int count)
1575{
1576 char flag = TTY_NORMAL;
1577
1578 while (count--) {
1579 if (fp)
1580 flag = *fp++;
1581 if (likely(flag == TTY_NORMAL))
1582 n_tty_receive_char(tty, *cp++);
1583 else
1584 n_tty_receive_char_flagged(tty, *cp++, flag);
1585 }
1586}
1587
1572static void __receive_buf(struct tty_struct *tty, const unsigned char *cp, 1588static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1573 char *fp, int count) 1589 char *fp, int count)
1574{ 1590{
@@ -1582,16 +1598,7 @@ static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1582 else if (tty->closing && !L_EXTPROC(tty)) 1598 else if (tty->closing && !L_EXTPROC(tty))
1583 n_tty_receive_buf_closing(tty, cp, fp, count); 1599 n_tty_receive_buf_closing(tty, cp, fp, count);
1584 else { 1600 else {
1585 char flag = TTY_NORMAL; 1601 n_tty_receive_buf_standard(tty, cp, fp, count);
1586
1587 while (count--) {
1588 if (fp)
1589 flag = *fp++;
1590 if (likely(flag == TTY_NORMAL))
1591 n_tty_receive_char(tty, *cp++);
1592 else
1593 n_tty_receive_char_flagged(tty, *cp++, flag);
1594 }
1595 1602
1596 flush_echoes(tty); 1603 flush_echoes(tty);
1597 if (tty->ops->flush_chars) 1604 if (tty->ops->flush_chars)