linux-5.15/zonelist
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#s1ec6cfa]
#backlinks
*説明 [#d6044a49]
-パス: [[linux-5.15/include/linux/mmzone.h]]
-zonerefの配列。zoneのインデックスを逆順(例えばMOVABLE, ...
--ただしmanaged_zoneしか登録されない(MOVABLE, DMA32が空...
--[[linux-5.15/zone_type]]
-pglistのnode_zonelistsメンバーの型である。
---[[linux-5.15/pglist_data]]
**参考 [#w96d513d]
*実装 [#f61a5567]
/*
* One allocation request operates on a zonelist. A zone...
* is a list of zones, the first one is the 'goal' of the
* allocation, the other zones are fallback zones, in de...
* priority.
*
* To speed the reading of the zonelist, the zonerefs co...
* of the entry being read. Helper functions to access i...
* a struct zoneref are
*
* zonelist_zone() - Return the struct zone * for an ent...
* zonelist_zone_idx() - Return the index of the zone fo...
* zonelist_node_idx() - Return the index of the node fo...
*/
struct zonelist {
struct zoneref _zonerefs[MAX_ZONES_PER_ZONELIST + 1];
};
-
--[[linux-5.15/zoneref]]
--[[linux-5.15/MAX_ZONES_PER_ZONELIST]]
*コメント [#a3e525ab]
終了行:
*参照元 [#s1ec6cfa]
#backlinks
*説明 [#d6044a49]
-パス: [[linux-5.15/include/linux/mmzone.h]]
-zonerefの配列。zoneのインデックスを逆順(例えばMOVABLE, ...
--ただしmanaged_zoneしか登録されない(MOVABLE, DMA32が空...
--[[linux-5.15/zone_type]]
-pglistのnode_zonelistsメンバーの型である。
---[[linux-5.15/pglist_data]]
**参考 [#w96d513d]
*実装 [#f61a5567]
/*
* One allocation request operates on a zonelist. A zone...
* is a list of zones, the first one is the 'goal' of the
* allocation, the other zones are fallback zones, in de...
* priority.
*
* To speed the reading of the zonelist, the zonerefs co...
* of the entry being read. Helper functions to access i...
* a struct zoneref are
*
* zonelist_zone() - Return the struct zone * for an ent...
* zonelist_zone_idx() - Return the index of the zone fo...
* zonelist_node_idx() - Return the index of the node fo...
*/
struct zonelist {
struct zoneref _zonerefs[MAX_ZONES_PER_ZONELIST + 1];
};
-
--[[linux-5.15/zoneref]]
--[[linux-5.15/MAX_ZONES_PER_ZONELIST]]
*コメント [#a3e525ab]
ページ名: