| To: | Jeff Moyer <jmoyer@xxxxxxxxxx> |
|---|---|
| Subject: | [PATCH 2/4] ocfs2: Use generic handlers of O_SYNC AIO DIO |
| From: | Jan Kara <jack@xxxxxxx> |
| Date: | Fri, 10 Feb 2012 17:04:00 +0100 |
| Cc: | linux-ext4@xxxxxxxxxxxxxxx, linux-btrfs@xxxxxxxxxxxxxxx, ocfs2-devel@xxxxxxxxxxxxxx, xfs@xxxxxxxxxxx, Christoph Hellwig <hch@xxxxxxxxxxxxx>, linux-fsdevel@xxxxxxxxxxxxxxx, cluster-devel@xxxxxxxxxx, LKML <linux-kernel@xxxxxxxxxxxxxxx>, Jan Kara <jack@xxxxxxx> |
| In-reply-to: | <1328889842-23231-1-git-send-email-jack@xxxxxxx> |
| References: | <1328889842-23231-1-git-send-email-jack@xxxxxxx> |
Use generic handlers to queue fsync() when AIO DIO is completed for O_SYNC
file.
Signed-off-by: Jan Kara <jack@xxxxxxx>
---
fs/ocfs2/aops.c | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/fs/ocfs2/aops.c b/fs/ocfs2/aops.c
index 78b68af..3d14c2b 100644
--- a/fs/ocfs2/aops.c
+++ b/fs/ocfs2/aops.c
@@ -593,9 +593,7 @@ static void ocfs2_dio_end_io(struct kiocb *iocb,
level = ocfs2_iocb_rw_locked_level(iocb);
ocfs2_rw_unlock(inode, level);
- if (is_async)
- aio_complete(iocb, ret, 0);
- inode_dio_done(inode);
+ generic_dio_end_io(iocb, offset, bytes, private, ret, is_async);
}
/*
@@ -642,7 +640,7 @@ static ssize_t ocfs2_direct_IO(int rw,
return __blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev,
iov, offset, nr_segs,
ocfs2_direct_IO_get_blocks,
- ocfs2_dio_end_io, NULL, 0);
+ ocfs2_dio_end_io, NULL, DIO_SYNC_WRITES);
}
static void ocfs2_figure_cluster_boundaries(struct ocfs2_super *osb,
--
1.7.1
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 4/4] btrfs: Use generic handlers of O_SYNC AIO DIO, Jan Kara |
|---|---|
| Next by Date: | [PATCH 0/4] Generic O_SYNC AIO DIO handling, Jan Kara |
| Previous by Thread: | [PATCH 4/4] btrfs: Use generic handlers of O_SYNC AIO DIO, Jan Kara |
| Next by Thread: | [PATCH 1/4] vfs: Handle O_SYNC AIO DIO in generic code properly, Jan Kara |
| Indexes: | [Date] [Thread] [Top] [All Lists] |