forked from Minki/linux
mm: compaction: Move migration fail/success stats to migrate.c
The compact_pages_moved and compact_pagemigrate_failed events are convenient for determining if compaction is active and to what degree migration is succeeding but it's at the wrong level. Other users of migration may also want to know if migration is working properly and this will be particularly true for any automated NUMA migration. This patch moves the counters down to migration with the new events called pgmigrate_success and pgmigrate_fail. The compact_blocks_moved counter is removed because while it was useful for debugging initially, it's worthless now as no meaningful conclusions can be drawn from its value. Signed-off-by: Mel Gorman <mgorman@suse.de> Reviewed-by: Rik van Riel <riel@redhat.com>
This commit is contained in:
parent
1233d58821
commit
5647bc293a
@ -38,8 +38,10 @@ enum vm_event_item { PGPGIN, PGPGOUT, PSWPIN, PSWPOUT,
|
|||||||
KSWAPD_LOW_WMARK_HIT_QUICKLY, KSWAPD_HIGH_WMARK_HIT_QUICKLY,
|
KSWAPD_LOW_WMARK_HIT_QUICKLY, KSWAPD_HIGH_WMARK_HIT_QUICKLY,
|
||||||
KSWAPD_SKIP_CONGESTION_WAIT,
|
KSWAPD_SKIP_CONGESTION_WAIT,
|
||||||
PAGEOUTRUN, ALLOCSTALL, PGROTATED,
|
PAGEOUTRUN, ALLOCSTALL, PGROTATED,
|
||||||
|
#ifdef CONFIG_MIGRATION
|
||||||
|
PGMIGRATE_SUCCESS, PGMIGRATE_FAIL,
|
||||||
|
#endif
|
||||||
#ifdef CONFIG_COMPACTION
|
#ifdef CONFIG_COMPACTION
|
||||||
COMPACTBLOCKS, COMPACTPAGES, COMPACTPAGEFAILED,
|
|
||||||
COMPACTSTALL, COMPACTFAIL, COMPACTSUCCESS,
|
COMPACTSTALL, COMPACTFAIL, COMPACTSUCCESS,
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_HUGETLB_PAGE
|
#ifdef CONFIG_HUGETLB_PAGE
|
||||||
|
@ -994,10 +994,6 @@ static int compact_zone(struct zone *zone, struct compact_control *cc)
|
|||||||
update_nr_listpages(cc);
|
update_nr_listpages(cc);
|
||||||
nr_remaining = cc->nr_migratepages;
|
nr_remaining = cc->nr_migratepages;
|
||||||
|
|
||||||
count_vm_event(COMPACTBLOCKS);
|
|
||||||
count_vm_events(COMPACTPAGES, nr_migrate - nr_remaining);
|
|
||||||
if (nr_remaining)
|
|
||||||
count_vm_events(COMPACTPAGEFAILED, nr_remaining);
|
|
||||||
trace_mm_compaction_migratepages(nr_migrate - nr_remaining,
|
trace_mm_compaction_migratepages(nr_migrate - nr_remaining,
|
||||||
nr_remaining);
|
nr_remaining);
|
||||||
|
|
||||||
|
@ -962,6 +962,7 @@ int migrate_pages(struct list_head *from,
|
|||||||
{
|
{
|
||||||
int retry = 1;
|
int retry = 1;
|
||||||
int nr_failed = 0;
|
int nr_failed = 0;
|
||||||
|
int nr_succeeded = 0;
|
||||||
int pass = 0;
|
int pass = 0;
|
||||||
struct page *page;
|
struct page *page;
|
||||||
struct page *page2;
|
struct page *page2;
|
||||||
@ -988,6 +989,7 @@ int migrate_pages(struct list_head *from,
|
|||||||
retry++;
|
retry++;
|
||||||
break;
|
break;
|
||||||
case 0:
|
case 0:
|
||||||
|
nr_succeeded++;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
/* Permanent failure */
|
/* Permanent failure */
|
||||||
@ -998,6 +1000,10 @@ int migrate_pages(struct list_head *from,
|
|||||||
}
|
}
|
||||||
rc = 0;
|
rc = 0;
|
||||||
out:
|
out:
|
||||||
|
if (nr_succeeded)
|
||||||
|
count_vm_events(PGMIGRATE_SUCCESS, nr_succeeded);
|
||||||
|
if (nr_failed)
|
||||||
|
count_vm_events(PGMIGRATE_FAIL, nr_failed);
|
||||||
if (!swapwrite)
|
if (!swapwrite)
|
||||||
current->flags &= ~PF_SWAPWRITE;
|
current->flags &= ~PF_SWAPWRITE;
|
||||||
|
|
||||||
|
@ -774,10 +774,11 @@ const char * const vmstat_text[] = {
|
|||||||
|
|
||||||
"pgrotated",
|
"pgrotated",
|
||||||
|
|
||||||
|
#ifdef CONFIG_MIGRATION
|
||||||
|
"pgmigrate_success",
|
||||||
|
"pgmigrate_fail",
|
||||||
|
#endif
|
||||||
#ifdef CONFIG_COMPACTION
|
#ifdef CONFIG_COMPACTION
|
||||||
"compact_blocks_moved",
|
|
||||||
"compact_pages_moved",
|
|
||||||
"compact_pagemigrate_failed",
|
|
||||||
"compact_stall",
|
"compact_stall",
|
||||||
"compact_fail",
|
"compact_fail",
|
||||||
"compact_success",
|
"compact_success",
|
||||||
|
Loading…
Reference in New Issue
Block a user