Commit 7b859fe7 authored by Chris Mason's avatar Chris Mason

Btrfs: Only do async bio submission for pdflush

Signed-off-by: default avatarChris Mason <chris.mason@oracle.com>
parent 699122f5
......@@ -381,6 +381,13 @@ int btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct inode *inode,
{
struct async_submit_bio *async;
/*
* inline writerback should stay inline, only hop to the async
* queue if we're pdflush
*/
if (!current_is_pdflush())
return submit_bio_hook(inode, rw, bio, mirror_num);
async = kmalloc(sizeof(*async), GFP_NOFS);
if (!async)
return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment