projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
441dff3
)
fat: no need to reset EOF in ent_put for FAT32
author
Namjae Jeon
<
[email protected]
>
Fri, 5 Oct 2012 00:15:02 +0000
(17:15 -0700)
committer
Linus Torvalds
<
[email protected]
>
Fri, 5 Oct 2012 18:05:12 +0000
(
03:05
+0900)
#define FAT_ENT_EOF(EOF_FAT32)
there is no need to reset value of 'new' for FAT32 as the values is
already correct
Signed-off-by: Namjae Jeon <
[email protected]
>
Signed-off-by: Amit Sahrawat <
[email protected]
>
Acked-by: OGAWA Hirofumi <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
fs/fat/fatent.c
patch
|
blob
|
history
diff --git
a/fs/fat/fatent.c
b/fs/fat/fatent.c
index 67fd2374472038d967516f5ea420fa78e10125a4..260705c58062cc425b8c656434883de98e1b9e2a 100644
(file)
--- a/
fs/fat/fatent.c
+++ b/
fs/fat/fatent.c
@@
-186,9
+186,6
@@
static void fat16_ent_put(struct fat_entry *fatent, int new)
static void fat32_ent_put(struct fat_entry *fatent, int new)
{
- if (new == FAT_ENT_EOF)
- new = EOF_FAT32;
-
WARN_ON(new & 0xf0000000);
new |= le32_to_cpu(*fatent->u.ent32_p) & ~0x0fffffff;
*fatent->u.ent32_p = cpu_to_le32(new);