Skip to content

Commit 27906e5

Browse files
committed
drm/ttm: Print the memory decryption status just once
Stop printing the TT memory decryption status info each time tt is created and instead print it just once. Reduces the spam in the system logs when running guests with SEV enabled. Signed-off-by: Zack Rusin <zack.rusin@broadcom.com> Fixes: 71ce046 ("drm/ttm: Make sure the mapped tt pages are decrypted when needed") Reviewed-by: Christian König <christian.koenig@amd.com> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com> Cc: dri-devel@lists.freedesktop.org Cc: linux-kernel@vger.kernel.org Cc: <stable@vger.kernel.org> # v5.14+ Link: https://patchwork.freedesktop.org/patch/msgid/20240408155605.1398631-1-zack.rusin@broadcom.com
1 parent 782e5e7 commit 27906e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/ttm/ttm_tt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ int ttm_tt_create(struct ttm_buffer_object *bo, bool zero_alloc)
9292
*/
9393
if (bdev->pool.use_dma_alloc && cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) {
9494
page_flags |= TTM_TT_FLAG_DECRYPTED;
95-
drm_info(ddev, "TT memory decryption enabled.");
95+
drm_info_once(ddev, "TT memory decryption enabled.");
9696
}
9797

9898
bo->ttm = bdev->funcs->ttm_tt_create(bo, page_flags);

0 commit comments

Comments
 (0)