summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/async-thread.c
diff options
context:
space:
mode:
authorQu Wenruo2014-03-06 05:19:50 +0100
committerJosef Bacik2014-03-10 20:17:20 +0100
commit6db8914f9763d3f0a7610b497d44f93a4c17e62e (patch)
treebf266c5830b629ca7a85b7fd1cefbbde57afdc35 /fs/btrfs/async-thread.c
parentBtrfs: add readahead for send_write (diff)
downloadkernel-qcow2-linux-6db8914f9763d3f0a7610b497d44f93a4c17e62e.tar.gz
kernel-qcow2-linux-6db8914f9763d3f0a7610b497d44f93a4c17e62e.tar.xz
kernel-qcow2-linux-6db8914f9763d3f0a7610b497d44f93a4c17e62e.zip
btrfs: Cleanup the btrfs_workqueue related function type
The new btrfs_workqueue still use open-coded function defition, this patch will change them into btrfs_func_t type which is much the same as kernel workqueue. Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com> Signed-off-by: Josef Bacik <jbacik@fb.com>
Diffstat (limited to 'fs/btrfs/async-thread.c')
-rw-r--r--fs/btrfs/async-thread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/btrfs/async-thread.c b/fs/btrfs/async-thread.c
index a709585e2c97..d8c07e5c1f24 100644
--- a/fs/btrfs/async-thread.c
+++ b/fs/btrfs/async-thread.c
@@ -255,9 +255,9 @@ static void normal_work_helper(struct work_struct *arg)
}
void btrfs_init_work(struct btrfs_work *work,
- void (*func)(struct btrfs_work *),
- void (*ordered_func)(struct btrfs_work *),
- void (*ordered_free)(struct btrfs_work *))
+ btrfs_func_t func,
+ btrfs_func_t ordered_func,
+ btrfs_func_t ordered_free)
{
work->func = func;
work->ordered_func = ordered_func;