* [PATCH] fsck.f2fs: no need to fix SIT type for COLD_DATA
@ 2014-11-25 1:48 Jaegeuk Kim
0 siblings, 0 replies; only message in thread
From: Jaegeuk Kim @ 2014-11-25 1:48 UTC (permalink / raw)
To: linux-f2fs-devel; +Cc: Jaegeuk Kim
If hot or warm data blocks were moved to the cold log, we should remain them
in the cold log.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
---
fsck/fsck.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/fsck/fsck.c b/fsck/fsck.c
index f7309d6..09bb26f 100644
--- a/fsck/fsck.c
+++ b/fsck/fsck.c
@@ -1007,9 +1007,13 @@ int check_sit_types(struct f2fs_sb_info *sbi)
se = get_seg_entry(sbi, i);
if (se->orig_type != se->type) {
- FIX_MSG("Wrong segment type [0x%x] %x -> %x",
- i, se->orig_type, se->type);
- err = -EINVAL;
+ if (se->orig_type == CURSEG_COLD_DATA) {
+ se->type = se->orig_type;
+ } else {
+ FIX_MSG("Wrong segment type [0x%x] %x -> %x",
+ i, se->orig_type, se->type);
+ err = -EINVAL;
+ }
}
}
return err;
--
2.1.1
------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2014-11-25 1:48 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-25 1:48 [PATCH] fsck.f2fs: no need to fix SIT type for COLD_DATA Jaegeuk Kim
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).