aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/sysfs.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-04-30 16:27:44 +0100
committerJaegeuk Kim <jaegeuk@kernel.org>2018-05-31 11:31:49 -0700
commit4580038e2d11ac7f5e0d6687a6a4e30a71d1b30c (patch)
treedd0ed61bc6542d9b3358d7a99137f0fbed728857 /fs/f2fs/sysfs.c
parentf2fs: enhance sanity_check_raw_super() to avoid potential overflows (diff)
downloadlinux-dev-4580038e2d11ac7f5e0d6687a6a4e30a71d1b30c.tar.xz
linux-dev-4580038e2d11ac7f5e0d6687a6a4e30a71d1b30c.zip
f2fs: fix spelling mistake: "extenstion" -> "extension"
Trivial fix to spelling mistake in extension list text Signed-off-by: Colin Ian King <colin.king@canonical.com> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/sysfs.c')
-rw-r--r--fs/f2fs/sysfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/sysfs.c b/fs/f2fs/sysfs.c
index 2c53de9251be..6d8d8f41e517 100644
--- a/fs/f2fs/sysfs.c
+++ b/fs/f2fs/sysfs.c
@@ -147,13 +147,13 @@ static ssize_t f2fs_sbi_show(struct f2fs_attr *a,
int len = 0, i;
len += snprintf(buf + len, PAGE_SIZE - len,
- "cold file extenstion:\n");
+ "cold file extension:\n");
for (i = 0; i < cold_count; i++)
len += snprintf(buf + len, PAGE_SIZE - len, "%s\n",
extlist[i]);
len += snprintf(buf + len, PAGE_SIZE - len,
- "hot file extenstion:\n");
+ "hot file extension:\n");
for (i = cold_count; i < cold_count + hot_count; i++)
len += snprintf(buf + len, PAGE_SIZE - len, "%s\n",
extlist[i]);