Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aed5f1dc authored by Chris Wilson's avatar Chris Wilson Committed by Eric Anholt
Browse files

drm/i915: Use a single thread workqueue



Our work is serialised so allocating per-cpu workqueues is overkill and
a waste of resources.

Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: default avatarEric Anholt <eric@anholt.net>
parent d0c3b04a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1416,7 +1416,7 @@ int i915_driver_load(struct drm_device *dev, unsigned long flags)
	if (ret)
		goto out_iomapfree;

	dev_priv->wq = create_workqueue("i915");
	dev_priv->wq = create_singlethread_workqueue("i915");
	if (dev_priv->wq == NULL) {
		DRM_ERROR("Failed to create our workqueue.\n");
		ret = -ENOMEM;