Skip to content

Commit

Permalink
logfs: Free areas before calling generic_shutdown_super()
Browse files Browse the repository at this point in the history
Or hit an assertion in map_invalidatepage() instead.

Signed-off-by: Joern Engel <joern@logfs.org>
  • Loading branch information
Joern Engel authored and Prasad Joshi committed Jan 28, 2012
1 parent 6c69494 commit 1bcceaf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
1 change: 1 addition & 0 deletions fs/logfs/logfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,7 @@ int logfs_init_mapping(struct super_block *sb);
void logfs_sync_area(struct logfs_area *area);
void logfs_sync_segments(struct super_block *sb);
void freeseg(struct super_block *sb, u32 segno);
void free_areas(struct super_block *sb);

/* area handling */
int logfs_init_areas(struct super_block *sb);
Expand Down
14 changes: 10 additions & 4 deletions fs/logfs/segment.c
Original file line number Diff line number Diff line change
Expand Up @@ -862,6 +862,16 @@ static void free_area(struct logfs_area *area)
kfree(area);
}

void free_areas(struct super_block *sb)
{
struct logfs_super *super = logfs_super(sb);
int i;

for_each_area(i)
free_area(super->s_area[i]);
free_area(super->s_journal_area);
}

static struct logfs_area *alloc_area(struct super_block *sb)
{
struct logfs_area *area;
Expand Down Expand Up @@ -944,10 +954,6 @@ int logfs_init_areas(struct super_block *sb)
void logfs_cleanup_areas(struct super_block *sb)
{
struct logfs_super *super = logfs_super(sb);
int i;

btree_grim_visitor128(&super->s_object_alias_tree, 0, kill_alias);
for_each_area(i)
free_area(super->s_area[i]);
free_area(super->s_journal_area);
}
1 change: 1 addition & 0 deletions fs/logfs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,7 @@ static void logfs_kill_sb(struct super_block *sb)
/* Alias entries slow down mount, so evict as many as possible */
sync_filesystem(sb);
logfs_write_anchor(sb);
free_areas(sb);

/*
* From this point on alias entries are simply dropped - and any
Expand Down

0 comments on commit 1bcceaf

Please sign in to comment.