函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:mm\percpu.c Create Date:2022-07-27 15:51:15
Last Modify:2022-05-23 13:52:24 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:pcpu_chunk_depopulated - post-depopulation bookkeeping*@chunk: pcpu_chunk which got depopulated*@page_start: the start page*@page_end: the end page* Pages in [@page_start,@page_end) have been depopulated from @chunk.

函数原型:static void pcpu_chunk_depopulated(struct pcpu_chunk *chunk, int page_start, int page_end)

返回类型:void

参数:

类型参数名称
struct pcpu_chunk *chunk
intpage_start
intpage_end
1499  nr等于page_endpage_start
1501  lockdep_assert_held( & pcpu_lock)
1503  bitmap_clear( populated bitmap , page_start, nr)
1504  # of populated pages 减等于nr
1505  The number of populated pages in use by the allocator, protected by* pcpu_lock. This number is kept per a unit per chunk (i.e. when a page gets* allocated/deallocated, it is allocated/deallocated in all units of a chunk减等于nr
1507  pcpu_update_empty_pages - update empty page counters*@chunk: chunk of interest*@nr: nr of empty pages* This is used to keep track of the empty pages now based on the premise* a md_block covers a page. The hint update functions recognize if a block
调用者
名称描述
pcpu_balance_workfnBalance work is used to populate or destroy chunks asynchronously. We* try to keep the number of populated free pages between* PCPU_EMPTY_POP_PAGES_LOW and HIGH for atomic allocations and at most one* empty chunk.