projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
14d7e9d
)
f2fs: remove repeated F2FS_SET_SB_DIRT call
author
Changman Lee
<cm224.lee@samsung.com>
Fri, 1 Feb 2013 09:05:09 +0000
(18:05 +0900)
committer
Jaegeuk Kim
<jaegeuk.kim@samsung.com>
Mon, 11 Feb 2013 22:15:01 +0000
(07:15 +0900)
F2FS_SET_SB_DIRT is called in inc_page_count and
it is directly called one more time in the next line.
Signed-off-by: Changman Lee <cm224.lee@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
fs/f2fs/checkpoint.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/f2fs/checkpoint.c
b/fs/f2fs/checkpoint.c
index d3b34d05211f9b246ff10cfd01e930457a7e5e7a..2887c196b0a2dce9a8eb4c3ee0269fcb06132206 100644
(file)
--- a/
fs/f2fs/checkpoint.c
+++ b/
fs/f2fs/checkpoint.c
@@
-164,7
+164,6
@@
static int f2fs_set_meta_page_dirty(struct page *page)
if (!PageDirty(page)) {
__set_page_dirty_nobuffers(page);
inc_page_count(sbi, F2FS_DIRTY_META);
- F2FS_SET_SB_DIRT(sbi);
return 1;
}
return 0;