• Alan Cox's avatar
    ppp: Fix throttling bugs · a6540f73
    Alan Cox authored
    The ppp layer goes around calling the unthrottle method from non sleeping
    paths. This isn't safe because the unthrottle methods in the tty layer need
    to be able to sleep (consider a USB dongle).
    
    Until now this didn't show up because the ppp layer never actually throttled
    a port so the unthrottle was always a no-op. Currently it's a mutex taking
    path so warnings are spewed if the unthrottle occurs via certain paths.
    
    Fix this by removing the unneccessary unthrottle calls.
    Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
    Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
    a6540f73
ppp_synctty.c 17.5 KB