xref: /linux/drivers/gpu/drm/xe/xe_shrinker.h (revision 260f6f4fda93c8485c8037865c941b42b9cba5d2)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2024 Intel Corporation
4  */
5 
6 #ifndef _XE_SHRINKER_H_
7 #define _XE_SHRINKER_H_
8 
9 struct xe_shrinker;
10 struct xe_device;
11 
12 void xe_shrinker_mod_pages(struct xe_shrinker *shrinker, long shrinkable, long purgeable);
13 
14 int xe_shrinker_create(struct xe_device *xe);
15 
16 #endif
17