kpatch/test/integration/rhel-8.0/gcc-static-local-var-4.patch.disabled
Julien Thierry 6943128ceb test/integration: Disable test affecting jump label on ppcle64
On ppcle64, test gcc-static-local-var-4 impacts a jump label reference
which is currently unsupported.

Signed-off-by: Julien Thierry <jthierry@redhat.com>
2019-10-31 12:49:24 +00:00

26 lines
561 B
Plaintext

Disabled due to https://github.com/dynup/kpatch/issues/940
---
diff --git a/fs/aio.c b/fs/aio.c
index e1f8f01..4dfb05c 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -263,11 +263,18 @@ static int __init aio_setup(void)
}
__initcall(aio_setup);
+void kpatch_aio_foo(void)
+{
+ if (!jiffies)
+ printk("kpatch aio foo\n");
+}
+
static void put_aio_ring_file(struct kioctx *ctx)
{
struct file *aio_ring_file = ctx->aio_ring_file;
struct address_space *i_mapping;
+ kpatch_aio_foo();
if (aio_ring_file) {
truncate_setsize(file_inode(aio_ring_file), 0);