]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
f2fs: Fix typo in comments
authorMasanari Iida <standby24x7@gmail.com>
Mon, 18 Mar 2013 23:03:35 +0000 (08:03 +0900)
committerJiri Kosina <jkosina@suse.cz>
Tue, 19 Mar 2013 08:44:55 +0000 (09:44 +0100)
Correct spelling typo in comments

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
fs/f2fs/f2fs.h
fs/f2fs/gc.c
fs/f2fs/super.c

index cc2213afdcc74a99ef460f0bf8bf9b48e3d3645b..201c8d3b0f863f829dae24de708c9077576dc763 100644 (file)
@@ -137,7 +137,7 @@ struct extent_info {
        rwlock_t ext_lock;      /* rwlock for consistency */
        unsigned int fofs;      /* start offset in a file */
        u32 blk_addr;           /* start block address of the extent */
-       unsigned int len;       /* lenth of the extent */
+       unsigned int len;       /* length of the extent */
 };
 
 /*
index 94b8a0c4845358ab34dd16b02b9ce12147f04fac..2e3eb2d4fc30eebcd40c1b34283302461dfea3f3 100644 (file)
@@ -222,7 +222,7 @@ static unsigned int get_gc_cost(struct f2fs_sb_info *sbi, unsigned int segno,
 }
 
 /*
- * This function is called from two pathes.
+ * This function is called from two paths.
  * One is garbage collection and the other is SSR segment selection.
  * When it is called during GC, it just gets a victim segment
  * and it does not remove it from dirty seglist.
index 8c117649a035dc5e5df58264c25b87c1d3a43ae5..45db17bb71bc8e974e5cc68a345819019f8744cc 100644 (file)
@@ -82,7 +82,7 @@ static struct inode *f2fs_alloc_inode(struct super_block *sb)
 
        init_once((void *) fi);
 
-       /* Initilize f2fs-specific inode info */
+       /* Initialize f2fs-specific inode info */
        fi->vfs_inode.i_version = 1;
        atomic_set(&fi->dirty_dents, 0);
        fi->i_current_depth = 1;