i915_gem_evict.h (752B)
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2021 Intel Corporation 4 */ 5 6#ifndef __I915_GEM_EVICT_H__ 7#define __I915_GEM_EVICT_H__ 8 9#include <linux/types.h> 10 11struct drm_mm_node; 12struct i915_address_space; 13struct i915_gem_ww_ctx; 14 15int __must_check i915_gem_evict_something(struct i915_address_space *vm, 16 struct i915_gem_ww_ctx *ww, 17 u64 min_size, u64 alignment, 18 unsigned long color, 19 u64 start, u64 end, 20 unsigned flags); 21int __must_check i915_gem_evict_for_node(struct i915_address_space *vm, 22 struct i915_gem_ww_ctx *ww, 23 struct drm_mm_node *node, 24 unsigned int flags); 25int i915_gem_evict_vm(struct i915_address_space *vm, 26 struct i915_gem_ww_ctx *ww); 27 28#endif /* __I915_GEM_EVICT_H__ */