Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7a62a523 authored by Shaohua Li's avatar Shaohua Li Committed by Jens Axboe
Browse files

block_dev: don't update file access position for sync direct IO



For sync direct IO, generic_file_direct_write/generic_file_read_iter
will update file access position. Don't duplicate the update in
.direct_IO. This cause my raid array can't assemble.

Cc: Christoph Hellwig <hch@lst.de>
Cc: Jens Axboe <axboe@fb.com>
Signed-off-by: default avatarShaohua Li <shli@fb.com>
Signed-off-by: default avatarJens Axboe <axboe@fb.com>
parent d2a61918
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -264,7 +264,6 @@ __blkdev_direct_IO_simple(struct kiocb *iocb, struct iov_iter *iter,

	if (unlikely(bio.bi_error))
		return bio.bi_error;
	iocb->ki_pos += ret;
	return ret;
}

@@ -411,10 +410,8 @@ __blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter, int nr_pages)
	__set_current_state(TASK_RUNNING);

	ret = dio->bio.bi_error;
	if (likely(!ret)) {
	if (likely(!ret))
		ret = dio->size;
		iocb->ki_pos += ret;
	}

	bio_put(&dio->bio);
	return ret;