[Devel] [PATCH RH9 v2 04/10] drivers/vhost: rework attaching cgroups to be worker aware
Andrey Zhadchenko
andrey.zhadchenko at virtuozzo.com
Thu Sep 8 18:32:51 MSK 2022
Rework vhost_attach_cgroups to manipulate specified worker.
Implement vhost_worker_flush as we need to flush specific worker.
https://jira.sw.ru/browse/PSBM-139414
Signed-off-by: Andrey Zhadchenko <andrey.zhadchenko at virtuozzo.com>
---
drivers/vhost/vhost.c | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
index bcdbbec06ddf..5199495d948a 100644
--- a/drivers/vhost/vhost.c
+++ b/drivers/vhost/vhost.c
@@ -262,6 +262,16 @@ void vhost_work_dev_flush(struct vhost_dev *dev)
}
EXPORT_SYMBOL_GPL(vhost_work_dev_flush);
+static void vhost_worker_flush(struct vhost_worker *w)
+{
+ struct vhost_flush_struct flush;
+
+ init_completion(&flush.wait_event);
+ vhost_work_init(&flush.work, vhost_flush_work);
+ vhost_work_queue_at_worker(w, &flush.work);
+ wait_for_completion(&flush.wait_event);
+}
+
/* Flush any work that has been scheduled. When calling this, don't hold any
* locks that are also used by the callback. */
void vhost_poll_flush(struct vhost_poll *poll)
@@ -567,14 +577,14 @@ static void vhost_attach_cgroups_work(struct vhost_work *work)
s->ret = cgroup_attach_task_all(s->owner, current);
}
-static int vhost_attach_cgroups(struct vhost_dev *dev)
+static int vhost_worker_attach_cgroups(struct vhost_worker *w)
{
struct vhost_attach_cgroups_struct attach;
attach.owner = current;
vhost_work_init(&attach.work, vhost_attach_cgroups_work);
- vhost_work_queue(dev, &attach.work);
- vhost_work_dev_flush(dev);
+ vhost_work_queue_at_worker(w, &attach.work);
+ vhost_worker_flush(w);
return attach.ret;
}
@@ -642,7 +652,7 @@ long vhost_dev_set_owner(struct vhost_dev *dev)
dev->nworkers = 1;
wake_up_process(worker); /* avoid contributing to loadavg */
- err = vhost_attach_cgroups(dev);
+ err = vhost_worker_attach_cgroups(&dev->workers[0]);
if (err)
goto err_cgroup;
}
--
2.31.1
More information about the Devel
mailing list