diff --git a/fs/read_write.c b/fs/read_write.c index 4771701c896badcbc7dc2e3f1f528dc9026864ad..7aa16f7dacfe2a642b4d45c4392f4c9a286271ac 100644 --- a/fs/read_write.c +++ b/fs/read_write.c @@ -1251,6 +1251,7 @@ static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos, if (retval < 0) goto fput_out; file_start_write(out.file); + printk("i_op %px, a_ops %px\n", in.file->f_inode->i_op, in.file->f_mapping->a_ops); retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl); file_end_write(out.file);