Split the assert in gfs2_trans_end into two parts.

Signed-off-by: Andreas Gruenbacher <agrue...@redhat.com>
---
 fs/gfs2/trans.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/gfs2/trans.c b/fs/gfs2/trans.c
index 6d4bf7ea7b3b..7705f04621f4 100644
--- a/fs/gfs2/trans.c
+++ b/fs/gfs2/trans.c
@@ -109,8 +109,8 @@ void gfs2_trans_end(struct gfs2_sbd *sdp)
        nbuf -= tr->tr_num_buf_rm;
        nbuf -= tr->tr_num_databuf_rm;
 
-       if (gfs2_assert_withdraw(sdp, (nbuf <= tr->tr_blocks) &&
-                                      (tr->tr_num_revoke <= tr->tr_revokes)))
+       if (gfs2_assert_withdraw(sdp, nbuf <= tr->tr_blocks) ||
+           gfs2_assert_withdraw(sdp, tr->tr_num_revoke <= tr->tr_revokes))
                gfs2_print_trans(sdp, tr);
 
        gfs2_log_commit(sdp, tr);
-- 
2.26.2

Reply via email to