From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id BC4CA33B6CF; Tue, 6 Jan 2026 18:03:43 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767722623; cv=none; b=PwshbzzSVaurQz+4ZRvVJED9coOhnntdLbYCy8tnaIiEgVO1O8ir0NRzvft/dw25KwsB+fIr7SWCMMVGWx6xuR1U4YyIqx1pLbmk/KjcE1AEz+c0Q/zeraXnObM+E9Ayq0Ct3p4wTQfwBT7uSoM+4Zp8vRGM2OTaRfuG+bzVKmo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767722623; c=relaxed/simple; bh=xLUK5qT+7Ei2wl5iIxXoArLQXoLhkX4qDOuphxpeci0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=dPnj1O8Fn3oCwzqhq/GvNCTAQ8Vk9ED4b9YJl/8QTVeIW69z9V1RiZW8ndE5r5pQwq4LyDueUwN7sad+yX1XTHseVNod+r026ccLPbo2fK+bqVLNe1Mp65jY+kcDG3v5p6+6j6nt9TDRHCdlwCjxZ5vEdkiyghyHDoe7GHEKr1g= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=xEEHoYsG; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="xEEHoYsG" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2BFB7C116C6; Tue, 6 Jan 2026 18:03:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1767722623; bh=xLUK5qT+7Ei2wl5iIxXoArLQXoLhkX4qDOuphxpeci0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=xEEHoYsGvz4qGJ83B89/f6FWYweUmY/QMZ+fvJa6R1050BDEwjfUa/l6rwyO433IS 9misymzsMRPzosbZkxGcfVK/pFRRqDGGBzawNsYITVbaHPv26Tc+o1i7L4EWpHF03z V0DIm2n7Q9pv+dQXfnbIGN9OUEIMpAiS5qxtwcwE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Matthew Brost , Himal Prasad Ghimiray , =?UTF-8?q?Thomas=20Hellstr=C3=B6m?= Subject: [PATCH 6.18 301/312] drm/xe/svm: Fix a debug printout Date: Tue, 6 Jan 2026 18:06:15 +0100 Message-ID: <20260106170558.747037375@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260106170547.832845344@linuxfoundation.org> References: <20260106170547.832845344@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Thomas Hellström commit d2d7f5636f0d752a1e0e7eadbbc1839c29177bba upstream. Avoid spamming the log with drm_info(). Use drm_dbg() instead. Fixes: cc795e041034 ("drm/xe/svm: Make xe_svm_range_needs_migrate_to_vram() public") Cc: Matthew Brost Cc: Himal Prasad Ghimiray Cc: # v6.17+ Signed-off-by: Thomas Hellström Reviewed-by: Himal Prasad Ghimiray Link: https://patch.msgid.link/20251219113320.183860-2-thomas.hellstrom@linux.intel.com (cherry picked from commit 72aee5f70ba47b939345a0d3414b51b0639c5b88) Signed-off-by: Thomas Hellström Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/xe/xe_svm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/gpu/drm/xe/xe_svm.c +++ b/drivers/gpu/drm/xe/xe_svm.c @@ -942,7 +942,7 @@ bool xe_svm_range_needs_migrate_to_vram( xe_assert(vm->xe, IS_DGFX(vm->xe)); if (xe_svm_range_in_vram(range)) { - drm_info(&vm->xe->drm, "Range is already in VRAM\n"); + drm_dbg(&vm->xe->drm, "Range is already in VRAM\n"); return false; }