linux-5.15/first_zones_zonelist()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#k31dd481]
#backlinks
*説明 [#p4997609]
-パス: [[linux-5.15/include/linux/mmzone.h]]
-FIXME: これは何?
--説明
**引数 [#cb9e4058]
-struct zonelist *zonelist
--
--[[linux-5.15/zonelist]]
-enum zone_type highest_zoneidx,
--
--[[linux-5.15/zone_type]]
-nodemask_t *nodes
--
--[[linux-5.15/nodemask_t]]
**返り値 [#wce143c3]
-struct zoneref *
--
--[[linux-5.15/zoneref]]
**参考 [#wb02da06]
*実装 [#mbe6404c]
/**
* first_zones_zonelist - Returns the first zone at or b...
* @zonelist: The zonelist to search for a suitable zone
* @highest_zoneidx: The zone index of the highest zone ...
* @nodes: An optional nodemask to filter the zonelist w...
*
* This function returns the first zone at or below a gi...
* within the allowed nodemask. The zoneref returned is ...
* used to iterate the zonelist with next_zones_zonelist...
* one before calling.
*
* When no eligible zone is found, zoneref->zone is NULL...
* never NULL). This may happen either genuinely, or due...
* update due to cpuset modification.
*
* Return: Zoneref pointer for the first suitable zone f...
*/
static inline struct zoneref *first_zones_zonelist(struc...
enum zone_type highest_zoneidx,
nodemask_t *nodes)
{
return next_zones_zonelist(zonelist->_zonerefs,
highest_zoneidx, nodes);
}
-
--[[linux-5.15/next_zones_zonelist()]]
*コメント [#ndf21c6c]
終了行:
*参照元 [#k31dd481]
#backlinks
*説明 [#p4997609]
-パス: [[linux-5.15/include/linux/mmzone.h]]
-FIXME: これは何?
--説明
**引数 [#cb9e4058]
-struct zonelist *zonelist
--
--[[linux-5.15/zonelist]]
-enum zone_type highest_zoneidx,
--
--[[linux-5.15/zone_type]]
-nodemask_t *nodes
--
--[[linux-5.15/nodemask_t]]
**返り値 [#wce143c3]
-struct zoneref *
--
--[[linux-5.15/zoneref]]
**参考 [#wb02da06]
*実装 [#mbe6404c]
/**
* first_zones_zonelist - Returns the first zone at or b...
* @zonelist: The zonelist to search for a suitable zone
* @highest_zoneidx: The zone index of the highest zone ...
* @nodes: An optional nodemask to filter the zonelist w...
*
* This function returns the first zone at or below a gi...
* within the allowed nodemask. The zoneref returned is ...
* used to iterate the zonelist with next_zones_zonelist...
* one before calling.
*
* When no eligible zone is found, zoneref->zone is NULL...
* never NULL). This may happen either genuinely, or due...
* update due to cpuset modification.
*
* Return: Zoneref pointer for the first suitable zone f...
*/
static inline struct zoneref *first_zones_zonelist(struc...
enum zone_type highest_zoneidx,
nodemask_t *nodes)
{
return next_zones_zonelist(zonelist->_zonerefs,
highest_zoneidx, nodes);
}
-
--[[linux-5.15/next_zones_zonelist()]]
*コメント [#ndf21c6c]
ページ名: