| To: | xfs@xxxxxxxxxxx |
|---|---|
| Subject: | [PATCH 5/9] xfs: switch to NOFS allocation under i_lock in xfs_dir_cilookup_result |
| From: | Christoph Hellwig <hch@xxxxxxxxxxxxx> |
| Date: | Tue, 25 Aug 2009 14:21:39 -0400 |
| References: | <20090825182134.299870049@xxxxxxxxxxxxxxxxxxxxxx> |
| User-agent: | quilt/0.47-1 |
xfs_dir_cilookup_result is always called with i_lock held, but i_lock is taken
in reclaim context so all allocations under it must avoid recursions into the
filesystem.
Reported by the new reclaim context tracing in lockdep.
Signed-off-by: Christoph Hellwig <hch@xxxxxx>
Index: linux-2.6/fs/xfs/xfs_dir2.c
===================================================================
--- linux-2.6.orig/fs/xfs/xfs_dir2.c 2009-07-10 13:05:24.817364338 +0200
+++ linux-2.6/fs/xfs/xfs_dir2.c 2009-07-10 13:16:00.834365485 +0200
@@ -256,7 +256,7 @@ xfs_dir_cilookup_result(
!(args->op_flags & XFS_DA_OP_CILOOKUP))
return EEXIST;
- args->value = kmem_alloc(len, KM_MAYFAIL);
+ args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
if (!args->value)
return ENOMEM;
|
| Previous by Date: | [PATCH 4/9] xfs: switch to NOFS allocation under i_lock in xfs_da_buf_make, Christoph Hellwig |
|---|---|
| Next by Date: | [PATCH 2/9] xfs: switch to NOFS allocation under i_lock in xfs_getbmap, Christoph Hellwig |
| Previous by Thread: | [PATCH 4/9] xfs: switch to NOFS allocation under i_lock in xfs_da_buf_make, Christoph Hellwig |
| Next by Thread: | [PATCH 2/9] xfs: switch to NOFS allocation under i_lock in xfs_getbmap, Christoph Hellwig |
| Indexes: | [Date] [Thread] [Top] [All Lists] |