xref: /linux/drivers/gpu/drm/xe/xe_shrinker.h (revision b3827c91cc9979fe04d99e016fb9c5f6260f29a0)
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