#author("2025-09-10T19:25:19+09:00","default:guest","guest") #author("2025-09-10T19:38:24+09:00","default:guest","guest") *参照元 [#b6519050] #backlinks *説明 [#r6d7af55] -パス: [[linux-5.15/mm/compaction.c]] -FIXME: これは何? --説明 **引数 [#ze29e678] -pg_data_t *pgdat -- --[[linux-5.15/pg_data_t]] **返り値 [#vef76fe1] -なし -- **参考 [#z306b44c] *実装 [#l1e48e5f] void reset_isolation_suitable(pg_data_t *pgdat) { int zoneid; for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) { struct zone *zone = &pgdat->node_zones[zoneid]; if (!populated_zone(zone)) continue; - -ページのないゾーンは無視する。 --[[linux-5.15/populated_zone()]] /* Only flush if a full compaction finished recently */ if (zone->compact_blockskip_flush) __reset_isolation_suitable(zone); } } - --[[linux-5.15/__reset_isolation_suitable()]] *コメント [#le55a160]