From nobody Wed Sep 17 01:27:54 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7D7E5C46467 for ; Mon, 26 Dec 2022 15:53:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232211AbiLZPxa (ORCPT ); Mon, 26 Dec 2022 10:53:30 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39658 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232206AbiLZPxJ (ORCPT ); Mon, 26 Dec 2022 10:53:09 -0500 Received: from fanzine2.igalia.com (fanzine2.igalia.com [213.97.179.56]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5BE072677 for ; Mon, 26 Dec 2022 07:53:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=igalia.com; s=20170329; h=Content-Transfer-Encoding:Content-Type:MIME-Version:References: In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=5SmaVKwidGFUBxDk6HT8gctynP24Ms6u0M3QIUhvqTc=; b=sqM2assGCvM8FowEX27V/FRsFZ KR/pvQOO4i5bL7fpJQpBedM5FiJH8e/I2d5B4ivKliS8hVvNcVpIt83KzlcB8+eDUC5P7LVOUg98m lJlhwwQLjrZTbzrJnAyhXH8i72YfsW9AQkTsUI5iSlU6Lyp1EubBhF6PpmJk/emBeC7qTIxIR4EHr wvqIsPBxpVSfrstSkLYKoTzupcIktr6WT16TjF4t3iAVT08mdiP6l8pozd6wkkXyus8Gh3s39eXGA 8kuPvLHHC1PMcPy4c+aatITAvKEDrckyXqbPgUX0NIzzHndJ8o11sdEanNrIOTcthv6d1UtESJPMh bzxClPsQ==; Received: from [187.36.234.139] (helo=bowie..) by fanzine2.igalia.com with esmtpsa (Cipher TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim) id 1p9pmi-00AXBr-FM; Mon, 26 Dec 2022 16:53:05 +0100 From: =?UTF-8?q?Ma=C3=ADra=20Canal?= To: David Airlie , Daniel Vetter , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Cc: Melissa Wen , =?UTF-8?q?Andr=C3=A9=20Almeida?= , Lucas Stach , Russell King , Christian Gmeiner , etnaviv@lists.freedesktop.org, noralf@tronnes.org, Liviu Dudau , Brian Starkey , Emma Anholt , Alexey Brodkin , David Airlie , Gerd Hoffmann , Gurchetan Singh , Chia-I Wu , Tomi Valkeinen , =?UTF-8?q?Ma=C3=ADra=20Canal?= Subject: [PATCH 9/9] drm/qxl: use new debugfs device-centered functions Date: Mon, 26 Dec 2022 12:50:29 -0300 Message-Id: <20221226155029.244355-10-mcanal@igalia.com> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221226155029.244355-1-mcanal@igalia.com> References: <20221226155029.244355-1-mcanal@igalia.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which center the debugfs files management on the drm_device instead of drm_minor. Moreover, remove the debugfs_init hook and add the debugfs files directly on qxl_pci_probe(), before drm_dev_register(). Signed-off-by: Ma=C3=ADra Canal Reviewed-by: Daniel Vetter --- drivers/gpu/drm/qxl/qxl_debugfs.c | 18 ++++++++---------- drivers/gpu/drm/qxl/qxl_drv.c | 5 ++--- drivers/gpu/drm/qxl/qxl_drv.h | 2 +- 3 files changed, 11 insertions(+), 14 deletions(-) diff --git a/drivers/gpu/drm/qxl/qxl_debugfs.c b/drivers/gpu/drm/qxl/qxl_de= bugfs.c index bdfce1a8f006..fd18a7b193b3 100644 --- a/drivers/gpu/drm/qxl/qxl_debugfs.c +++ b/drivers/gpu/drm/qxl/qxl_debugfs.c @@ -38,8 +38,8 @@ static int qxl_debugfs_irq_received(struct seq_file *m, void *data) { - struct drm_info_node *node =3D (struct drm_info_node *) m->private; - struct qxl_device *qdev =3D to_qxl(node->minor->dev); + struct drm_debugfs_entry *entry =3D m->private; + struct qxl_device *qdev =3D to_qxl(entry->dev); =20 seq_printf(m, "%d\n", atomic_read(&qdev->irq_received)); seq_printf(m, "%d\n", atomic_read(&qdev->irq_received_display)); @@ -52,8 +52,8 @@ qxl_debugfs_irq_received(struct seq_file *m, void *data) static int qxl_debugfs_buffers_info(struct seq_file *m, void *data) { - struct drm_info_node *node =3D (struct drm_info_node *) m->private; - struct qxl_device *qdev =3D to_qxl(node->minor->dev); + struct drm_debugfs_entry *entry =3D m->private; + struct qxl_device *qdev =3D to_qxl(entry->dev); struct qxl_bo *bo; =20 list_for_each_entry(bo, &qdev->gem.objects, list) { @@ -76,21 +76,19 @@ qxl_debugfs_buffers_info(struct seq_file *m, void *data) return 0; } =20 -static struct drm_info_list qxl_debugfs_list[] =3D { +static struct drm_debugfs_info qxl_debugfs_list[] =3D { { "irq_received", qxl_debugfs_irq_received, 0, NULL }, { "qxl_buffers", qxl_debugfs_buffers_info, 0, NULL }, }; #define QXL_DEBUGFS_ENTRIES ARRAY_SIZE(qxl_debugfs_list) #endif =20 -void -qxl_debugfs_init(struct drm_minor *minor) +void qxl_debugfs_init(struct drm_device *drm) { #if defined(CONFIG_DEBUG_FS) - struct qxl_device *dev =3D to_qxl(minor->dev); + struct qxl_device *dev =3D to_qxl(drm); =20 - drm_debugfs_create_files(qxl_debugfs_list, QXL_DEBUGFS_ENTRIES, - minor->debugfs_root, minor); + drm_debugfs_add_files(drm, qxl_debugfs_list, QXL_DEBUGFS_ENTRIES); =20 qxl_ttm_debugfs_init(dev); #endif diff --git a/drivers/gpu/drm/qxl/qxl_drv.c b/drivers/gpu/drm/qxl/qxl_drv.c index a3b83f89e061..3ae2db78f671 100644 --- a/drivers/gpu/drm/qxl/qxl_drv.c +++ b/drivers/gpu/drm/qxl/qxl_drv.c @@ -116,6 +116,8 @@ qxl_pci_probe(struct pci_dev *pdev, const struct pci_de= vice_id *ent) if (ret) goto unload; =20 + qxl_debugfs_init(&qdev->ddev); + drm_kms_helper_poll_init(&qdev->ddev); =20 /* Complete initialization. */ @@ -287,9 +289,6 @@ static struct drm_driver qxl_driver =3D { =20 .dumb_create =3D qxl_mode_dumb_create, .dumb_map_offset =3D drm_gem_ttm_dumb_map_offset, -#if defined(CONFIG_DEBUG_FS) - .debugfs_init =3D qxl_debugfs_init, -#endif .prime_handle_to_fd =3D drm_gem_prime_handle_to_fd, .prime_fd_to_handle =3D drm_gem_prime_fd_to_handle, .gem_prime_import_sg_table =3D qxl_gem_prime_import_sg_table, diff --git a/drivers/gpu/drm/qxl/qxl_drv.h b/drivers/gpu/drm/qxl/qxl_drv.h index 0868d5d2a839..cb84a3bebcec 100644 --- a/drivers/gpu/drm/qxl/qxl_drv.h +++ b/drivers/gpu/drm/qxl/qxl_drv.h @@ -397,7 +397,7 @@ int qxl_garbage_collect(struct qxl_device *qdev); =20 /* debugfs */ =20 -void qxl_debugfs_init(struct drm_minor *minor); +void qxl_debugfs_init(struct drm_device *drm); void qxl_ttm_debugfs_init(struct qxl_device *qdev); =20 /* qxl_prime.c */ --=20 2.38.1