drm/buddy: Fix the warn on's during force merge
authorArunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Fri, 17 May 2024 14:33:05 +0000 (20:03 +0530)
committerDave Airlie <airlied@redhat.com>
Sun, 19 May 2024 20:42:12 +0000 (06:42 +1000)
Move the fallback and block incompatible checks
above, so that we dont unnecessarily split the blocks
and leaving the unmerged. This resolves the unnecessary
warn on's thrown during force_merge call.

v2:(Matthew)
  - Move the fallback and block incompatible checks above
    the contains check.

Signed-off-by: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Fixes: 96950929eb23 ("drm/buddy: Implement tracking clear page feature")
Link: https://patchwork.kernel.org/project/dri-devel/patch/20240517135015.17565-1-Arunpravin.PaneerSelvam@amd.com/
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240517143305.17894-1-Arunpravin.PaneerSelvam@amd.com
drivers/gpu/drm/drm_buddy.c

index 1daf778cf6fabda7ac176ae5ca1ffca52d8498b4..94f8c34fc2932867c70f7816631ccd99fbac4691 100644 (file)
@@ -524,11 +524,11 @@ __alloc_range_bias(struct drm_buddy *mm,
                                continue;
                }
 
+               if (!fallback && block_incompatible(block, flags))
+                       continue;
+
                if (contains(start, end, block_start, block_end) &&
                    order == drm_buddy_block_order(block)) {
-                       if (!fallback && block_incompatible(block, flags))
-                               continue;
-
                        /*
                         * Find the free block within the range.
                         */