mirror of
https://github.com/dynup/kpatch
synced 2025-01-26 23:02:51 +00:00
11ce8102c2
Kernel version: 3.10.0-327.36.3.el7.x86_64
21 lines
517 B
Diff
21 lines
517 B
Diff
diff -Nupr src.orig/fs/aio.c src/fs/aio.c
|
|
--- src.orig/fs/aio.c 2016-11-30 19:51:03.826178250 +0000
|
|
+++ src/fs/aio.c 2016-11-30 19:52:53.149178250 +0000
|
|
@@ -219,9 +219,16 @@ 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;
|
|
+ kpatch_aio_foo();
|
|
if (aio_ring_file) {
|
|
truncate_setsize(aio_ring_file->f_inode, 0);
|
|
|