diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2020-05-03 22:06:47 +0200 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2020-06-03 23:16:50 -0400 |
commit | 80dd4978ddd78b2fe5aec2d52b69cbc2d06b08d8 (patch) | |
tree | 606123bf686e5d0f0cced9d8bebff4aef928b5b5 | |
parent | be809e1274ebc043640eeeb287accb7b4a4bcbff (diff) | |
download | linux-80dd4978ddd78b2fe5aec2d52b69cbc2d06b08d8.tar.bz2 |
ext4: fix a typo in a comment
s/extnets/extents/
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/20200503200647.154701-1-christophe.jaillet@wanadoo.fr
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r-- | fs/ext4/extents.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 03b94c6e90cc..3ca797faa86b 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -4503,7 +4503,7 @@ static long ext4_zero_range(struct file *file, loff_t offset, inode_lock(inode); /* - * Indirect files do not support unwritten extnets + * Indirect files do not support unwritten extents */ if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { ret = -EOPNOTSUPP; |