All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch 10/12] direct IO fixes
@ 2002-08-10  0:57 Andrew Morton
  0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2002-08-10  0:57 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: lkml



Some direct IO fixes from Badari Pulavarty.

- off-by-one in the bounds checking in blkdev_get_blocks().

- When adding more blocks into a bio_vec, account for the current
  offset into that bio_vec.

- Fix a total ballsup in the code which calculates the total number
  of pages which are about to be put under IO.



 block_dev.c |    2 +-
 direct-io.c |    7 ++++---
 2 files changed, 5 insertions, 4 deletions

--- 2.5.30/fs/direct-io.c~direct_io-fixes	Fri Aug  9 17:36:47 2002
+++ 2.5.30-akpm/fs/direct-io.c	Fri Aug  9 17:36:47 2002
@@ -489,7 +489,7 @@ int do_direct_IO(struct dio *dio)
 
 			/* Work out how much disk we can add to this page */
 			this_chunk_blocks = dio->blocks_available;
-			u = (PAGE_SIZE - dio->bvec->bv_len) >> blkbits;
+			u = (PAGE_SIZE - (dio->bvec->bv_offset + dio->bvec->bv_len)) >> blkbits;
 			if (this_chunk_blocks > u)
 				this_chunk_blocks = u;
 			u = dio->final_block_in_request - dio->block_in_file;
@@ -567,10 +567,11 @@ generic_direct_IO(int rw, struct inode *
 	dio.curr_page = 0;
 	bytes = count;
 	dio.total_pages = 0;
-	if (offset & PAGE_SIZE) {
+	if (user_addr & (PAGE_SIZE - 1)) {
 		dio.total_pages++;
-		bytes -= PAGE_SIZE - (offset & ~(PAGE_SIZE - 1));
+		bytes -= PAGE_SIZE - (user_addr & (PAGE_SIZE - 1));
 	}
+
 	dio.total_pages += (bytes + PAGE_SIZE - 1) / PAGE_SIZE;
 	dio.curr_user_address = user_addr;
 
--- 2.5.30/fs/block_dev.c~direct_io-fixes	Fri Aug  9 17:36:47 2002
+++ 2.5.30-akpm/fs/block_dev.c	Fri Aug  9 17:36:47 2002
@@ -105,7 +105,7 @@ static int
 blkdev_get_blocks(struct inode *inode, sector_t iblock,
 		unsigned long max_blocks, struct buffer_head *bh, int create)
 {
-	if ((iblock + max_blocks) >= max_block(inode->i_bdev))
+	if ((iblock + max_blocks) > max_block(inode->i_bdev))
 		return -EIO;
 
 	bh->b_bdev = inode->i_bdev;

.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-08-10  0:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-08-10  0:57 [patch 10/12] direct IO fixes Andrew Morton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.