diff options
| author | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2011-03-30 22:57:33 -0300 | 
|---|---|---|
| committer | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2011-03-31 11:26:23 -0300 | 
| commit | 25985edcedea6396277003854657b5f3cb31a628 (patch) | |
| tree | f026e810210a2ee7290caeb737c23cb6472b7c38 /fs/ext4/extents.c | |
| parent | 6aba74f2791287ec407e0f92487a725a25908067 (diff) | |
| download | olio-linux-3.10-25985edcedea6396277003854657b5f3cb31a628.tar.xz olio-linux-3.10-25985edcedea6396277003854657b5f3cb31a628.zip  | |
Fix common misspellings
Fixes generated by 'codespell' and manually reviewed.
Signed-off-by: Lucas De Marchi <lucas.demarchi@profusion.mobi>
Diffstat (limited to 'fs/ext4/extents.c')
| -rw-r--r-- | fs/ext4/extents.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index dd2cb5076ff..4890d6f3ad1 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -1729,7 +1729,7 @@ repeat:  		BUG_ON(npath->p_depth != path->p_depth);  		eh = npath[depth].p_hdr;  		if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) { -			ext_debug("next leaf isnt full(%d)\n", +			ext_debug("next leaf isn't full(%d)\n",  				  le16_to_cpu(eh->eh_entries));  			path = npath;  			goto repeat; @@ -2533,7 +2533,7 @@ static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex)  /*   * This function is called by ext4_ext_map_blocks() if someone tries to write   * to an uninitialized extent. It may result in splitting the uninitialized - * extent into multiple extents (upto three - one initialized and two + * extent into multiple extents (up to three - one initialized and two   * uninitialized).   * There are three possibilities:   *   a> There is no split required: Entire extent should be initialized @@ -3174,7 +3174,7 @@ ext4_ext_handle_uninitialized_extents(handle_t *handle, struct inode *inode,  						   path, flags);  		/*  		 * Flag the inode(non aio case) or end_io struct (aio case) -		 * that this IO needs to convertion to written when IO is +		 * that this IO needs to conversion to written when IO is  		 * completed  		 */  		if (io && !(io->flag & EXT4_IO_END_UNWRITTEN)) { @@ -3460,10 +3460,10 @@ int ext4_ext_map_blocks(handle_t *handle, struct inode *inode,  		ext4_ext_mark_uninitialized(&newex);  		/*  		 * io_end structure was created for every IO write to an -		 * uninitialized extent. To avoid unecessary conversion, +		 * uninitialized extent. To avoid unnecessary conversion,  		 * here we flag the IO that really needs the conversion.  		 * For non asycn direct IO case, flag the inode state -		 * that we need to perform convertion when IO is done. +		 * that we need to perform conversion when IO is done.  		 */  		if ((flags & EXT4_GET_BLOCKS_PRE_IO)) {  			if (io && !(io->flag & EXT4_IO_END_UNWRITTEN)) {  |