mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 18:13:04 +00:00
16 lines
295 B
C
16 lines
295 B
C
|
/* SPDX-License-Identifier: MIT */
|
||
|
/*
|
||
|
* Copyright © 2022 Intel Corporation
|
||
|
*/
|
||
|
|
||
|
#ifndef _XE_BO_EVICT_H_
|
||
|
#define _XE_BO_EVICT_H_
|
||
|
|
||
|
struct xe_device;
|
||
|
|
||
|
int xe_bo_evict_all(struct xe_device *xe);
|
||
|
int xe_bo_restore_kernel(struct xe_device *xe);
|
||
|
int xe_bo_restore_user(struct xe_device *xe);
|
||
|
|
||
|
#endif
|