The force_alloc flag was removed from TTM / Xe but updating the
selftests to new function interfaces was missed. Remove argument from
xe_bo_evict in selftests.
v2:
 - Fix dma-buf, migrate selftests (CI)
Fixes: 55df7c0c62c1 ("drm/ttm/xe: drop unused force_alloc flag")
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Clint Taylor <Clinton.A.Taylor@intel.com>
Link: https://lore.kernel.org/r/20250428022318.877860-1-matthew.brost@intel.com
 
        }
 
        /* Evict to system. CCS data should be copied. */
-       ret = xe_bo_evict(bo, true);
+       ret = xe_bo_evict(bo);
        if (ret) {
                KUNIT_FAIL(test, "Failed to evict bo.\n");
                return ret;
 
         * the exporter and the importer should be the same bo.
         */
        swap(exported->ttm.base.dma_buf, dmabuf);
-       ret = xe_bo_evict(exported, true);
+       ret = xe_bo_evict(exported);
        swap(exported->ttm.base.dma_buf, dmabuf);
        if (ret) {
                if (ret != -EINTR && ret != -ERESTARTSYS)
 
        dma_fence_put(fence);
 
        kunit_info(test, "Evict vram buffer object\n");
-       ret = xe_bo_evict(vram_bo, true);
+       ret = xe_bo_evict(vram_bo);
        if (ret) {
                KUNIT_FAIL(test, "Failed to evict bo.\n");
                return;