summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_super.c
diff options
context:
space:
mode:
authorShaohua Li2012-04-24 15:23:46 +0200
committerBen Myers2012-05-14 23:20:23 +0200
commit7582df516c93046b8d2111a780c69de77f9882fb (patch)
tree1ba200ed20ee7da46337c0ad8c3a685ac81b29a4 /fs/xfs/xfs_super.c
parentxfs: punch all delalloc blocks beyond EOF on write failure. (diff)
downloadkernel-qcow2-linux-7582df516c93046b8d2111a780c69de77f9882fb.tar.gz
kernel-qcow2-linux-7582df516c93046b8d2111a780c69de77f9882fb.tar.xz
kernel-qcow2-linux-7582df516c93046b8d2111a780c69de77f9882fb.zip
xfs: using GFP_NOFS for blkdev_issue_flush
Issuing a block device flush request in transaction context using GFP_KERNEL directly can cause deadlocks due to memory reclaim recursion. Use GFP_NOFS to avoid recursion from reclaim context. Signed-off-by: Shaohua Li <shli@fusionio.com> Reviewed-by: Mark Tinguely <tinguely@sgi.com> Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_super.c')
-rw-r--r--fs/xfs/xfs_super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c
index b5aafc395ea1..28d1f508b578 100644
--- a/fs/xfs/xfs_super.c
+++ b/fs/xfs/xfs_super.c
@@ -622,7 +622,7 @@ void
xfs_blkdev_issue_flush(
xfs_buftarg_t *buftarg)
{
- blkdev_issue_flush(buftarg->bt_bdev, GFP_KERNEL, NULL);
+ blkdev_issue_flush(buftarg->bt_bdev, GFP_NOFS, NULL);
}
STATIC void