diff options
author | Joern Engel <joern@logfs.org> | 2010-03-28 18:10:07 +0200 |
---|---|---|
committer | Joern Engel <joern@logfs.org> | 2010-03-28 18:10:07 +0200 |
commit | 723b2ff40876678b49e61df34fb1d8001e34639d (patch) | |
tree | 509282c61e150b6059ea7f84c451641c2b69f757 /fs/logfs/journal.c | |
parent | 81def6b9862764924a99ac1b680e73ac8c80ac64 (diff) | |
download | linux-723b2ff40876678b49e61df34fb1d8001e34639d.tar.bz2 |
[LogFS] Clear PagePrivate when moving journal
do_logfs_journal_wl_pass() must call freeseg(), thereby clear
PagePrivate on all pages of the current journal segment.
Signed-off-by: Joern Engel <joern@logfs.org>
Diffstat (limited to 'fs/logfs/journal.c')
-rw-r--r-- | fs/logfs/journal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/logfs/journal.c b/fs/logfs/journal.c index 6ad30a4c9052..15454ac7bd93 100644 --- a/fs/logfs/journal.c +++ b/fs/logfs/journal.c @@ -821,6 +821,7 @@ void do_logfs_journal_wl_pass(struct super_block *sb) logfs_set_segment_reserved(sb, segno); } /* Manually move journal_area */ + freeseg(sb, area->a_segno); area->a_segno = super->s_journal_seg[0]; area->a_is_open = 0; area->a_used_bytes = 0; |