From: John Harrison Date: Tue, 25 Mar 2025 20:32:11 +0000 (-0700) Subject: drm/xe/guc: Re-word message about ADS size changes X-Git-Tag: v6.16-rc1~144^2~18^2~35 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ce22fccd0773834a0b27900395e7b4a329041b6b;p=thirdparty%2Flinux.git drm/xe/guc: Re-word message about ADS size changes The error capture list in the ADS is initially allocated using a placeholder size. When the actual size is determinied later on, there is a debug print about the new size. However, the wording is such that some people see it as an unexpected thing and therefore a potential problem. So re-word it to be a little less concerning. Signed-off-by: John Harrison Reviewed-by: Lucas De Marchi Link: https://lore.kernel.org/r/20250325203211.3907890-1-John.C.Harrison@Intel.com --- diff --git a/drivers/gpu/drm/xe/xe_guc_ads.c b/drivers/gpu/drm/xe/xe_guc_ads.c index e7c9e095a19f0..bee4e0cfe7b8c 100644 --- a/drivers/gpu/drm/xe/xe_guc_ads.c +++ b/drivers/gpu/drm/xe/xe_guc_ads.c @@ -682,8 +682,8 @@ static int guc_capture_prep_lists(struct xe_guc_ads *ads) } if (ads->capture_size != PAGE_ALIGN(total_size)) - xe_gt_dbg(gt, "ADS capture alloc size changed from %d to %d\n", - ads->capture_size, PAGE_ALIGN(total_size)); + xe_gt_dbg(gt, "Updated ADS capture size %d (was %d)\n", + PAGE_ALIGN(total_size), ads->capture_size); return PAGE_ALIGN(total_size); }