drm/xe: Fix total initialization in xe_ggtt_print_holes()
authorNathan Chancellor <nathan@kernel.org>
Sat, 24 Aug 2024 03:47:13 +0000 (20:47 -0700)
committerLucas De Marchi <lucas.demarchi@intel.com>
Sat, 24 Aug 2024 13:11:26 +0000 (06:11 -0700)
Clang warns (or errors with CONFIG_DRM_WERROR or CONFIG_WERROR):

  drivers/gpu/drm/xe/xe_ggtt.c:810:3: error: variable 'total' is uninitialized when used here [-Werror,-Wuninitialized]
    810 |                 total += hole_size;
        |                 ^~~~~
  drivers/gpu/drm/xe/xe_ggtt.c:798:11: note: initialize the variable 'total' to silence this warning
    798 |         u64 total;
        |                  ^
        |                   = 0
  1 error generated.

Move the zero initialization of total from
xe_gt_sriov_pf_config_print_available_ggtt() to xe_ggtt_print_holes() to
resolve the warning.

Fixes: 136367290ea5 ("drm/xe: Introduce xe_ggtt_print_holes")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240823-drm-xe-fix-total-in-xe_ggtt_print_holes-v1-1-12b02d079327@kernel.org
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
drivers/gpu/drm/xe/xe_ggtt.c
drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c

index a3ce91decdce7d490e0718a9367fae3ca6c314e7..86fc6afa43bd9c69e2d55d17076951dd7d40e07b 100644 (file)
@@ -795,7 +795,7 @@ u64 xe_ggtt_print_holes(struct xe_ggtt *ggtt, u64 alignment, struct drm_printer
        const struct drm_mm_node *entry;
        u64 hole_min_start = xe_wopcm_size(tile_to_xe(ggtt->tile));
        u64 hole_start, hole_end, hole_size;
-       u64 total;
+       u64 total = 0;
        char buf[10];
 
        mutex_lock(&ggtt->lock);
index c8835d9eead655d63d61d0f8b9e163f5443fc49c..41ed07b153b532e04a5aabebbd635e1cd34f1c81 100644 (file)
@@ -2110,7 +2110,7 @@ int xe_gt_sriov_pf_config_print_available_ggtt(struct xe_gt *gt, struct drm_prin
 {
        struct xe_ggtt *ggtt = gt_to_tile(gt)->mem.ggtt;
        u64 alignment = pf_get_ggtt_alignment(gt);
-       u64 spare, avail, total = 0;
+       u64 spare, avail, total;
        char buf[10];
 
        xe_gt_assert(gt, IS_SRIOV_PF(gt_to_xe(gt)));