The patch titled mm-fix-assertion-mapping-nrpages-==-0-in-end_writeback-v3 has been removed from the -mm tree. Its filename was mm-fix-assertion-mapping-nrpages-==-0-in-end_writeback-v3.patch This patch was dropped because it was folded into mm-fix-assertion-mapping-nrpages-==-0-in-end_writeback.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: mm-fix-assertion-mapping-nrpages-==-0-in-end_writeback-v3 From: Jan Kara <jack@xxxxxxx> Signed-off-by: Jan Kara <jack@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/inode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN fs/inode.c~mm-fix-assertion-mapping-nrpages-==-0-in-end_writeback-v3 fs/inode.c --- a/fs/inode.c~mm-fix-assertion-mapping-nrpages-==-0-in-end_writeback-v3 +++ a/fs/inode.c @@ -428,9 +428,9 @@ void end_writeback(struct inode *inode) * process of removing the last page (in __delete_from_page_cache()) * and we must not free mapping under it. */ - spin_lock(&inode->i_data.tree_lock); + spin_lock_irq(&inode->i_data.tree_lock); BUG_ON(inode->i_data.nrpages); - spin_unlock(&inode->i_data.tree_lock); + spin_unlock_irq(&inode->i_data.tree_lock); BUG_ON(!list_empty(&inode->i_data.private_list)); BUG_ON(!(inode->i_state & I_FREEING)); BUG_ON(inode->i_state & I_CLEAR); _ Patches currently in -mm which might be from jack@xxxxxxx are origin.patch mm-fix-assertion-mapping-nrpages-==-0-in-end_writeback.patch linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html