[PATCH] ext3: fix list scanning in __cleanup_transaction

Fix a bug in list scanning that can cause us to skip the last buffer on the
checkpoint list (and hence fail to do any progress under some rather
unfavorable conditions).

The problem is we first do jh=next_jh and then test

} while (jh!=last_jh);

Hence we skip the last buffer on the list (if it was not the only buffer on
the list). As we already do jh=next_jh; in the beginning of the loop we
are safe to just remove the assignment in the end. It can happen that 'jh'
will be freed at the point we test jh != last_jh but that does not matter
as we never *dereference* the pointer.

Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Jan Kara and committed by
Linus Torvalds
7e3b11a9 00ea8145

-1
-1
fs/jbd/checkpoint.c
··· 188 } else { 189 jbd_unlock_bh_state(bh); 190 } 191 - jh = next_jh; 192 } while (jh != last_jh); 193 194 return ret;
··· 188 } else { 189 jbd_unlock_bh_state(bh); 190 } 191 } while (jh != last_jh); 192 193 return ret;