diff options
author | Xiang wangx <wangxiang@cdjrlc.com> | 2022-06-05 15:55:09 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2022-06-06 10:53:03 +0300 |
commit | 2aab03b86766a27f99a0b24f63e1730faac128d0 (patch) | |
tree | 069582cc164f86f734b10a6d62f9b8a31fce5c43 /fs | |
parent | f2906aa863381afb0015a9eb7fefad885d4e5a56 (diff) | |
download | linux-2aab03b86766a27f99a0b24f63e1730faac128d0.tar.xz |
fs: Fix syntax errors in comments
Delete the redundant word 'not'.
Link: https://lore.kernel.org/r/20220605125509.14837-1-wangxiang@cdjrlc.com
Signed-off-by: Xiang wangx <wangxiang@cdjrlc.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext2/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext2/inode.c b/fs/ext2/inode.c index 360ce3604a2d..e6b932219803 100644 --- a/fs/ext2/inode.c +++ b/fs/ext2/inode.c @@ -1549,7 +1549,7 @@ static int __ext2_write_inode(struct inode *inode, int do_sync) if (IS_ERR(raw_inode)) return -EIO; - /* For fields not not tracking in the in-memory inode, + /* For fields not tracking in the in-memory inode, * initialise them to zero for new inodes. */ if (ei->i_state & EXT2_STATE_NEW) memset(raw_inode, 0, EXT2_SB(sb)->s_inode_size); |