diff options
author | Qu Wenruo <quwenruo@cn.fujitsu.com> | 2014-02-28 03:46:06 +0100 |
---|---|---|
committer | Josef Bacik <jbacik@fb.com> | 2014-03-10 20:17:05 +0100 |
commit | 5cdc7ad337fb08f630ac3538fb10e4a75de2572d (patch) | |
tree | 687306cffdd6d1bee1717f1cea6e6900a7df0bb8 /fs/btrfs/ctree.h | |
parent | btrfs: Add threshold workqueue based on kernel workqueue (diff) | |
download | linux-5cdc7ad337fb08f630ac3538fb10e4a75de2572d.tar.xz linux-5cdc7ad337fb08f630ac3538fb10e4a75de2572d.zip |
btrfs: Replace fs_info->workers with btrfs_workqueue.
Use the newly created btrfs_workqueue_struct to replace the original
fs_info->workers
Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com>
Tested-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Josef Bacik <jbacik@fb.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r-- | fs/btrfs/ctree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index b2c0336db691..bd7cb8ca4d6c 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -1505,7 +1505,7 @@ struct btrfs_fs_info { * two */ struct btrfs_workers generic_worker; - struct btrfs_workers workers; + struct btrfs_workqueue_struct *workers; struct btrfs_workers delalloc_workers; struct btrfs_workers flush_workers; struct btrfs_workers endio_workers; |