diff options
author | Liu xuzhi <liu.xuzhi@zte.com.cn> | 2021-03-18 17:31:31 -0700 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2021-03-19 11:28:09 +0100 |
commit | e312c97ea253f076f11ac38cbe81075a48557f65 (patch) | |
tree | 1f7cd28176d2d8272873244702a4d340a047e3af /fs | |
parent | f998d7d545a2248faf5a4311240941dfe813eedc (diff) | |
download | linux-rpi-e312c97ea253f076f11ac38cbe81075a48557f65.tar.gz linux-rpi-e312c97ea253f076f11ac38cbe81075a48557f65.tar.bz2 linux-rpi-e312c97ea253f076f11ac38cbe81075a48557f65.zip |
fs/ext2/: fix misspellings using codespell tool
A typo is found out by codespell tool in 1107th lines of super.c:
$ codespell ./fs/ext2/
./super.c:1107: fileystem ==> filesystem
Fix a typo found by codespell.
Link: https://lore.kernel.org/r/20210319003131.484738-1-liu.xuzhi@zte.com.cn
Signed-off-by: Liu xuzhi <liu.xuzhi@zte.com.cn>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext2/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext2/super.c b/fs/ext2/super.c index 6c4753277916..d2fd9707e953 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c @@ -1104,7 +1104,7 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent) get_random_bytes(&sbi->s_next_generation, sizeof(u32)); spin_lock_init(&sbi->s_next_gen_lock); - /* per fileystem reservation list head & lock */ + /* per filesystem reservation list head & lock */ spin_lock_init(&sbi->s_rsv_window_lock); sbi->s_rsv_window_root = RB_ROOT; /* |