1

fs: fat: fix spelling typo of values

vaules -> values

Link: https://lkml.kernel.org/r/20210302034817.30384-1-dingsenjie@163.com
Signed-off-by: dingsenjie <dingsenjie@yulong.com>
Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
dingsenjie 2021-05-06 18:06:39 -07:00 committed by Linus Torvalds
parent 5afe69c2cc
commit a109ae2a02

View File

@ -771,7 +771,7 @@ int fat_trim_fs(struct inode *inode, struct fstrim_range *range)
/* /*
* FAT data is organized as clusters, trim at the granulary of cluster. * FAT data is organized as clusters, trim at the granulary of cluster.
* *
* fstrim_range is in byte, convert vaules to cluster index. * fstrim_range is in byte, convert values to cluster index.
* Treat sectors before data region as all used, not to trim them. * Treat sectors before data region as all used, not to trim them.
*/ */
ent_start = max_t(u64, range->start>>sbi->cluster_bits, FAT_START_ENT); ent_start = max_t(u64, range->start>>sbi->cluster_bits, FAT_START_ENT);