- let all hooks be called from one place (reiser4_write_logs()) - don't call reiser4_post_write_back_hook() twice - fix reiser4_post_write_back_hook(): call the correct method of space allocator Signed-off-by: Ivan Shapovalov <intelfx100@xxxxxxxxx> --- fs/reiser4/block_alloc.c | 2 +- fs/reiser4/wander.c | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/fs/reiser4/block_alloc.c b/fs/reiser4/block_alloc.c index 81ed96f..3a4b667 100644 --- a/fs/reiser4/block_alloc.c +++ b/fs/reiser4/block_alloc.c @@ -1150,7 +1150,7 @@ void reiser4_post_write_back_hook(void) { assert("zam-504", get_current_super_private() != NULL); - sa_post_commit_hook(); + sa_post_write_back_hook(); } /* diff --git a/fs/reiser4/wander.c b/fs/reiser4/wander.c index 0b518c3..4e29de8 100644 --- a/fs/reiser4/wander.c +++ b/fs/reiser4/wander.c @@ -1140,7 +1140,6 @@ static int write_tx_back(struct commit_handle * ch) int ret; int barrier; - reiser4_post_commit_hook(); fq = get_fq_for_current_atom(); if (IS_ERR(fq)) return PTR_ERR(fq); @@ -1165,7 +1164,6 @@ static int write_tx_back(struct commit_handle * ch) if (ret) return ret; } - reiser4_post_write_back_hook(); return 0; } @@ -1251,6 +1249,7 @@ int reiser4_write_logs(long *nr_submitted) spin_lock_atom(atom); reiser4_atom_set_stage(atom, ASTAGE_POST_COMMIT); spin_unlock_atom(atom); + reiser4_post_commit_hook(); ret = write_tx_back(&ch); reiser4_post_write_back_hook(); -- 2.0.2 -- To unsubscribe from this list: send the line "unsubscribe reiserfs-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html