Prev: [00/54] 2.6.34.4 -stable review
Next: [63/67] net: Fix NETDEV_NOTIFY_PEERS to not conflict with NETDEV_BONDING_DESLAVE.
From: Greg KH on 11 Aug 2010 20:10 2.6.32-stable review patch. If anyone has any objections, please let us know. ------------------ From: Nikanth Karthikesan <knikanth(a)suse.de> commit 02246c41171097ceab3246f6dc251ac89de6004b upstream. Update mtime when writing to backing filesystem using the address space operations write_begin and write_end. Signed-off-by: Nikanth Karthikesan <knikanth(a)suse.de> Signed-off-by: Jens Axboe <jens.axboe(a)oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> --- drivers/block/loop.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/block/loop.c +++ b/drivers/block/loop.c @@ -238,6 +238,8 @@ static int do_lo_send_aops(struct loop_d 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; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |