lkml.org 
[lkml]   [2018]   [Sep]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 4.14 129/173] tty: fix termios input-speed encoding
    Date
    4.14-stable review patch.  If anyone has any objections, please let me know.

    ------------------

    From: Johan Hovold <johan@kernel.org>

    [ Upstream commit fada18c48d774b9e837928ecdce6a5d5fdd11ee7 ]

    Make sure to clear the CIBAUD bits before OR-ing the new mask when
    encoding the termios input baud rate.

    This could otherwise lead to an incorrect input rate being reported back
    and incidentally set on subsequent termios updates.

    Fixes: edc6afc54968 ("[PATCH] tty: switch to ktermios and new framework")
    Signed-off-by: Johan Hovold <johan@kernel.org>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    ---
    drivers/tty/tty_baudrate.c | 3 +++
    1 file changed, 3 insertions(+)

    --- a/drivers/tty/tty_baudrate.c
    +++ b/drivers/tty/tty_baudrate.c
    @@ -172,6 +172,9 @@ void tty_termios_encode_baud_rate(struct
    iclose = 0;
    #endif
    termios->c_cflag &= ~CBAUD;
    +#ifdef IBSHIFT
    + termios->c_cflag &= ~(CBAUD << IBSHIFT);
    +#endif

    /*
    * Our goal is to find a close match to the standard baud rate

    \
     
     \ /
      Last update: 2018-09-24 14:23    [W:2.237 / U:0.168 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site