]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
f2fs: fix typos
authorAndrew Kreimer <algonell@gmail.com>
Sun, 27 Oct 2024 14:06:08 +0000 (16:06 +0200)
committerJaegeuk Kim <jaegeuk@kernel.org>
Fri, 1 Nov 2024 01:24:41 +0000 (01:24 +0000)
Fix typos: datas -> data.

Via codespell.

Signed-off-by: Andrew Kreimer <algonell@gmail.com>
Reviewed-by: Chao Yu <chao@kernel.org>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/debug.c

index 278c8855ac0a2bf30a5a26ab510c3312f5590b32..468828288a4a8fab434f83280de590a56d7835f2 100644 (file)
@@ -694,9 +694,9 @@ static int stat_show(struct seq_file *s, void *v)
                           si->ndirty_node, si->node_pages);
                seq_printf(s, "  - dents: %4d in dirs:%4d (%4d)\n",
                           si->ndirty_dent, si->ndirty_dirs, si->ndirty_all);
-               seq_printf(s, "  - datas: %4d in files:%4d\n",
+               seq_printf(s, "  - data: %4d in files:%4d\n",
                           si->ndirty_data, si->ndirty_files);
-               seq_printf(s, "  - quota datas: %4d in quota files:%4d\n",
+               seq_printf(s, "  - quota data: %4d in quota files:%4d\n",
                           si->ndirty_qdata, si->nquota_files);
                seq_printf(s, "  - meta: %4d in %4d\n",
                           si->ndirty_meta, si->meta_pages);