projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7ea4d4
)
fs/fat: Don't multiply fatsize with sector size
author
Egbert Eich
<eich@suse.com>
Tue, 9 Apr 2013 21:11:55 +0000
(21:11 +0000)
committer
Tom Rini
<trini@ti.com>
Wed, 1 May 2013 20:24:02 +0000
(16:24 -0400)
Bugfix:
Here at this place we need the fat size in sectors not bytes.
This was found during code review when adding support for storage
devices with blocksizes != 512.
Signed-off-by: Egbert Eich <eich@suse.com>
fs/fat/fat_write.c
patch
|
blob
|
history
diff --git
a/fs/fat/fat_write.c
b/fs/fat/fat_write.c
index b4022aa29054abae1ae22d19e0015d18883c9545..fd07240daa8577fc08aec319ab517b50ad9d593a 100644
(file)
--- a/
fs/fat/fat_write.c
+++ b/
fs/fat/fat_write.c
@@
-120,7
+120,6
@@
static int flush_fat_buffer(fsdata *mydata)
__u8 *bufptr = mydata->fatbuf;
__u32 startblock = mydata->fatbufnum * FATBUFBLOCKS;
- fatlength *= mydata->sect_size;
startblock += mydata->fat_sect;
if (getsize > fatlength)