aboutsummaryrefslogtreecommitdiff
path: root/fs/ntfs3/super.c
diff options
context:
space:
mode:
authorGravatar Colin Ian King <colin.king@canonical.com> 2021-08-16 11:13:08 +0100
committerGravatar Konstantin Komarov <almaz.alexandrovich@paragon-software.com> 2021-08-27 17:04:45 +0300
commitf8d87ed9f0d546ac5b05e8e7d2b148d4b77599fa (patch)
treef5f1395d93ae56c706843b2be5958de152f48849 /fs/ntfs3/super.c
parentMerge branch 'torvalds:master' into master (diff)
downloadlinux-f8d87ed9f0d546ac5b05e8e7d2b148d4b77599fa.tar.gz
linux-f8d87ed9f0d546ac5b05e8e7d2b148d4b77599fa.tar.bz2
linux-f8d87ed9f0d546ac5b05e8e7d2b148d4b77599fa.zip
fs/ntfs3: Fix various spelling mistakes
There is a spelling mistake in a ntfs_err error message. Also fix various spelling mistakes in comments. Signed-off-by: Colin Ian King <colin.king@canonical.com> Reviewed-by: Kari Argillander <kari.argillander@gmail.com> Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Diffstat (limited to 'fs/ntfs3/super.c')
-rw-r--r--fs/ntfs3/super.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c
index 6be13e256c1a..84d4f389f685 100644
--- a/fs/ntfs3/super.c
+++ b/fs/ntfs3/super.c
@@ -124,7 +124,7 @@ void ntfs_inode_printk(struct inode *inode, const char *fmt, ...)
/*
* Shared memory struct.
*
- * on-disk ntfs's upcase table is created by ntfs formater
+ * on-disk ntfs's upcase table is created by ntfs formatter
* 'upcase' table is 128K bytes of memory
* we should read it into memory when mounting
* Several ntfs volumes likely use the same 'upcase' table
@@ -1208,7 +1208,7 @@ static int ntfs_fill_super(struct super_block *sb, void *data, int silent)
sbi->def_entries = 1;
done = sizeof(struct ATTR_DEF_ENTRY);
sbi->reparse.max_size = MAXIMUM_REPARSE_DATA_BUFFER_SIZE;
- sbi->ea_max_size = 0x10000; /* default formater value */
+ sbi->ea_max_size = 0x10000; /* default formatter value */
while (done + sizeof(struct ATTR_DEF_ENTRY) <= bytes) {
u32 t32 = le32_to_cpu(t->type);