Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754873AbbESJy7 (ORCPT ); Tue, 19 May 2015 05:54:59 -0400 Received: from mx5-phx2.redhat.com ([209.132.183.37]:33426 "EHLO mx5-phx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753651AbbESJy5 (ORCPT ); Tue, 19 May 2015 05:54:57 -0400 Date: Tue, 19 May 2015 05:54:54 -0400 (EDT) From: Frediano Ziglio To: spice-devel@lists.freedesktop.org, David Airlie , dri-devel@lists.freedesktop.org, Dave Airlie Cc: linux-kernel@vger.kernel.org Message-ID: <163000764.1114319.1432029294390.JavaMail.zimbra@redhat.com> In-Reply-To: <1591625424.1112688.1432028990916.JavaMail.zimbra@redhat.com> Subject: [PATCH] Do not loop on ERESTARTSYS using interruptible waits MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Originating-IP: [10.36.6.24] X-Mailer: Zimbra 8.0.6_GA_5922 (ZimbraWebClient - FF38 (Linux)/8.0.6_GA_5922) Thread-Topic: Do not loop on ERESTARTSYS using interruptible waits Thread-Index: LOX3Jmty/uqEX4p42DGJ7itJRa4rcw== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3841 Lines: 97 This problem happens using KMS surfaces and QXL driver. To easy reproduce use KDE Plasma (which use surfaces a lot) and assure you are using KMS surfaces (QXL driver on Fedora/RedHat has a patch to stop using them). Open some complex application like LibreOffice and after a while your machine get stuck using 100% CPU on Xorg. The problem occurs as creating new surfaces not interruptible wait are used however instead of returning ERESTARTSYS back to userspace you try to loop but wait routines always keep returning ERESTARTSYS once the signal is marked. On out of memory conditions TTM module try to move objects to system memory and QXL assure surface is updated before the move. The fix handle differently this case using no interruptible wait so wait functions will wait instead of returning ERESTARTSYS. Note the when the loop occurs driver will send a lot of update requests causing more CPU usage on Qemu side too. Signed-off-by: Frediano Ziglio --- qxl/qxl_cmd.c | 12 +++--------- qxl/qxl_drv.h | 2 +- qxl/qxl_ioctl.c | 2 +- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/drivers/gpu/drm/drivers/gpu/drm/qxl/qxl_cmd.c b/qxl/qxl_cmd.c index 9782364..bd5404e 100644 --- a/drivers/gpu/drm/qxl/qxl_cmd.c +++ b/drivers/gpu/drm/qxl/qxl_cmd.c @@ -317,14 +317,11 @@ static void wait_for_io_cmd(struct qxl_device *qdev, uint8_t val, long port) { int ret; -restart: ret = wait_for_io_cmd_user(qdev, val, port, false); - if (ret == -ERESTARTSYS) - goto restart; } int qxl_io_update_area(struct qxl_device *qdev, struct qxl_bo *surf, - const struct qxl_rect *area) + const struct qxl_rect *area, bool intr) { int surface_id; uint32_t surface_width, surface_height; @@ -350,7 +347,7 @@ int qxl_io_update_area(struct qxl_device *qdev, struct qxl_bo *surf, mutex_lock(&qdev->update_area_mutex); qdev->ram_header->update_area = *area; qdev->ram_header->update_surface = surface_id; - ret = wait_for_io_cmd_user(qdev, 0, QXL_IO_UPDATE_AREA_ASYNC, true); + ret = wait_for_io_cmd_user(qdev, 0, QXL_IO_UPDATE_AREA_ASYNC, intr); mutex_unlock(&qdev->update_area_mutex); return ret; } @@ -588,10 +585,7 @@ int qxl_update_surface(struct qxl_device *qdev, struct qxl_bo *surf) rect.right = surf->surf.width; rect.top = 0; rect.bottom = surf->surf.height; -retry: - ret = qxl_io_update_area(qdev, surf, &rect); - if (ret == -ERESTARTSYS) - goto retry; + ret = qxl_io_update_area(qdev, surf, &rect, false); return ret; } diff --git a/drivers/gpu/drm/drivers/gpu/drm/qxl/qxl_drv.h b/qxl/qxl_drv.h index 7c6cafe..6745c44 100644 --- a/drivers/gpu/drm/qxl/qxl_drv.h +++ b/drivers/gpu/drm/qxl/qxl_drv.h @@ -462,7 +462,7 @@ void qxl_io_memslot_add(struct qxl_device *qdev, uint8_t id); void qxl_io_notify_oom(struct qxl_device *qdev); int qxl_io_update_area(struct qxl_device *qdev, struct qxl_bo *surf, - const struct qxl_rect *area); + const struct qxl_rect *area, bool intr); void qxl_io_reset(struct qxl_device *qdev); void qxl_io_monitors_config(struct qxl_device *qdev); diff --git a/drivers/gpu/drm/qxl/qxl_ioctl.c b/qxl/qxl_ioctl.c index b110883..afd7297 100644 --- a/drivers/gpu/drm/qxl/qxl_ioctl.c +++ b/drivers/gpu/drm/qxl/qxl_ioctl.c @@ -348,7 +348,7 @@ static int qxl_update_area_ioctl(struct drm_device *dev, void *data, goto out2; if (!qobj->surface_id) DRM_ERROR("got update area for surface with no id %d\n", update_area->handle); - ret = qxl_io_update_area(qdev, qobj, &area); + ret = qxl_io_update_area(qdev, qobj, &area, true); out2: qxl_bo_unreserve(qobj); -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/