1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2025 Intel Corporation 4 */ 5 6 #ifndef _XE_PAGEFAULT_H_ 7 #define _XE_PAGEFAULT_H_ 8 9 struct xe_device; 10 struct xe_gt; 11 struct xe_pagefault; 12 13 int xe_pagefault_init(struct xe_device *xe); 14 15 void xe_pagefault_reset(struct xe_device *xe, struct xe_gt *gt); 16 17 int xe_pagefault_handler(struct xe_device *xe, struct xe_pagefault *pf); 18 19 #endif 20