mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-09-18 23:09:29 +02:00
A device-private folio migrated to system memory by a CPU fault can
remain reachable through the raw-PFN eviction path until migration
finalization drops the source reference.
If eviction selects the same device-private folio during this window,
it can attempt to migrate the folio again. The second migration can leave
an uncharged folio on an LRU list, causing folio_lruvec_lock_irqsave() to
retry indefinitely and resulting in a soft lockup and RCU stall.
Mark successfully migrated device-private folios using a low bit of
their zone_device_data before migration finalization. Make both CPU-fault
and raw-PFN migration paths skip device-private folios carrying this
flag.
Mask the flag when retrieving the drm_pagemap_zdd pointer and preserve
it when a device-private folio is split. Keeping the state on the physical
folio also avoids depending on a virtual address that may change before a
fault occurs.
v2:
- Replace the retired-PFN XArray with an embedded bitmap. (Matthew Brost)
- Mark every base page covered by a migrated folio so retirement remains
valid if the folio is later split.
v3:
- Store the migrated state in a low bit of zone_device_data instead of
adding virtual-range and bitmap tracking to the ZDD. (Matthew Brost)
- Mask the flag when retrieving the ZDD and preserve it when splitting
a folio.
- Drop the pre-existing fixes already covered by Matthew Brost's series:
https://patchwork.freedesktop.org/series/171651/
v4:
- Advance by the folio size only for migration entries marked with
MIGRATE_PFN_COMPOUND. (Sashiko)
v5:
- Simplify ZDD flag updates and folio iteration. (Matthew Brost)
- Skip retired device-private folios in the CPU-fault path. (Matthew Brost)
- Preserve flag bits while taking a new ZDD reference for split folios.
v6:
- Restore MIGRATE_PFN_COMPOUND-aware stepping so non-compound migration
entries are processed one at a time. (Sashiko)
- Drop the pre-existing fixes already covered by Matthew Brost's series:
https://patchwork.freedesktop.org/series/171651/
The lockup was observed as:
[10109.860465] watchdog: BUG: soft lockup - CPU#9 stuck for 26s! [kworker/u65:5:6557]
[10109.860524] Tainted: [S]=CPU_OUT_OF_SPEC, [O]=OOT_MODULE
[10109.860524] Hardware name: ASUS System Product Name/PRIME Z790-P WIFI, BIOS 0812 02/24/2023
[10109.860525] Workqueue: xe_page_fault_work_queue xe_pagefault_queue_work [xe]
[10109.860644] RIP: 0010:_raw_spin_unlock_irqrestore+0x57/0x80
[10109.860655] Call Trace:
[10109.860655] <TASK>
[10109.860657] folio_lruvec_lock_irqsave+0x216/0x220
[10109.860661] ? __pfx_lru_add+0x10/0x10
[10109.860665] folio_batch_move_lru+0xc8/0x450
[10109.860670] ? lock_acquire+0xc4/0x2d0
[10109.860674] ? __folio_batch_add_and_move+0x60/0x2e0
[10109.860677] ? folio_migrate_mapping+0xa6/0x110
[10109.860679] ? folio_migrate_flags+0x13b/0x1b0
[10109.860681] ? __pfx_lru_add+0x10/0x10
[10109.860683] __folio_batch_add_and_move+0xe7/0x2e0
[10109.860685] ? dma_iova_try_alloc+0xb0/0x140
[10109.860689] folio_add_lru+0x64/0x80
[10109.860691] __migrate_device_finalize+0x12c/0x270
[10109.860695] migrate_device_finalize+0x10/0x20
[10109.860698] drm_pagemap_evict_to_ram+0x185/0x370 [drm_gpusvm_helper]
[10109.860704] ? drm_pagemap_evict_to_ram+0x96/0x370 [drm_gpusvm_helper]
[10109.860709] xe_svm_bo_evict+0x15/0x20 [xe]
[10109.860819] ? xe_svm_bo_evict+0x15/0x20 [xe]
[10109.860921] xe_bo_move+0x107e/0x1570 [xe]
[10109.860992] ? xe_ttm_tt_create+0x168/0x340 [xe]
[10109.861059] ? __up_read+0x98/0x2b0
[10109.861061] ? lock_is_held_type+0xa3/0x130
[10109.861067] ttm_bo_handle_move_mem+0xe8/0x1e0 [ttm]
[10109.861075] ttm_bo_evict+0x141/0x1c0 [ttm]
[10109.861081] ttm_bo_evict_cb+0x9f/0x100 [ttm]
[10109.861086] ttm_lru_walk_for_evict+0x84/0x190 [ttm]
[10109.861091] ? xe_ttm_vram_mgr_new+0x258/0x3a0 [xe]
[10109.861198] ttm_bo_alloc_resource+0x219/0x750 [ttm]
[10109.861203] ? ttm_bo_alloc_resource+0xa9/0x750 [ttm]
[10109.861208] ? lock_acquire+0xc4/0x2d0
[10109.861214] ttm_bo_validate+0x94/0x1c0 [ttm]
[10109.861218] ? ww_mutex_trylock+0x19d/0x3d0
[10109.861219] ? _raw_write_unlock+0x22/0x50
[10109.861223] ttm_bo_init_reserved+0x17d/0x1f0 [ttm]
[10109.861228] xe_bo_init_locked+0x20a/0x620 [xe]
[10109.861294] ? __pfx_xe_ttm_bo_destroy+0x10/0x10 [xe]
[10109.861359] ? mark_held_locks+0x46/0x90
[10109.861361] ? __create_object+0x68/0xc0
[10109.861366] __xe_bo_create_locked+0x384/0xa20 [xe]
[10109.861432] ? lock_acquire+0xc4/0x2d0
[10109.861434] ? xe_drm_pagemap_populate_mm+0xd3/0x340 [xe]
[10109.861542] xe_bo_create_locked+0x23/0x40 [xe]
[10109.861609] xe_drm_pagemap_populate_mm+0x12e/0x340 [xe]
[10109.861707] ? __lock_acquire+0x43e/0x2930
[10109.861716] drm_pagemap_populate_mm+0x74/0xe0 [drm_gpusvm_helper]
[10109.861720] xe_svm_alloc_vram+0xb5/0x2c0 [xe]
[10109.861817] ? seqcount_lockdep_reader_access.constprop.0+0x9f/0xc0
[10109.861819] ? ktime_get+0x23/0x130
[10109.861821] ? trace_hardirqs_on+0x22/0xe0
[10109.861823] ? seqcount_lockdep_reader_access.constprop.0+0x9f/0xc0
[10109.861826] __xe_svm_handle_pagefault+0x77d/0xbf0 [xe]
[10109.861924] ? rwsem_down_write_slowpath+0x43a/0x9a0
[10109.861926] ? _raw_spin_unlock_irq+0x27/0x70
[10109.861928] ? rwsem_down_write_slowpath+0x43a/0x9a0
[10109.861929] ? trace_hardirqs_on+0x22/0xe0
[10109.861931] ? _raw_spin_unlock_irq+0x27/0x70
[10109.861933] ? rwsem_down_write_slowpath+0x459/0x9a0
[10109.861937] xe_svm_handle_pagefault+0x3d/0xb0 [xe]
[10109.862030] xe_pagefault_queue_work+0x1a9/0x520 [xe]
[10109.862122] process_one_work+0x239/0x730
[10109.862127] worker_thread+0x200/0x3f0
[10109.862130] ? __pfx_worker_thread+0x10/0x10
[10109.862132] kthread+0x10d/0x150
[10109.862133] ? __pfx_kthread+0x10/0x10
[10109.862135] ret_from_fork+0x3bd/0x470
[10109.862138] ? __pfx_kthread+0x10/0x10
[10109.862140] ret_from_fork_asm+0x1a/0x30
[10109.862146] </TASK>
Fixes: 99624bdff8 ("drm/gpusvm: Add support for GPU Shared Virtual Memory")
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Cc: David Airlie <airlied@gmail.com>
Cc: Simona Vetter <simona@ffwll.ch>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Assisted-by: Claude:claude-opus-4-8
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Link: https://patch.msgid.link/20260810092845.2776097-1-arvind.yadav@intel.com
395 lines
13 KiB
C
395 lines
13 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
#ifndef _DRM_PAGEMAP_H_
|
|
#define _DRM_PAGEMAP_H_
|
|
|
|
#include <linux/bits.h>
|
|
#include <linux/dma-direction.h>
|
|
#include <linux/hmm.h>
|
|
#include <linux/memremap.h>
|
|
#include <linux/types.h>
|
|
|
|
#define NR_PAGES(order) (1U << (order))
|
|
|
|
struct dma_fence;
|
|
struct drm_pagemap;
|
|
struct drm_pagemap_cache;
|
|
struct drm_pagemap_dev_hold;
|
|
struct drm_pagemap_zdd;
|
|
struct device;
|
|
|
|
/**
|
|
* enum drm_interconnect_protocol - Used to identify an interconnect protocol.
|
|
*
|
|
* @DRM_INTERCONNECT_SYSTEM: DMA map is system pages
|
|
* @DRM_INTERCONNECT_DRIVER: DMA map is driver defined
|
|
*/
|
|
enum drm_interconnect_protocol {
|
|
DRM_INTERCONNECT_SYSTEM,
|
|
DRM_INTERCONNECT_DRIVER,
|
|
/* A driver can add private values beyond DRM_INTERCONNECT_DRIVER */
|
|
};
|
|
|
|
/**
|
|
* struct drm_pagemap_addr - Address representation.
|
|
* @addr: The dma address or driver-defined address for driver private interconnects.
|
|
* @proto: The interconnect protocol.
|
|
* @order: The page order of the device mapping. (Size is PAGE_SIZE << order).
|
|
* @dir: The DMA direction.
|
|
*
|
|
* Note: There is room for improvement here. We should be able to pack into
|
|
* 64 bits.
|
|
*/
|
|
struct drm_pagemap_addr {
|
|
dma_addr_t addr;
|
|
u64 proto : 54;
|
|
u64 order : 8;
|
|
u64 dir : 2;
|
|
};
|
|
|
|
/**
|
|
* drm_pagemap_addr_encode() - Encode a dma address with metadata
|
|
* @addr: The dma address or driver-defined address for driver private interconnects.
|
|
* @proto: The interconnect protocol.
|
|
* @order: The page order of the dma mapping. (Size is PAGE_SIZE << order).
|
|
* @dir: The DMA direction.
|
|
*
|
|
* Return: A struct drm_pagemap_addr encoding the above information.
|
|
*/
|
|
static inline struct drm_pagemap_addr
|
|
drm_pagemap_addr_encode(dma_addr_t addr,
|
|
enum drm_interconnect_protocol proto,
|
|
unsigned int order,
|
|
enum dma_data_direction dir)
|
|
{
|
|
return (struct drm_pagemap_addr) {
|
|
.addr = addr,
|
|
.proto = proto,
|
|
.order = order,
|
|
.dir = dir,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* struct drm_pagemap_ops: Ops for a drm-pagemap.
|
|
*/
|
|
struct drm_pagemap_ops {
|
|
/**
|
|
* @device_map: Map for device access or provide a virtual address suitable for
|
|
*
|
|
* @dpagemap: The struct drm_pagemap for the page.
|
|
* @dev: The device mapper.
|
|
* @page: The page to map.
|
|
* @order: The page order of the device mapping. (Size is PAGE_SIZE << order).
|
|
* @dir: The transfer direction.
|
|
*/
|
|
struct drm_pagemap_addr (*device_map)(struct drm_pagemap *dpagemap,
|
|
struct device *dev,
|
|
struct page *page,
|
|
unsigned int order,
|
|
enum dma_data_direction dir);
|
|
|
|
/**
|
|
* @device_unmap: Unmap a device address previously obtained using @device_map.
|
|
*
|
|
* @dpagemap: The struct drm_pagemap for the mapping.
|
|
* @dev: The device unmapper.
|
|
* @addr: The device address obtained when mapping.
|
|
*/
|
|
void (*device_unmap)(struct drm_pagemap *dpagemap,
|
|
struct device *dev,
|
|
const struct drm_pagemap_addr *addr);
|
|
|
|
/**
|
|
* @populate_mm: Populate part of the mm with @dpagemap memory,
|
|
* migrating existing data.
|
|
* @dpagemap: The struct drm_pagemap managing the memory.
|
|
* @start: The virtual start address in @mm
|
|
* @end: The virtual end address in @mm
|
|
* @mm: Pointer to a live mm. The caller must have an mmget()
|
|
* reference.
|
|
*
|
|
* The caller will have the mm lock at least in read mode.
|
|
* Note that there is no guarantee that the memory is resident
|
|
* after the function returns, it's best effort only.
|
|
* When the mm is not using the memory anymore,
|
|
* it will be released. The struct drm_pagemap might have a
|
|
* mechanism in place to reclaim the memory and the data will
|
|
* then be migrated. Typically to system memory.
|
|
* The implementation should hold sufficient runtime power-
|
|
* references while pages are used in an address space and
|
|
* should ideally guard against hardware device unbind in
|
|
* a way such that device pages are migrated back to system
|
|
* followed by device page removal. The implementation should
|
|
* return -ENODEV after device removal.
|
|
*
|
|
* Return: 0 if successful. Negative error code on error.
|
|
*/
|
|
int (*populate_mm)(struct drm_pagemap *dpagemap,
|
|
unsigned long start, unsigned long end,
|
|
struct mm_struct *mm,
|
|
unsigned long timeslice_ms);
|
|
/**
|
|
* @destroy: Destroy the drm_pagemap and associated resources.
|
|
* @dpagemap: The drm_pagemap to destroy.
|
|
* @is_atomic_or_reclaim: The function may be called from
|
|
* atomic- or reclaim context.
|
|
*
|
|
* The implementation should take care not to attempt to
|
|
* destroy resources that may already have been destroyed
|
|
* using devm_ callbacks, since this function may be called
|
|
* after the underlying struct device has been unbound.
|
|
* If the implementation defers the execution to a work item
|
|
* to avoid locking issues, then it must make sure the work
|
|
* items are flushed before module exit. If the destroy call
|
|
* happens after the provider's pci_remove() callback has
|
|
* been executed, a module reference and drm device reference is
|
|
* held across the destroy callback.
|
|
*/
|
|
void (*destroy)(struct drm_pagemap *dpagemap,
|
|
bool is_atomic_or_reclaim);
|
|
};
|
|
|
|
/**
|
|
* struct drm_pagemap: Additional information for a struct dev_pagemap
|
|
* used for device p2p handshaking.
|
|
* @ops: The struct drm_pagemap_ops.
|
|
* @ref: Reference count.
|
|
* @drm: The struct drm device owning the device-private memory.
|
|
* @pagemap: Pointer to the underlying dev_pagemap.
|
|
* @dev_hold: Pointer to a struct drm_pagemap_dev_hold for
|
|
* device referencing.
|
|
* @cache: Back-pointer to the &struct drm_pagemap_cache used for this
|
|
* &struct drm_pagemap. May be NULL if no cache is used.
|
|
* @shrink_link: Link into the shrinker's list of drm_pagemaps. Only
|
|
* used if also using a pagemap cache.
|
|
*/
|
|
struct drm_pagemap {
|
|
const struct drm_pagemap_ops *ops;
|
|
struct kref ref;
|
|
struct drm_device *drm;
|
|
struct dev_pagemap *pagemap;
|
|
struct drm_pagemap_dev_hold *dev_hold;
|
|
struct drm_pagemap_cache *cache;
|
|
struct list_head shrink_link;
|
|
};
|
|
|
|
struct drm_pagemap_devmem;
|
|
|
|
/**
|
|
* struct drm_pagemap_devmem_ops - Operations structure for GPU SVM device memory
|
|
*
|
|
* This structure defines the operations for GPU Shared Virtual Memory (SVM)
|
|
* device memory. These operations are provided by the GPU driver to manage device memory
|
|
* allocations and perform operations such as migration between device memory and system
|
|
* RAM.
|
|
*/
|
|
struct drm_pagemap_devmem_ops {
|
|
/**
|
|
* @devmem_release: Release device memory allocation (optional)
|
|
* @devmem_allocation: device memory allocation
|
|
*
|
|
* Release device memory allocation and drop a reference to device
|
|
* memory allocation.
|
|
*/
|
|
void (*devmem_release)(struct drm_pagemap_devmem *devmem_allocation);
|
|
|
|
/**
|
|
* @populate_devmem_pfn: Populate device memory PFN (required for migration)
|
|
* @devmem_allocation: device memory allocation
|
|
* @npages: Number of pages to populate
|
|
* @pfn: Array of page frame numbers to populate
|
|
*
|
|
* Populate device memory page frame numbers (PFN).
|
|
*
|
|
* Return: 0 on success, a negative error code on failure.
|
|
*/
|
|
int (*populate_devmem_pfn)(struct drm_pagemap_devmem *devmem_allocation,
|
|
unsigned long npages, unsigned long *pfn);
|
|
|
|
/**
|
|
* @copy_to_devmem: Copy to device memory (required for migration)
|
|
* @pages: Pointer to array of device memory pages (destination)
|
|
* @pagemap_addr: Pointer to array of DMA information (source)
|
|
* @npages: Number of pages to copy
|
|
* @pre_migrate_fence: dma-fence to wait for before migration start.
|
|
* May be NULL.
|
|
*
|
|
* Copy pages to device memory. If the order of a @pagemap_addr entry
|
|
* is greater than 0, the entry is populated but subsequent entries
|
|
* within the range of that order are not populated.
|
|
*
|
|
* Return: 0 on success, a negative error code on failure.
|
|
*/
|
|
int (*copy_to_devmem)(struct page **pages,
|
|
struct drm_pagemap_addr *pagemap_addr,
|
|
unsigned long npages,
|
|
struct dma_fence *pre_migrate_fence);
|
|
|
|
/**
|
|
* @copy_to_ram: Copy to system RAM (required for migration)
|
|
* @pages: Pointer to array of device memory pages (source)
|
|
* @pagemap_addr: Pointer to array of DMA information (destination)
|
|
* @npages: Number of pages to copy
|
|
* @pre_migrate_fence: dma-fence to wait for before migration start.
|
|
* May be NULL.
|
|
*
|
|
* Copy pages to system RAM. If the order of a @pagemap_addr entry
|
|
* is greater than 0, the entry is populated but subsequent entries
|
|
* within the range of that order are not populated.
|
|
*
|
|
* Return: 0 on success, a negative error code on failure.
|
|
*/
|
|
int (*copy_to_ram)(struct page **pages,
|
|
struct drm_pagemap_addr *pagemap_addr,
|
|
unsigned long npages,
|
|
struct dma_fence *pre_migrate_fence);
|
|
};
|
|
|
|
#if IS_ENABLED(CONFIG_ZONE_DEVICE)
|
|
|
|
int drm_pagemap_init(struct drm_pagemap *dpagemap,
|
|
struct dev_pagemap *pagemap,
|
|
struct drm_device *drm,
|
|
const struct drm_pagemap_ops *ops);
|
|
|
|
struct drm_pagemap *drm_pagemap_create(struct drm_device *drm,
|
|
struct dev_pagemap *pagemap,
|
|
const struct drm_pagemap_ops *ops);
|
|
|
|
struct drm_pagemap *drm_pagemap_page_to_dpagemap(struct page *page);
|
|
|
|
void drm_pagemap_put(struct drm_pagemap *dpagemap);
|
|
|
|
#else
|
|
|
|
static inline struct drm_pagemap *drm_pagemap_page_to_dpagemap(struct page *page)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static inline void drm_pagemap_put(struct drm_pagemap *dpagemap)
|
|
{
|
|
}
|
|
|
|
#endif /* IS_ENABLED(CONFIG_ZONE_DEVICE) */
|
|
|
|
/**
|
|
* drm_pagemap_get() - Obtain a reference on a struct drm_pagemap
|
|
* @dpagemap: Pointer to the struct drm_pagemap, or NULL.
|
|
*
|
|
* Return: Pointer to the struct drm_pagemap, or NULL.
|
|
*/
|
|
static inline struct drm_pagemap *
|
|
drm_pagemap_get(struct drm_pagemap *dpagemap)
|
|
{
|
|
if (likely(dpagemap))
|
|
kref_get(&dpagemap->ref);
|
|
|
|
return dpagemap;
|
|
}
|
|
|
|
/**
|
|
* drm_pagemap_get_unless_zero() - Obtain a reference on a struct drm_pagemap
|
|
* unless the current reference count is zero.
|
|
* @dpagemap: Pointer to the drm_pagemap or NULL.
|
|
*
|
|
* Return: A pointer to @dpagemap if the reference count was successfully
|
|
* incremented. NULL if @dpagemap was NULL, or its refcount was 0.
|
|
*/
|
|
static inline struct drm_pagemap * __must_check
|
|
drm_pagemap_get_unless_zero(struct drm_pagemap *dpagemap)
|
|
{
|
|
return (dpagemap && kref_get_unless_zero(&dpagemap->ref)) ? dpagemap : NULL;
|
|
}
|
|
|
|
/**
|
|
* struct drm_pagemap_devmem - Structure representing a GPU SVM device memory allocation
|
|
*
|
|
* @dev: Pointer to the device structure which device memory allocation belongs to
|
|
* @mm: Pointer to the mm_struct for the address space
|
|
* @detached: device memory allocations is detached from device pages
|
|
* @ops: Pointer to the operations structure for GPU SVM device memory
|
|
* @dpagemap: The struct drm_pagemap of the pages this allocation belongs to.
|
|
* @size: Size of device memory allocation
|
|
* @timeslice_expiration: Timeslice expiration in jiffies
|
|
* @pre_migrate_fence: Fence to wait for or pipeline behind before migration starts.
|
|
* (May be NULL).
|
|
*/
|
|
struct drm_pagemap_devmem {
|
|
struct device *dev;
|
|
struct mm_struct *mm;
|
|
struct completion detached;
|
|
const struct drm_pagemap_devmem_ops *ops;
|
|
struct drm_pagemap *dpagemap;
|
|
size_t size;
|
|
u64 timeslice_expiration;
|
|
struct dma_fence *pre_migrate_fence;
|
|
};
|
|
|
|
/**
|
|
* struct drm_pagemap_migrate_details - Details to govern migration.
|
|
* @timeslice_ms: The time requested for the migrated pagemap pages to
|
|
* be present in @mm before being allowed to be migrated back.
|
|
* @can_migrate_same_pagemap: Whether the copy function can migrate
|
|
* device pages within a single drm_pagemap.
|
|
*/
|
|
struct drm_pagemap_migrate_details {
|
|
unsigned long timeslice_ms;
|
|
u32 can_migrate_same_pagemap : 1;
|
|
};
|
|
|
|
#if IS_ENABLED(CONFIG_ZONE_DEVICE)
|
|
|
|
#define DRM_PAGEMAP_ZDD_FLAG_MIGRATED BIT(0)
|
|
#define DRM_PAGEMAP_ZDD_FLAG_MASK DRM_PAGEMAP_ZDD_FLAG_MIGRATED
|
|
|
|
int drm_pagemap_migrate_to_devmem(struct drm_pagemap_devmem *devmem_allocation,
|
|
struct mm_struct *mm,
|
|
unsigned long start, unsigned long end,
|
|
const struct drm_pagemap_migrate_details *mdetails);
|
|
|
|
int drm_pagemap_evict_to_ram(struct drm_pagemap_devmem *devmem_allocation);
|
|
|
|
const struct dev_pagemap_ops *drm_pagemap_pagemap_ops_get(void);
|
|
|
|
void drm_pagemap_devmem_init(struct drm_pagemap_devmem *devmem_allocation,
|
|
struct device *dev, struct mm_struct *mm,
|
|
const struct drm_pagemap_devmem_ops *ops,
|
|
struct drm_pagemap *dpagemap, size_t size,
|
|
struct dma_fence *pre_migrate_fence);
|
|
|
|
int drm_pagemap_populate_mm(struct drm_pagemap *dpagemap,
|
|
unsigned long start, unsigned long end,
|
|
struct mm_struct *mm,
|
|
unsigned long timeslice_ms);
|
|
|
|
void drm_pagemap_destroy(struct drm_pagemap *dpagemap, bool is_atomic_or_reclaim);
|
|
|
|
int drm_pagemap_reinit(struct drm_pagemap *dpagemap);
|
|
|
|
/**
|
|
* drm_pagemap_page_zone_device_data() - Page to zone_device_data
|
|
* @page: Pointer to the page
|
|
*
|
|
* Return: Page's zone_device_data
|
|
*/
|
|
static inline struct drm_pagemap_zdd *drm_pagemap_page_zone_device_data(struct page *page)
|
|
{
|
|
struct folio *folio = page_folio(page);
|
|
|
|
return (struct drm_pagemap_zdd *)
|
|
((unsigned long)folio_zone_device_data(folio) &
|
|
~DRM_PAGEMAP_ZDD_FLAG_MASK);
|
|
}
|
|
|
|
#else
|
|
|
|
static inline struct drm_pagemap_zdd *drm_pagemap_page_zone_device_data(struct page *page)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
#endif /* IS_ENABLED(CONFIG_ZONE_DEVICE) */
|
|
|
|
#endif
|