aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2010-06-11 06:17:00 -0400
committerJiri Kosina <jkosina@suse.cz>2010-06-16 12:05:05 -0400
commit421f91d21ad6f799dc7b489bb33cc560ccc56f98 (patch)
treeaaf9f6385233fdf9277e634603156c89ede7f770 /fs
parent65155b3708137fabee865dc4da822763c0c41208 (diff)
fix typos concerning "initiali[zs]e"
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'fs')
-rw-r--r--fs/befs/linuxvfs.c2
-rw-r--r--fs/ecryptfs/crypto.c2
-rw-r--r--fs/ext4/extents.c2
-rw-r--r--fs/ext4/super.c2
-rw-r--r--fs/freevxfs/vxfs_super.c2
-rw-r--r--fs/ocfs2/super.c2
-rw-r--r--fs/reiserfs/inode.c2
7 files changed, 7 insertions, 7 deletions
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c
index 34ddda888e63..dc39d2824885 100644
--- a/fs/befs/linuxvfs.c
+++ b/fs/befs/linuxvfs.c
@@ -436,7 +436,7 @@ befs_init_inodecache(void)
436 init_once); 436 init_once);
437 if (befs_inode_cachep == NULL) { 437 if (befs_inode_cachep == NULL) {
438 printk(KERN_ERR "befs_init_inodecache: " 438 printk(KERN_ERR "befs_init_inodecache: "
439 "Couldn't initalize inode slabcache\n"); 439 "Couldn't initialize inode slabcache\n");
440 return -ENOMEM; 440 return -ENOMEM;
441 } 441 }
442 442
diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c
index 1cc087635a5e..a2e3b562e65d 100644
--- a/fs/ecryptfs/crypto.c
+++ b/fs/ecryptfs/crypto.c
@@ -762,7 +762,7 @@ ecryptfs_decrypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat,
762 762
763/** 763/**
764 * ecryptfs_init_crypt_ctx 764 * ecryptfs_init_crypt_ctx
765 * @crypt_stat: Uninitilized crypt stats structure 765 * @crypt_stat: Uninitialized crypt stats structure
766 * 766 *
767 * Initialize the crypto context. 767 * Initialize the crypto context.
768 * 768 *
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
index 236b834b4ca8..146f1f6a9203 100644
--- a/fs/ext4/extents.c
+++ b/fs/ext4/extents.c
@@ -2918,7 +2918,7 @@ fix_extent_len:
2918 * One of more index blocks maybe needed if the extent tree grow after 2918 * One of more index blocks maybe needed if the extent tree grow after
2919 * the unintialized extent split. To prevent ENOSPC occur at the IO 2919 * the unintialized extent split. To prevent ENOSPC occur at the IO
2920 * complete, we need to split the uninitialized extent before DIO submit 2920 * complete, we need to split the uninitialized extent before DIO submit
2921 * the IO. The uninitilized extent called at this time will be split 2921 * the IO. The uninitialized extent called at this time will be split
2922 * into three uninitialized extent(at most). After IO complete, the part 2922 * into three uninitialized extent(at most). After IO complete, the part
2923 * being filled will be convert to initialized by the end_io callback function 2923 * being filled will be convert to initialized by the end_io callback function
2924 * via ext4_convert_unwritten_extents(). 2924 * via ext4_convert_unwritten_extents().
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index e14d22c170d5..8d7539c9d778 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -3008,7 +3008,7 @@ no_journal:
3008 ext4_ext_init(sb); 3008 ext4_ext_init(sb);
3009 err = ext4_mb_init(sb, needs_recovery); 3009 err = ext4_mb_init(sb, needs_recovery);
3010 if (err) { 3010 if (err) {
3011 ext4_msg(sb, KERN_ERR, "failed to initalize mballoc (%d)", 3011 ext4_msg(sb, KERN_ERR, "failed to initialize mballoc (%d)",
3012 err); 3012 err);
3013 goto failed_mount4; 3013 goto failed_mount4;
3014 } 3014 }
diff --git a/fs/freevxfs/vxfs_super.c b/fs/freevxfs/vxfs_super.c
index 1e8af939b3e4..5132c99b1ca2 100644
--- a/fs/freevxfs/vxfs_super.c
+++ b/fs/freevxfs/vxfs_super.c
@@ -135,7 +135,7 @@ static int vxfs_remount(struct super_block *sb, int *flags, char *data)
135} 135}
136 136
137/** 137/**
138 * vxfs_read_super - read superblock into memory and initalize filesystem 138 * vxfs_read_super - read superblock into memory and initialize filesystem
139 * @sbp: VFS superblock (to fill) 139 * @sbp: VFS superblock (to fill)
140 * @dp: fs private mount data 140 * @dp: fs private mount data
141 * @silent: do not complain loudly when sth is wrong 141 * @silent: do not complain loudly when sth is wrong
diff --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c
index 2c26ce251cb3..812f10233b10 100644
--- a/fs/ocfs2/super.c
+++ b/fs/ocfs2/super.c
@@ -2476,7 +2476,7 @@ static void ocfs2_delete_osb(struct ocfs2_super *osb)
2476 kfree(osb->slot_recovery_generations); 2476 kfree(osb->slot_recovery_generations);
2477 /* FIXME 2477 /* FIXME
2478 * This belongs in journal shutdown, but because we have to 2478 * This belongs in journal shutdown, but because we have to
2479 * allocate osb->journal at the start of ocfs2_initalize_osb(), 2479 * allocate osb->journal at the start of ocfs2_initialize_osb(),
2480 * we free it here. 2480 * we free it here.
2481 */ 2481 */
2482 kfree(osb->journal); 2482 kfree(osb->journal);
diff --git a/fs/reiserfs/inode.c b/fs/reiserfs/inode.c
index 0f22fdaf54ac..29db72203bde 100644
--- a/fs/reiserfs/inode.c
+++ b/fs/reiserfs/inode.c
@@ -1221,7 +1221,7 @@ static void init_inode(struct inode *inode, struct treepath *path)
1221 inode_set_bytes(inode, 1221 inode_set_bytes(inode,
1222 to_real_used_space(inode, inode->i_blocks, 1222 to_real_used_space(inode, inode->i_blocks,
1223 SD_V2_SIZE)); 1223 SD_V2_SIZE));
1224 /* read persistent inode attributes from sd and initalise 1224 /* read persistent inode attributes from sd and initialise
1225 generic inode flags from them */ 1225 generic inode flags from them */
1226 REISERFS_I(inode)->i_attrs = sd_v2_attrs(sd); 1226 REISERFS_I(inode)->i_attrs = sd_v2_attrs(sd);
1227 sd_attrs_to_i_attrs(sd_v2_attrs(sd), inode); 1227 sd_attrs_to_i_attrs(sd_v2_attrs(sd), inode);