mirror of
https://github.com/dynup/kpatch
synced 2025-01-02 02:32:01 +00:00
6943128ceb
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>
26 lines
561 B
Plaintext
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);
|
|
|