diff options
author | Namhyung Kim <namhyung@gmail.com> | 2011-01-11 07:15:03 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-01-19 09:40:13 -0500 |
commit | f0940cee222790e6e995a23f25c4ffb23f939a24 (patch) | |
tree | 8f460d6ed93878c52f18322569be8717ae0b1546 /fs/direct-io.c | |
parent | 5a3a7658863f74f28cef53b9336bff7423659801 (diff) |
dio: fix typos in comments
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Cc: Jiri Kosina <trivial@kernel.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'fs/direct-io.c')
-rw-r--r-- | fs/direct-io.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/direct-io.c b/fs/direct-io.c index 85882f6ba5f7..8201c2558d85 100644 --- a/fs/direct-io.c +++ b/fs/direct-io.c | |||
@@ -641,11 +641,11 @@ static int dio_send_cur_page(struct dio *dio) | |||
641 | /* | 641 | /* |
642 | * See whether this new request is contiguous with the old. | 642 | * See whether this new request is contiguous with the old. |
643 | * | 643 | * |
644 | * Btrfs cannot handl having logically non-contiguous requests | 644 | * Btrfs cannot handle having logically non-contiguous requests |
645 | * submitted. For exmple if you have | 645 | * submitted. For example if you have |
646 | * | 646 | * |
647 | * Logical: [0-4095][HOLE][8192-12287] | 647 | * Logical: [0-4095][HOLE][8192-12287] |
648 | * Phyiscal: [0-4095] [4096-8181] | 648 | * Physical: [0-4095] [4096-8191] |
649 | * | 649 | * |
650 | * We cannot submit those pages together as one BIO. So if our | 650 | * We cannot submit those pages together as one BIO. So if our |
651 | * current logical offset in the file does not equal what would | 651 | * current logical offset in the file does not equal what would |