From mboxrd@z Thu Jan 1 00:00:00 1970 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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 920A6FCB62A for ; Fri, 6 Mar 2026 16:35:29 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 9111010EDC5; Fri, 6 Mar 2026 16:35:12 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=igalia.com header.i=@igalia.com header.b="kOkD5I3v"; dkim-atps=neutral Received: from fanzine2.igalia.com (fanzine2.igalia.com [213.97.179.56]) by gabe.freedesktop.org (Postfix) with ESMTPS id 3D4FA10ED88; Fri, 6 Mar 2026 16:35:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=igalia.com; s=20170329; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To: Message-ID:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: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=RQTUcL1I/8jadncAL2XKGoKxgkmVYQD7qHlBDYb7ynk=; b=kOkD5I3v8/gLt56xc59Ur6cRZN AnIZVlgDKA62rY23960Qw8u1LCQS27Ij3NW7cIVnQuhyxrilqVcvCqlZNJvUy3nA7KZEHkNA2Id8L 6OxdQMDcSuK8ocNti/jTHSjm5zNDJGaegRA+KftbX9FmLJSsAFvLARIOmBDv0FM+GyjRL7FUfqfOt SyzOk6s/FOhgrFclUbK5jkzEEL0bEtXp3XYIrl4bzRpPcynTOZA79VTSJEOEoUlsY5l7kiA/sv2AG HA7L4NC3MsSEluSFWjwuT1wNzlkzN9KCi80v++0DzhTy4bZPlR/j2d9OBBlKxNYZwxpdbmS87wZ/H 5ziCyZWQ==; Received: from [90.240.106.137] (helo=localhost) by fanzine2.igalia.com with esmtpsa (Cipher TLS1.3:ECDHE_SECP256R1__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim) id 1vyY8q-00APWU-7L; Fri, 06 Mar 2026 17:35:08 +0100 From: Tvrtko Ursulin To: amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org Cc: kernel-dev@igalia.com, intel-xe@lists.freedesktop.org, Danilo Krummrich , Philipp Stanner , Tvrtko Ursulin , Lyude Paul , nouveau@lists.freedesktop.org Subject: [PATCH v7 23/29] drm/nouveau: Remove drm_sched_init_args->num_rqs usage Date: Fri, 6 Mar 2026 16:34:39 +0000 Message-ID: <20260306163445.97243-24-tvrtko.ursulin@igalia.com> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260306163445.97243-1-tvrtko.ursulin@igalia.com> References: <20260306163445.97243-1-tvrtko.ursulin@igalia.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Remove member no longer used by the scheduler core. Signed-off-by: Tvrtko Ursulin Cc: Lyude Paul Cc: Danilo Krummrich Cc: nouveau@lists.freedesktop.org Reviewed-by: Lyude Paul Acked-by: Danilo Krummrich --- drivers/gpu/drm/nouveau/nouveau_sched.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_sched.c b/drivers/gpu/drm/nouveau/nouveau_sched.c index 5546be488795..179edf90a531 100644 --- a/drivers/gpu/drm/nouveau/nouveau_sched.c +++ b/drivers/gpu/drm/nouveau/nouveau_sched.c @@ -405,7 +405,6 @@ nouveau_sched_init(struct nouveau_sched *sched, struct nouveau_drm *drm, struct drm_sched_entity *entity = &sched->entity; struct drm_sched_init_args args = { .ops = &nouveau_sched_ops, - .num_rqs = DRM_SCHED_PRIORITY_COUNT, .credit_limit = credit_limit, .timeout = msecs_to_jiffies(NOUVEAU_SCHED_JOB_TIMEOUT_MS), .name = "nouveau_sched", -- 2.52.0