xref: /linux/drivers/gpu/drm/xe/xe_vm_madvise.h (revision 8d45d88e0b3d17c9f847cef8171c95c19d2cbdf5)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2025 Intel Corporation
4  */
5 
6 #ifndef _XE_VM_MADVISE_H_
7 #define _XE_VM_MADVISE_H_
8 
9 struct drm_device;
10 struct drm_file;
11 struct xe_bo;
12 
13 int xe_vm_madvise_ioctl(struct drm_device *dev, void *data,
14 			struct drm_file *file);
15 
16 void xe_bo_recompute_purgeable_state(struct xe_bo *bo);
17 
18 #endif
19