diff options
author | John Harrison <John.C.Harrison@Intel.com> | 2024-11-08 13:27:36 -0800 |
---|---|---|
committer | John Harrison <John.C.Harrison@Intel.com> | 2024-11-12 11:42:12 -0800 |
commit | 902de142150c84eaabcfee31f83c8693b40c13ca (patch) | |
tree | 2da81b205242c76d758827bfea874eedb22c21b8 | |
parent | 90e315a58fd903e43457fa085b6644e45c047e31 (diff) |
drm/xe/guc: Reduce default GuC log verbosity
Drop the default verbosity from 5 (max) to 3 as the extra verbosity
generally doesn't provide anything vitally important but does cause
rapid log overflow.
Signed-off-by: John Harrison <John.C.Harrison@Intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241108212737.2044007-2-John.C.Harrison@Intel.com
-rw-r--r-- | drivers/gpu/drm/xe/xe_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c index bfc3deebdaa2..07b27114be9a 100644 --- a/drivers/gpu/drm/xe/xe_module.c +++ b/drivers/gpu/drm/xe/xe_module.c @@ -19,7 +19,7 @@ struct xe_modparam xe_modparam = { .probe_display = true, - .guc_log_level = 5, + .guc_log_level = 3, .force_probe = CONFIG_DRM_XE_FORCE_PROBE, .wedged_mode = 1, /* the rest are 0 by default */ |