Contributors: 9
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Chris Wilson |
28 |
26.92% |
5 |
27.78% |
Jani Nikula |
22 |
21.15% |
1 |
5.56% |
Ben Widawsky |
17 |
16.35% |
1 |
5.56% |
Maarten Lankhorst |
16 |
15.38% |
3 |
16.67% |
Daniel Vetter |
8 |
7.69% |
3 |
16.67% |
Matthew Auld |
7 |
6.73% |
2 |
11.11% |
Rodrigo Vivi |
3 |
2.88% |
1 |
5.56% |
Jon Bloomfield |
2 |
1.92% |
1 |
5.56% |
Joonas Lahtinen |
1 |
0.96% |
1 |
5.56% |
Total |
104 |
|
18 |
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2021 Intel Corporation
*/
#ifndef __I915_GEM_EVICT_H__
#define __I915_GEM_EVICT_H__
#include <linux/types.h>
struct drm_mm_node;
struct i915_address_space;
struct i915_gem_ww_ctx;
struct drm_i915_gem_object;
int __must_check i915_gem_evict_something(struct i915_address_space *vm,
struct i915_gem_ww_ctx *ww,
u64 min_size, u64 alignment,
unsigned long color,
u64 start, u64 end,
unsigned flags);
int __must_check i915_gem_evict_for_node(struct i915_address_space *vm,
struct i915_gem_ww_ctx *ww,
struct drm_mm_node *node,
unsigned int flags);
int i915_gem_evict_vm(struct i915_address_space *vm,
struct i915_gem_ww_ctx *ww,
struct drm_i915_gem_object **busy_bo);
#endif /* __I915_GEM_EVICT_H__ */