Skip to content
Snippets Groups Projects
Commit 6e2151c7 authored by Seung-Woo Kim's avatar Seung-Woo Kim Committed by Tom Rini
Browse files

fs: fat: fix wrong casting to unsigned value of sect_to_cluster()


After the commit 265edc03 ("fs/fat: Clean up open-coded sector
<-> cluster conversions"), it is hung up writing new file to FAT16
disk with more than 19 files in armv7. It is because result value
of sect_to_cluster() is not proper by casting from signed value to
unsigned value. Fix the wrong casting of sect_to_cluster().

Reported-by: default avatarJaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: default avatarSeung-Woo Kim <sw0312.kim@samsung.com>
Reviewed-by: default avatarLukasz Majewski <lukma@denx.de>
parent 920be88e
No related branches found
No related tags found
No related merge requests found
...@@ -180,7 +180,7 @@ static inline u32 clust_to_sect(fsdata *fsdata, u32 clust) ...@@ -180,7 +180,7 @@ static inline u32 clust_to_sect(fsdata *fsdata, u32 clust)
return fsdata->data_begin + clust * fsdata->clust_size; return fsdata->data_begin + clust * fsdata->clust_size;
} }
static inline u32 sect_to_clust(fsdata *fsdata, u32 sect) static inline u32 sect_to_clust(fsdata *fsdata, int sect)
{ {
return (sect - fsdata->data_begin) / fsdata->clust_size; return (sect - fsdata->data_begin) / fsdata->clust_size;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment