kpatch/test/integration/centos-7/smp-locks-section.patch
Joe Lawrence 2f8170e962 testing: rebase patches for CentOS 7.4 kernel-3.10.0-693.el7
Signed-off-by: Joe Lawrence <joe.lawrence@redhat.com>
2017-09-22 17:02:33 -04:00

15 lines
582 B
Diff

diff -Nupr src.orig/drivers/tty/tty_buffer.c src/drivers/tty/tty_buffer.c
--- src.orig/drivers/tty/tty_buffer.c 2017-09-22 15:27:21.077053604 -0400
+++ src/drivers/tty/tty_buffer.c 2017-09-22 15:27:50.542175618 -0400
@@ -217,6 +217,10 @@ int tty_buffer_request_room(struct tty_p
/* OPTIMISATION: We could keep a per tty "zero" sized buffer to
remove this conditional if its worth it. This would be invisible
to the callers */
+
+ if (!size)
+ printk("kpatch-test: testing .smp_locks section changes\n");
+
b = buf->tail;
if (b != NULL)
left = b->size - b->used;