>From chris.mason@xxxxxxxxxx Thu Dec 21 15:35:03 2006 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [PATCH 6 of 8] Make reiserfs safe for new DIO locking rules X-Mercurial-Node: 5a06df98f46d0b2d44421f92467cbb25812f6677 Message-Id: <5a06df98f46d0b2d4442.1166733302@xxxxxxxxxxxxxxxxxxx> In-Reply-To: <patchbomb.1166733296@xxxxxxxxxxxxxxxxxxx> Date: Thu, 21 Dec 2006 15:35:02 -0400 From: Chris Mason <chris.mason@xxxxxxxxxx> To: linux-fsdevel@xxxxxxxxxxxxxxx, akpm@xxxxxxxx, zach.brown@xxxxxxxxxx reiserfs is changed to use a version of reiserfs_get_block that is safe for filling holes without i_mutex held. Signed-off-by: Chris Mason <chris.mason@xxxxxxxxxx> diff -r bebaf8972a31 -r 5a06df98f46d fs/reiserfs/inode.c --- a/fs/reiserfs/inode.c Thu Dec 21 15:31:30 2006 -0500 +++ b/fs/reiserfs/inode.c Thu Dec 21 15:31:31 2006 -0500 @@ -469,7 +469,8 @@ static int reiserfs_get_blocks_direct_io bh_result->b_size = (1 << inode->i_blkbits); ret = reiserfs_get_block(inode, iblock, bh_result, - create | GET_BLOCK_NO_DANGLE); + create | GET_BLOCK_NO_DANGLE | + GET_BLOCK_NO_IMUX); if (ret) goto out; - To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html