19 lines
485 B
C
19 lines
485 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (C) 2025 - Google Inc
|
|
* Author: Mostafa Saleh <smostafa@google.com>
|
|
* IOMMU API debug page alloc sanitizer
|
|
*/
|
|
|
|
#ifndef __LINUX_IOMMU_DEBUG_PAGEALLOC_H
|
|
#define __LINUX_IOMMU_DEBUG_PAGEALLOC_H
|
|
|
|
#ifdef CONFIG_IOMMU_DEBUG_PAGEALLOC
|
|
DECLARE_STATIC_KEY_FALSE(iommu_debug_initialized);
|
|
|
|
extern struct page_ext_operations page_iommu_debug_ops;
|
|
|
|
#endif /* CONFIG_IOMMU_DEBUG_PAGEALLOC */
|
|
|
|
#endif /* __LINUX_IOMMU_DEBUG_PAGEALLOC_H */
|