mirror of https://github.com/dynup/kpatch
26 lines
894 B
Diff
26 lines
894 B
Diff
diff -Nupr src.orig/drivers/tty/n_tty.c src/drivers/tty/n_tty.c
|
|
--- src.orig/drivers/tty/n_tty.c 2022-04-29 15:52:13.274335318 -0400
|
|
+++ src/drivers/tty/n_tty.c 2022-04-29 15:53:04.777518603 -0400
|
|
@@ -2253,7 +2253,7 @@ more_to_be_read:
|
|
* 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;
|
|
@@ -2340,6 +2340,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
|