diff -Nupr src/drivers/tty/n_tty.c src/drivers/tty/n_tty.c --- src/drivers/tty/n_tty.c 2020-03-11 11:23:23.062516341 +0000 +++ src/drivers/tty/n_tty.c 2020-03-11 11:37:13.226206161 +0000 @@ -2296,7 +2296,7 @@ static ssize_t n_tty_read(struct tty_str * lock themselves) */ -static ssize_t n_tty_write(struct tty_struct *tty, struct file *file, +static ssize_t noinline kpatch_n_tty_write(struct tty_struct *tty, struct file *file, const unsigned char *buf, size_t nr) { const unsigned char *b = buf; @@ -2383,6 +2383,12 @@ break_out: return (b - buf) ? b - buf : retval; } +static ssize_t __attribute__((optimize("-fno-optimize-sibling-calls"))) n_tty_write(struct tty_struct *tty, struct file *file, + const unsigned char *buf, size_t nr) +{ + return kpatch_n_tty_write(tty, file, buf, nr); +} + /** * n_tty_poll - poll method for N_TTY * @tty: terminal device