linux-5.15/zone_page_state_snapshot()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#v709ce7e]
#backlinks
*説明 [#f573bbfb]
-パス: [[linux-5.15/include/linux/vmstat.h]]
-FIXME: これは何?
--zone_page_state()とほぼ一緒だが、各CPUの誤差を考慮した...
--[[linux-5.15/zone_page_state()]]
**引数 [#p06a4772]
-struct zone *zone
--
--[[linux-5.15/zone]]
-enum zone_stat_item item
--
--[[linux-5.15/zone_stat_item]]
**返り値 [#n778e40f]
-unsigned long
--
**参考 [#i6b80dd0]
*実装 [#l2b30f1c]
/*
* More accurate version that also considers the current...
* deltas. For that we need to loop over all cpus to fin...
* deltas. There is no synchronization so the result can...
* exactly accurate either.
*/
static inline unsigned long zone_page_state_snapshot(str...
enum zone_stat_item item)
{
long x = atomic_long_read(&zone->vm_stat[item]);
#ifdef CONFIG_SMP
int cpu;
for_each_online_cpu(cpu)
x += per_cpu_ptr(zone->per_cpu_zonestats, cpu)->vm_sta...
if (x < 0)
x = 0;
#endif
return x;
}
-vm_statにはメモリの統計情報が記録されている。
--[[linux-5.15/atomic_long_read()]]
--[[linux-5.15/for_each_online_cpu()]]
--[[linux-5.15/per_cpu_ptr()]]
*コメント [#qa797028]
終了行:
*参照元 [#v709ce7e]
#backlinks
*説明 [#f573bbfb]
-パス: [[linux-5.15/include/linux/vmstat.h]]
-FIXME: これは何?
--zone_page_state()とほぼ一緒だが、各CPUの誤差を考慮した...
--[[linux-5.15/zone_page_state()]]
**引数 [#p06a4772]
-struct zone *zone
--
--[[linux-5.15/zone]]
-enum zone_stat_item item
--
--[[linux-5.15/zone_stat_item]]
**返り値 [#n778e40f]
-unsigned long
--
**参考 [#i6b80dd0]
*実装 [#l2b30f1c]
/*
* More accurate version that also considers the current...
* deltas. For that we need to loop over all cpus to fin...
* deltas. There is no synchronization so the result can...
* exactly accurate either.
*/
static inline unsigned long zone_page_state_snapshot(str...
enum zone_stat_item item)
{
long x = atomic_long_read(&zone->vm_stat[item]);
#ifdef CONFIG_SMP
int cpu;
for_each_online_cpu(cpu)
x += per_cpu_ptr(zone->per_cpu_zonestats, cpu)->vm_sta...
if (x < 0)
x = 0;
#endif
return x;
}
-vm_statにはメモリの統計情報が記録されている。
--[[linux-5.15/atomic_long_read()]]
--[[linux-5.15/for_each_online_cpu()]]
--[[linux-5.15/per_cpu_ptr()]]
*コメント [#qa797028]
ページ名: