aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikanth Karthikesan <knikanth@suse.de>2010-04-08 21:39:31 +0200
committerJens Axboe <jens.axboe@oracle.com>2010-04-08 21:39:31 +0200
commit02246c41171097ceab3246f6dc251ac89de6004b (patch)
treef50a2cc750b730ebf71f30e7badc723d25876155
parentblock: expose the statistics in blkio.time and blkio.sectors for the root cgroup (diff)
downloadlinux-dev-02246c41171097ceab3246f6dc251ac89de6004b.tar.xz
linux-dev-02246c41171097ceab3246f6dc251ac89de6004b.zip
loop: Update mtime when writing using aops
Update mtime when writing to backing filesystem using the address space operations write_begin and write_end. Signed-off-by: Nikanth Karthikesan <knikanth@suse.de> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
-rw-r--r--drivers/block/loop.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/block/loop.c b/drivers/block/loop.c
index bd112c8c7bcd..1c21a3f23868 100644
--- a/drivers/block/loop.c
+++ b/drivers/block/loop.c
@@ -238,6 +238,8 @@ static int do_lo_send_aops(struct loop_device *lo, struct bio_vec *bvec,
if (ret)
goto fail;
+ file_update_time(file);
+
transfer_result = lo_do_transfer(lo, WRITE, page, offset,
bvec->bv_page, bv_offs, size, IV);
copied = size;