diff options
| author | Andrew Kreimer <algonell@gmail.com> | 2024-10-27 16:06:08 +0200 |
|---|---|---|
| committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2024-11-01 01:24:41 +0000 |
| commit | e63ce120b41ac5a904758a0231d43c6b328cd8fa (patch) | |
| tree | d5cffd642fdf2cfd3ae36afeb88f5972dc11c5e5 | |
| parent | f2fs: modify f2fs_is_checkpoint_ready logic to allow more data to be written ... (diff) | |
| download | linux-e63ce120b41ac5a904758a0231d43c6b328cd8fa.tar.gz linux-e63ce120b41ac5a904758a0231d43c6b328cd8fa.zip | |
f2fs: fix typos
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>
| -rw-r--r-- | fs/f2fs/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/debug.c b/fs/f2fs/debug.c index 278c8855ac0a..468828288a4a 100644 --- a/fs/f2fs/debug.c +++ b/fs/f2fs/debug.c @@ -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); |
