nilfs2: fix dirty page accounting leak causing hang at write

Bruno Prémont and Dunphy, Bill noticed me that NILFS will certainly
hang on ARM-based targets.

I found this was caused by an underflow of dirty pages counter. A
b-tree cache routine was marking page dirty without adjusting page
account information.

This fixes the dirty page accounting leak and resolves the hang on
arm-based targets.

Reported-by: Bruno Prémont <bonbons@linux-vserver.org>
Reported-by: Dunphy, Bill <WDunphy@tandbergdata.com>
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Tested-by: Bruno Prémont <bonbons@linux-vserver.org>
Cc: stable <stable@kernel.org>

+1 -2
+1 -2
fs/nilfs2/btnode.c
··· 276 276 "invalid oldkey %lld (newkey=%lld)", 277 277 (unsigned long long)oldkey, 278 278 (unsigned long long)newkey); 279 - if (!test_set_buffer_dirty(obh) && TestSetPageDirty(opage)) 280 - BUG(); 279 + nilfs_btnode_mark_dirty(obh); 281 280 282 281 spin_lock_irq(&btnc->tree_lock); 283 282 radix_tree_delete(&btnc->page_tree, oldkey);