mirror of
https://github.com/dynup/kpatch
synced 2024-12-13 00:44:34 +00:00
0e0cee369a
Added integration-test patches rebased against rhel-7.7 GA kernel. No conflicts, some fuzz. Signed-off-by: Artem Savkov <asavkov@redhat.com>
16 lines
549 B
Diff
16 lines
549 B
Diff
Index: kernel/drivers/tty/tty_buffer.c
|
|
===================================================================
|
|
--- kernel.orig/drivers/tty/tty_buffer.c
|
|
+++ kernel/drivers/tty/tty_buffer.c
|
|
@@ -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;
|