// SPDX-License-Identifier: GPL-2.0 OR MIT /* * Copyright 2020 Advanced Micro Devices, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Authors: Christian König
*/
/* Pooling of allocated pages is necessary because changing the caching * attributes on x86 of the linear mapping requires a costly cross CPU TLB * invalidate for those addresses. * * Additional to that allocations from the DMA coherent API are pooled as well * cause they are rather slow compared to alloc_pages+map.
*/
/** * struct ttm_pool_dma - Helper object for coherent DMA mappings * * @addr: original DMA address returned for the mapping * @vaddr: original vaddr return for the mapping and order in the lower bits
*/ struct ttm_pool_dma {
dma_addr_t addr; unsignedlong vaddr;
};
/** * struct ttm_pool_alloc_state - Current state of the tt page allocation process * @pages: Pointer to the next tt page pointer to populate. * @caching_divide: Pointer to the first page pointer whose page has a staged but * not committed caching transition from write-back to @tt_caching. * @dma_addr: Pointer to the next tt dma_address entry to populate if any. * @remaining_pages: Remaining pages to populate. * @tt_caching: The requested cpu-caching for the pages allocated.
*/ struct ttm_pool_alloc_state { struct page **pages; struct page **caching_divide;
dma_addr_t *dma_addr;
pgoff_t remaining_pages; enum ttm_caching tt_caching;
};
/** * struct ttm_pool_tt_restore - State representing restore from backup * @pool: The pool used for page allocation while restoring. * @snapshot_alloc: A snapshot of the most recent struct ttm_pool_alloc_state. * @alloced_page: Pointer to the page most recently allocated from a pool or system. * @first_dma: The dma address corresponding to @alloced_page if dma_mapping * is requested. * @alloced_pages: The number of allocated pages present in the struct ttm_tt * page vector from this restore session. * @restored_pages: The number of 4K pages restored for @alloced_page (which * is typically a multi-order page). * @page_caching: The struct ttm_tt requested caching * @order: The order of @alloced_page. * * Recovery from backup might fail when we've recovered less than the * full ttm_tt. In order not to loose any data (yet), keep information * around that allows us to restart a failed ttm backup recovery.
*/ struct ttm_pool_tt_restore { struct ttm_pool *pool; struct ttm_pool_alloc_state snapshot_alloc; struct page *alloced_page;
dma_addr_t first_dma;
pgoff_t alloced_pages;
pgoff_t restored_pages; enum ttm_caching page_caching; unsignedint order;
};
staticunsignedlong page_pool_size;
MODULE_PARM_DESC(page_pool_size, "Number of pages in the WC/UC/DMA pool");
module_param(page_pool_size, ulong, 0644);
/* Allocate pages of size 1 << order with the given gfp_flags */ staticstruct page *ttm_pool_alloc_page(struct ttm_pool *pool, gfp_t gfp_flags, unsignedint order)
{ unsignedlong attr = DMA_ATTR_FORCE_CONTIGUOUS; struct ttm_pool_dma *dma; struct page *p; void *vaddr;
/* Don't set the __GFP_COMP flag for higher order allocations. * Mapping pages directly into an userspace process and calling * put_page() on a TTM allocated page is illegal.
*/ if (order)
gfp_flags |= __GFP_NOMEMALLOC | __GFP_NORETRY | __GFP_NOWARN |
__GFP_THISNODE;
if (!pool->use_dma_alloc) {
p = alloc_pages_node(pool->nid, gfp_flags, order); if (p)
p->private = order; return p;
}
dma = kmalloc(sizeof(*dma), GFP_KERNEL); if (!dma) return NULL;
/* TODO: This is an illegal abuse of the DMA API, but we need to rework * TTM page fault handling and extend the DMA API to clean this up.
*/ if (is_vmalloc_addr(vaddr))
p = vmalloc_to_page(vaddr); else
p = virt_to_page(vaddr);
/* Reset the caching and pages of size 1 << order */ staticvoid ttm_pool_free_page(struct ttm_pool *pool, enum ttm_caching caching, unsignedint order, struct page *p)
{ unsignedlong attr = DMA_ATTR_FORCE_CONTIGUOUS; struct ttm_pool_dma *dma; void *vaddr;
#ifdef CONFIG_X86 /* We don't care that set_pages_wb is inefficient here. This is only * used when we have to shrink and CPU overhead is irrelevant then.
*/ if (caching != ttm_cached && !PageHighMem(p))
set_pages_wb(p, 1 << order); #endif
if (!pool || !pool->use_dma_alloc) {
__free_pages(p, order); return;
}
/* Give pages into a specific pool_type */ staticvoid ttm_pool_type_give(struct ttm_pool_type *pt, struct page *p)
{ unsignedint i, num_pages = 1 << pt->order;
for (i = 0; i < num_pages; ++i) { if (PageHighMem(p))
clear_highpage(p + i); else
clear_page(page_address(p + i));
}
/* Take pages from a specific pool_type, return NULL when nothing available */ staticstruct page *ttm_pool_type_take(struct ttm_pool_type *pt)
{ struct page *p;
spin_lock(&pt->lock);
p = list_first_entry_or_null(&pt->pages, typeof(*p), lru); if (p) {
atomic_long_sub(1 << pt->order, &allocated_pages);
list_del(&p->lru);
}
spin_unlock(&pt->lock);
return p;
}
/* Initialize and add a pool type to the global shrinker list */ staticvoid ttm_pool_type_init(struct ttm_pool_type *pt, struct ttm_pool *pool, enum ttm_caching caching, unsignedint order)
{
pt->pool = pool;
pt->caching = caching;
pt->order = order;
spin_lock_init(&pt->lock);
INIT_LIST_HEAD(&pt->pages);
while ((p = ttm_pool_type_take(pt)))
ttm_pool_free_page(pt->pool, pt->caching, pt->order, p);
}
/* Return the pool_type to use for the given caching and order */ staticstruct ttm_pool_type *ttm_pool_select_type(struct ttm_pool *pool, enum ttm_caching caching, unsignedint order)
{ if (pool->use_dma_alloc) return &pool->caching[caching].orders[order];
#ifdef CONFIG_X86 switch (caching) { case ttm_write_combined: if (pool->nid != NUMA_NO_NODE) return &pool->caching[caching].orders[order];
if (pool->use_dma32) return &global_dma32_write_combined[order];
return &global_write_combined[order]; case ttm_uncached: if (pool->nid != NUMA_NO_NODE) return &pool->caching[caching].orders[order];
if (pool->use_dma32) return &global_dma32_uncached[order];
/* Free pages using the global shrinker list */ staticunsignedint ttm_pool_shrink(void)
{ struct ttm_pool_type *pt; unsignedint num_pages; struct page *p;
/* Return the allocation order based for a page */ staticunsignedint ttm_pool_page_order(struct ttm_pool *pool, struct page *p)
{ if (pool->use_dma_alloc) { struct ttm_pool_dma *dma = (void *)p->private;
return dma->vaddr & ~PAGE_MASK;
}
return p->private;
}
/* * Split larger pages so that we can free each PAGE_SIZE page as soon * as it has been backed up, in order to avoid memory pressure during * reclaim.
*/ staticvoid ttm_pool_split_for_swap(struct ttm_pool *pool, struct page *p)
{ unsignedint order = ttm_pool_page_order(pool, p);
pgoff_t nr;
if (!order) return;
split_page(p, order);
nr = 1UL << order; while (nr--)
(p++)->private = 0;
}
/** * DOC: Partial backup and restoration of a struct ttm_tt. * * Swapout using ttm_backup_backup_page() and swapin using * ttm_backup_copy_page() may fail. * The former most likely due to lack of swap-space or memory, the latter due * to lack of memory or because of signal interruption during waits. * * Backup failure is easily handled by using a ttm_tt pages vector that holds * both backup handles and page pointers. This has to be taken into account when * restoring such a ttm_tt from backup, and when freeing it while backed up. * When restoring, for simplicity, new pages are actually allocated from the * pool and the contents of any old pages are copied in and then the old pages * are released. * * For restoration failures, the struct ttm_pool_tt_restore holds sufficient state * to be able to resume an interrupted restore, and that structure is freed once * the restoration is complete. If the struct ttm_tt is destroyed while there * is a valid struct ttm_pool_tt_restore attached, that is also properly taken * care of.
*/
/* Is restore ongoing for the currently allocated page? */ staticbool ttm_pool_restore_valid(conststruct ttm_pool_tt_restore *restore)
{ return restore && restore->restored_pages < (1 << restore->order);
}
/* DMA unmap and free a multi-order page, either to the relevant pool or to system. */ static pgoff_t ttm_pool_unmap_and_free(struct ttm_pool *pool, struct page *page, const dma_addr_t *dma_addr, enum ttm_caching caching)
{ struct ttm_pool_type *pt = NULL; unsignedint order;
pgoff_t nr;
if (pool) {
order = ttm_pool_page_order(pool, page);
nr = (1UL << order); if (dma_addr)
ttm_pool_unmap(pool, *dma_addr, nr);
pt = ttm_pool_select_type(pool, caching, order);
} else {
order = page->private;
nr = (1UL << order);
}
if (pt)
ttm_pool_type_give(pt, page); else
ttm_pool_free_page(pool, caching, order, page);
return nr;
}
/* Populate the page-array using the most recent allocated multi-order page. */ staticvoid ttm_pool_allocated_page_commit(struct page *allocated,
dma_addr_t first_dma, struct ttm_pool_alloc_state *alloc,
pgoff_t nr)
{
pgoff_t i;
for (i = 0; i < nr; ++i)
*alloc->pages++ = allocated++;
alloc->remaining_pages -= nr;
if (!alloc->dma_addr) return;
for (i = 0; i < nr; ++i) {
*alloc->dma_addr++ = first_dma;
first_dma += PAGE_SIZE;
}
}
/* * When restoring, restore backed-up content to the newly allocated page and * if successful, populate the page-table and dma-address arrays.
*/ staticint ttm_pool_restore_commit(struct ttm_pool_tt_restore *restore, struct file *backup, conststruct ttm_operation_ctx *ctx, struct ttm_pool_alloc_state *alloc)
{
pgoff_t i, nr = 1UL << restore->order; struct page **first_page = alloc->pages; struct page *p; int ret = 0;
for (i = restore->restored_pages; i < nr; ++i) {
p = first_page[i]; if (ttm_backup_page_ptr_is_handle(p)) { unsignedlong handle = ttm_backup_page_ptr_to_handle(p);
if (IS_ENABLED(CONFIG_FAULT_INJECTION) && ctx->interruptible &&
should_fail(&backup_fault_inject, 1)) {
ret = -EINTR; break;
}
if (handle == 0) {
restore->restored_pages++; continue;
}
ret = ttm_backup_copy_page(backup, restore->alloced_page + i,
handle, ctx->interruptible); if (ret) break;
ttm_backup_drop(backup, handle);
} elseif (p) { /* * We could probably avoid splitting the old page * using clever logic, but ATM we don't care, as * we prioritize releasing memory ASAP. Note that * here, the old retained page is always write-back * cached.
*/
ttm_pool_split_for_swap(restore->pool, p);
copy_highpage(restore->alloced_page + i, p);
__free_pages(p, 0);
}
/* * Called when we got a page, either from a pool or newly allocated. * if needed, dma map the page and populate the dma address array. * Populate the page address array. * If the caching is consistent, update any deferred caching. Otherwise * stage this page for an upcoming deferred caching update.
*/ staticint ttm_pool_page_allocated(struct ttm_pool *pool, unsignedint order, struct page *p, enum ttm_caching page_caching, struct ttm_pool_alloc_state *alloc, struct ttm_pool_tt_restore *restore)
{ bool caching_consistent;
dma_addr_t first_dma; int r = 0;
if (caching_consistent)
alloc->caching_divide = alloc->pages;
}
return 0;
}
/** * ttm_pool_free_range() - Free a range of TTM pages * @pool: The pool used for allocating. * @tt: The struct ttm_tt holding the page pointers. * @caching: The page caching mode used by the range. * @start_page: index for first page to free. * @end_page: index for last page to free + 1. * * During allocation the ttm_tt page-vector may be populated with ranges of * pages with different attributes if allocation hit an error without being * able to completely fulfill the allocation. This function can be used * to free these individual ranges.
*/ staticvoid ttm_pool_free_range(struct ttm_pool *pool, struct ttm_tt *tt, enum ttm_caching caching,
pgoff_t start_page, pgoff_t end_page)
{ struct page **pages = &tt->pages[start_page]; struct file *backup = tt->backup;
pgoff_t i, nr;
for (i = start_page; i < end_page; i += nr, pages += nr) { struct page *p = *pages;
nr = 1; if (ttm_backup_page_ptr_is_handle(p)) { unsignedlong handle = ttm_backup_page_ptr_to_handle(p);
if (handle != 0)
ttm_backup_drop(backup, handle);
} elseif (p) {
dma_addr_t *dma_addr = tt->dma_address ?
tt->dma_address + i : NULL;
nr = ttm_pool_unmap_and_free(pool, p, dma_addr, caching);
}
}
}
/* * Find a suitable allocation order based on highest desired order * and number of remaining pages
*/ staticunsignedint ttm_pool_alloc_find_order(unsignedint highest, conststruct ttm_pool_alloc_state *alloc)
{ return min_t(unsignedint, highest, __fls(alloc->remaining_pages));
}
if (tt->page_flags & TTM_TT_FLAG_ZERO_ALLOC)
gfp_flags |= __GFP_ZERO;
if (ctx->gfp_retry_mayfail)
gfp_flags |= __GFP_RETRY_MAYFAIL;
if (pool->use_dma32)
gfp_flags |= GFP_DMA32; else
gfp_flags |= GFP_HIGHUSER;
page_caching = tt->caching;
allow_pools = true; for (order = ttm_pool_alloc_find_order(MAX_PAGE_ORDER, alloc);
alloc->remaining_pages;
order = ttm_pool_alloc_find_order(order, alloc)) { struct ttm_pool_type *pt;
/* First, try to allocate a page from a pool if one exists. */
p = NULL;
pt = ttm_pool_select_type(pool, page_caching, order); if (pt && allow_pools)
p = ttm_pool_type_take(pt); /* * If that fails or previously failed, allocate from system. * Note that this also disallows additional pool allocations using * write-back cached pools of the same order. Consider removing * that behaviour.
*/ if (!p) {
page_caching = ttm_cached;
allow_pools = false;
p = ttm_pool_alloc_page(pool, gfp_flags, order);
} /* If that fails, lower the order if possible and retry. */ if (!p) { if (order) {
--order;
page_caching = tt->caching;
allow_pools = true; continue;
}
r = -ENOMEM; goto error_free_all;
}
r = ttm_pool_page_allocated(pool, order, p, page_caching, alloc,
restore); if (r) goto error_free_page;
if (ttm_pool_restore_valid(restore)) {
r = ttm_pool_restore_commit(restore, tt->backup, ctx, alloc); if (r) goto error_free_all;
}
}
r = ttm_pool_apply_caching(alloc); if (r) goto error_free_all;
/** * ttm_pool_alloc - Fill a ttm_tt object * * @pool: ttm_pool to use * @tt: ttm_tt object to fill * @ctx: operation context * * Fill the ttm_tt object with pages and also make sure to DMA map them when * necessary. * * Returns: 0 on successe, negative error code otherwise.
*/ int ttm_pool_alloc(struct ttm_pool *pool, struct ttm_tt *tt, struct ttm_operation_ctx *ctx)
{ struct ttm_pool_alloc_state alloc;
if (WARN_ON(ttm_tt_is_backed_up(tt))) return -EINVAL;
/** * ttm_pool_restore_and_alloc - Fill a ttm_tt, restoring previously backed-up * content. * * @pool: ttm_pool to use * @tt: ttm_tt object to fill * @ctx: operation context * * Fill the ttm_tt object with pages and also make sure to DMA map them when * necessary. Read in backed-up content. * * Returns: 0 on successe, negative error code otherwise.
*/ int ttm_pool_restore_and_alloc(struct ttm_pool *pool, struct ttm_tt *tt, conststruct ttm_operation_ctx *ctx)
{ struct ttm_pool_alloc_state alloc;
if (WARN_ON(!ttm_tt_is_backed_up(tt))) return -EINVAL;
if (!tt->restore) {
gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
ttm_pool_alloc_state_init(tt, &alloc); if (ctx->gfp_retry_mayfail)
gfp |= __GFP_RETRY_MAYFAIL;
tt->restore = kzalloc(sizeof(*tt->restore), gfp); if (!tt->restore) return -ENOMEM;
/** * ttm_pool_free - Free the backing pages from a ttm_tt object * * @pool: Pool to give pages back to. * @tt: ttm_tt object to unpopulate * * Give the packing pages back to a pool or free them
*/ void ttm_pool_free(struct ttm_pool *pool, struct ttm_tt *tt)
{
ttm_pool_free_range(pool, tt, tt->caching, 0, tt->num_pages);
while (atomic_long_read(&allocated_pages) > page_pool_size)
ttm_pool_shrink();
}
EXPORT_SYMBOL(ttm_pool_free);
/** * ttm_pool_drop_backed_up() - Release content of a swapped-out struct ttm_tt * @tt: The struct ttm_tt. * * Release handles with associated content or any remaining pages of * a backed-up struct ttm_tt.
*/ void ttm_pool_drop_backed_up(struct ttm_tt *tt)
{ struct ttm_pool_tt_restore *restore;
pgoff_t start_page = 0;
WARN_ON(!ttm_tt_is_backed_up(tt));
restore = tt->restore;
/* * Unmap and free any uncommitted restore page. * any tt page-array backup entries already read back has * been cleared already
*/ if (ttm_pool_restore_valid(restore)) {
dma_addr_t *dma_addr = tt->dma_address ? &restore->first_dma : NULL;
/* * If a restore is ongoing, part of the tt pages may have a * caching different than writeback.
*/ if (restore) {
pgoff_t mid = restore->snapshot_alloc.caching_divide - tt->pages;
start_page = restore->alloced_pages;
WARN_ON(mid > start_page); /* Pages that might be dma-mapped and non-cached */
ttm_pool_free_range(restore->pool, tt, tt->caching,
0, mid); /* Pages that might be dma-mapped but cached */
ttm_pool_free_range(restore->pool, tt, ttm_cached,
mid, restore->alloced_pages);
kfree(restore);
tt->restore = NULL;
}
/** * ttm_pool_backup() - Back up or purge a struct ttm_tt * @pool: The pool used when allocating the struct ttm_tt. * @tt: The struct ttm_tt. * @flags: Flags to govern the backup behaviour. * * Back up or purge a struct ttm_tt. If @purge is true, then * all pages will be freed directly to the system rather than to the pool * they were allocated from, making the function behave similarly to * ttm_pool_free(). If @purge is false the pages will be backed up instead, * exchanged for handles. * A subsequent call to ttm_pool_restore_and_alloc() will then read back the content and * a subsequent call to ttm_pool_drop_backed_up() will drop it. * If backup of a page fails for whatever reason, @ttm will still be * partially backed up, retaining those pages for which backup fails. * In that case, this function can be retried, possibly after freeing up * memory resources. * * Return: Number of pages actually backed up or freed, or negative * error code on error.
*/ long ttm_pool_backup(struct ttm_pool *pool, struct ttm_tt *tt, conststruct ttm_backup_flags *flags)
{ struct file *backup = tt->backup; struct page *page; unsignedlong handle;
gfp_t alloc_gfp;
gfp_t gfp; int ret = 0;
pgoff_t shrunken = 0;
pgoff_t i, num_pages;
if (WARN_ON(ttm_tt_is_backed_up(tt))) return -EINVAL;
if ((!ttm_backup_bytes_avail() && !flags->purge) ||
pool->use_dma_alloc || ttm_tt_is_backed_up(tt)) return -EBUSY;
#ifdef CONFIG_X86 /* Anything returned to the system needs to be cached. */ if (tt->caching != ttm_cached)
set_pages_array_wb(tt->pages, tt->num_pages); #endif
if (tt->dma_address || flags->purge) { for (i = 0; i < tt->num_pages; i += num_pages) { unsignedint order;
/* Pretend doing fault injection by shrinking only half of the pages. */ if (IS_ENABLED(CONFIG_FAULT_INJECTION) && should_fail(&backup_fault_inject, 1))
num_pages = DIV_ROUND_UP(num_pages, 2);
for (i = 0; i < num_pages; ++i) {
s64 shandle;
page = tt->pages[i]; if (unlikely(!page)) continue;
ttm_pool_split_for_swap(pool, page);
shandle = ttm_backup_backup_page(backup, page, flags->writeback, i,
gfp, alloc_gfp); if (shandle < 0) { /* We allow partially shrunken tts */
ret = shandle; break;
}
handle = shandle;
tt->pages[i] = ttm_backup_handle_to_page_ptr(handle);
put_page(page);
shrunken++;
}
return shrunken ? shrunken : ret;
}
/** * ttm_pool_init - Initialize a pool * * @pool: the pool to initialize * @dev: device for DMA allocations and mappings * @nid: NUMA node to use for allocations * @use_dma_alloc: true if coherent DMA alloc should be used * @use_dma32: true if GFP_DMA32 should be used * * Initialize the pool and its pool types.
*/ void ttm_pool_init(struct ttm_pool *pool, struct device *dev, int nid, bool use_dma_alloc, bool use_dma32)
{ unsignedint i, j;
for (i = 0; i < TTM_NUM_CACHING_TYPES; ++i) { for (j = 0; j < NR_PAGE_ORDERS; ++j) { struct ttm_pool_type *pt;
/* Initialize only pool types which are actually used */
pt = ttm_pool_select_type(pool, i, j); if (pt != &pool->caching[i].orders[j]) continue;
ttm_pool_type_init(pt, pool, i, j);
}
}
}
EXPORT_SYMBOL(ttm_pool_init);
/** * ttm_pool_synchronize_shrinkers - Wait for all running shrinkers to complete. * * This is useful to guarantee that all shrinker invocations have seen an * update, before freeing memory, similar to rcu.
*/ staticvoid ttm_pool_synchronize_shrinkers(void)
{
down_write(&pool_shrink_rwsem);
up_write(&pool_shrink_rwsem);
}
/** * ttm_pool_fini - Cleanup a pool * * @pool: the pool to clean up * * Free all pages in the pool and unregister the types from the global * shrinker.
*/ void ttm_pool_fini(struct ttm_pool *pool)
{ unsignedint i, j;
for (i = 0; i < TTM_NUM_CACHING_TYPES; ++i) { for (j = 0; j < NR_PAGE_ORDERS; ++j) { struct ttm_pool_type *pt;
pt = ttm_pool_select_type(pool, i, j); if (pt != &pool->caching[i].orders[j]) continue;
ttm_pool_type_fini(pt);
}
}
/* We removed the pool types from the LRU, but we need to also make sure * that no shrinker is concurrently freeing pages from the pool.
*/
ttm_pool_synchronize_shrinkers();
}
EXPORT_SYMBOL(ttm_pool_fini);
/* Free average pool number of pages. */ #define TTM_SHRINKER_BATCH ((1 << (MAX_PAGE_ORDER / 2)) * NR_PAGE_ORDERS)
do
num_freed += ttm_pool_shrink(); while (num_freed < sc->nr_to_scan &&
atomic_long_read(&allocated_pages));
sc->nr_scanned = num_freed;
return num_freed ?: SHRINK_STOP;
}
/* Return the number of pages available or SHRINK_EMPTY if we have none */ staticunsignedlong ttm_pool_shrinker_count(struct shrinker *shrink, struct shrink_control *sc)
{ unsignedlong num_pages = atomic_long_read(&allocated_pages);
return num_pages ? num_pages : SHRINK_EMPTY;
}
#ifdef CONFIG_DEBUG_FS /* Count the number of pages available in a pool_type */ staticunsignedint ttm_pool_type_count(struct ttm_pool_type *pt)
{ unsignedint count = 0; struct page *p;
spin_lock(&pt->lock); /* Only used for debugfs, the overhead doesn't matter */
list_for_each_entry(p, &pt->pages, lru)
++count;
spin_unlock(&pt->lock);
return count;
}
/* Print a nice header for the order */ staticvoid ttm_pool_debugfs_header(struct seq_file *m)
{ unsignedint i;
seq_puts(m, "\t "); for (i = 0; i < NR_PAGE_ORDERS; ++i)
seq_printf(m, " ---%2u---", i);
seq_puts(m, "\n");
}
/* Dump information about the different pool types */ staticvoid ttm_pool_debugfs_orders(struct ttm_pool_type *pt, struct seq_file *m)
{ unsignedint i;
for (i = 0; i < NR_PAGE_ORDERS; ++i)
seq_printf(m, " %8u", ttm_pool_type_count(&pt[i]));
seq_puts(m, "\n");
}
/* Dump the total amount of allocated pages */ staticvoid ttm_pool_debugfs_footer(struct seq_file *m)
{
seq_printf(m, "\ntotal\t: %8lu of %8lu\n",
atomic_long_read(&allocated_pages), page_pool_size);
}
/* Dump the information for the global pools */ staticint ttm_pool_debugfs_globals_show(struct seq_file *m, void *data)
{
ttm_pool_debugfs_header(m);
/** * ttm_pool_debugfs - Debugfs dump function for a pool * * @pool: the pool to dump the information for * @m: seq_file to dump to * * Make a debugfs dump with the per pool and global information.
*/ int ttm_pool_debugfs(struct ttm_pool *pool, struct seq_file *m)
{ unsignedint i;
/** * ttm_pool_mgr_init - Initialize globals * * @num_pages: default number of pages * * Initialize the global locks and lists for the MM shrinker.
*/ int ttm_pool_mgr_init(unsignedlong num_pages)
{ unsignedint i;
/** * ttm_pool_mgr_fini - Finalize globals * * Cleanup the global pools and unregister the MM shrinker.
*/ void ttm_pool_mgr_fini(void)
{ unsignedint i;
for (i = 0; i < NR_PAGE_ORDERS; ++i) {
ttm_pool_type_fini(&global_write_combined[i]);
ttm_pool_type_fini(&global_uncached[i]);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.