Skip to content

Commit

Permalink
f2fs: fix typos
Browse files Browse the repository at this point in the history
Fix typos: datas -> data.

Via codespell.

Signed-off-by: Andrew Kreimer <[email protected]>
Signed-off-by: Jaegeuk Kim <[email protected]>
  • Loading branch information
algonell authored and Jaegeuk Kim committed Oct 28, 2024
1 parent e0c8802 commit af4c5ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/f2fs/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit af4c5ca

Please sign in to comment.