Replace the fs_info->readahead_workers with the newly created
btrfs_workqueue.

Signed-off-by: Qu Wenruo <quwen...@cn.fujitsu.com>
---
Changelog:
v1->v2:
  None
v2->v3:
  - Use the btrfs_workqueue_struct to replace readahead_workers.
---
 fs/btrfs/ctree.h   |  2 +-
 fs/btrfs/disk-io.c | 12 +++++-------
 fs/btrfs/reada.c   | 10 +++++-----
 fs/btrfs/super.c   |  2 +-
 4 files changed, 12 insertions(+), 14 deletions(-)

diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h
index edc3097..29fb7a6 100644
--- a/fs/btrfs/ctree.h
+++ b/fs/btrfs/ctree.h
@@ -1495,7 +1495,7 @@ struct btrfs_fs_info {
        struct btrfs_workqueue_struct *endio_freespace_worker;
        struct btrfs_workqueue_struct *submit_workers;
        struct btrfs_workqueue_struct *caching_workers;
-       struct btrfs_workers readahead_workers;
+       struct btrfs_workqueue_struct *readahead_workers;
 
        /*
         * fixup workers take dirty pages that didn't properly go through
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index 38b65d4..fe3a8be 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -2005,7 +2005,7 @@ static void btrfs_stop_all_workers(struct btrfs_fs_info 
*fs_info)
        btrfs_destroy_workqueue(fs_info->submit_workers);
        btrfs_stop_workers(&fs_info->delayed_workers);
        btrfs_destroy_workqueue(fs_info->caching_workers);
-       btrfs_stop_workers(&fs_info->readahead_workers);
+       btrfs_destroy_workqueue(fs_info->readahead_workers);
        btrfs_destroy_workqueue(fs_info->flush_workers);
        btrfs_stop_workers(&fs_info->qgroup_rescan_workers);
 }
@@ -2536,13 +2536,12 @@ int open_ctree(struct super_block *sb,
        btrfs_init_workers(&fs_info->delayed_workers, "delayed-meta",
                           fs_info->thread_pool_size,
                           &fs_info->generic_worker);
-       btrfs_init_workers(&fs_info->readahead_workers, "readahead",
-                          fs_info->thread_pool_size,
-                          &fs_info->generic_worker);
+       fs_info->readahead_workers = btrfs_alloc_workqueue("readahead", NULL,
+                                                          NULL, flags,
+                                                          max_active, 2);
        btrfs_init_workers(&fs_info->qgroup_rescan_workers, "qgroup-rescan", 1,
                           &fs_info->generic_worker);
 
-       fs_info->readahead_workers.idle_thresh = 2;
 
        /*
         * btrfs_start_workers can really only fail because of ENOMEM so just
@@ -2551,7 +2550,6 @@ int open_ctree(struct super_block *sb,
        ret = btrfs_start_workers(&fs_info->generic_worker);
        ret |= btrfs_start_workers(&fs_info->fixup_workers);
        ret |= btrfs_start_workers(&fs_info->delayed_workers);
-       ret |= btrfs_start_workers(&fs_info->readahead_workers);
        ret |= btrfs_start_workers(&fs_info->qgroup_rescan_workers);
        if (ret) {
                err = -ENOMEM;
@@ -2563,7 +2561,7 @@ int open_ctree(struct super_block *sb,
              fs_info->endio_meta_write_workers &&
              fs_info->endio_write_workers && fs_info->endio_raid56_workers &&
              fs_info->endio_freespace_worker && fs_info->rmw_workers &&
-             fs_info->caching_workers)) {
+             fs_info->caching_workers && fs_info->readahead_workers)) {
                err = -ENOMEM;
                goto fail_sb_buffer;
        }
diff --git a/fs/btrfs/reada.c b/fs/btrfs/reada.c
index 1031b69..66b6fbe 100644
--- a/fs/btrfs/reada.c
+++ b/fs/btrfs/reada.c
@@ -91,8 +91,8 @@ struct reada_zone {
 };
 
 struct reada_machine_work {
-       struct btrfs_work       work;
-       struct btrfs_fs_info    *fs_info;
+       struct btrfs_work_struct        work;
+       struct btrfs_fs_info            *fs_info;
 };
 
 static void reada_extent_put(struct btrfs_fs_info *, struct reada_extent *);
@@ -732,7 +732,7 @@ static int reada_start_machine_dev(struct btrfs_fs_info 
*fs_info,
 
 }
 
-static void reada_start_machine_worker(struct btrfs_work *work)
+static void reada_start_machine_worker(struct btrfs_work_struct *work)
 {
        struct reada_machine_work *rmw;
        struct btrfs_fs_info *fs_info;
@@ -792,10 +792,10 @@ static void reada_start_machine(struct btrfs_fs_info 
*fs_info)
                /* FIXME we cannot handle this properly right now */
                BUG();
        }
-       rmw->work.func = reada_start_machine_worker;
+       btrfs_init_work(&rmw->work, reada_start_machine_worker, NULL, NULL);
        rmw->fs_info = fs_info;
 
-       btrfs_queue_worker(&fs_info->readahead_workers, &rmw->work);
+       btrfs_queue_work(fs_info->readahead_workers, &rmw->work);
 }
 
 #ifdef DEBUG
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
index e76c9d5..8e26ec5 100644
--- a/fs/btrfs/super.c
+++ b/fs/btrfs/super.c
@@ -1258,7 +1258,7 @@ static void btrfs_resize_thread_pool(struct btrfs_fs_info 
*fs_info,
        btrfs_workqueue_set_max(fs_info->endio_write_workers, new_pool_size);
        btrfs_workqueue_set_max(fs_info->endio_freespace_worker, new_pool_size);
        btrfs_set_max_workers(&fs_info->delayed_workers, new_pool_size);
-       btrfs_set_max_workers(&fs_info->readahead_workers, new_pool_size);
+       btrfs_workqueue_set_max(fs_info->readahead_workers, new_pool_size);
        btrfs_set_max_workers(&fs_info->scrub_wr_completion_workers,
                              new_pool_size);
 }
-- 
1.8.4.2

--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to