2 # This is a POC for reading the text representation of trace output related to
3 # page reclaim. It makes an attempt to extract some high-level information on
4 # what is going on. The accuracy of the parser may vary
6 # Example usage: trace-vmscan-postprocess.pl < /sys/kernel/debug/tracing/trace_pipe
8 # --read-procstat If the trace lacks process info, get it from /proc
9 # --ignore-pid Aggregate processes of the same name together
11 # Copyright (c) IBM Corporation 2009
12 # Author: Mel Gorman <mel@csn.ul.ie>
17 use constant MM_VMSCAN_DIRECT_RECLAIM_BEGIN
=> 1;
18 use constant MM_VMSCAN_DIRECT_RECLAIM_END
=> 2;
19 use constant MM_VMSCAN_KSWAPD_WAKE
=> 3;
20 use constant MM_VMSCAN_KSWAPD_SLEEP
=> 4;
21 use constant MM_VMSCAN_LRU_SHRINK_ACTIVE
=> 5;
22 use constant MM_VMSCAN_LRU_SHRINK_INACTIVE
=> 6;
23 use constant MM_VMSCAN_LRU_ISOLATE
=> 7;
24 use constant MM_VMSCAN_WRITEPAGE_FILE_SYNC
=> 8;
25 use constant MM_VMSCAN_WRITEPAGE_ANON_SYNC
=> 9;
26 use constant MM_VMSCAN_WRITEPAGE_FILE_ASYNC
=> 10;
27 use constant MM_VMSCAN_WRITEPAGE_ANON_ASYNC
=> 11;
28 use constant MM_VMSCAN_WRITEPAGE_ASYNC
=> 12;
29 use constant EVENT_UNKNOWN
=> 13;
32 use constant MM_VMSCAN_DIRECT_RECLAIM_BEGIN_PERORDER
=> 11;
33 use constant MM_VMSCAN_WAKEUP_KSWAPD_PERORDER
=> 12;
34 use constant MM_VMSCAN_KSWAPD_WAKE_PERORDER
=> 13;
35 use constant HIGH_KSWAPD_REWAKEUP_PERORDER
=> 14;
37 # Constants used to track state
38 use constant STATE_DIRECT_BEGIN
=> 15;
39 use constant STATE_DIRECT_ORDER
=> 16;
40 use constant STATE_KSWAPD_BEGIN
=> 17;
41 use constant STATE_KSWAPD_ORDER
=> 18;
43 # High-level events extrapolated from tracepoints
44 use constant HIGH_DIRECT_RECLAIM_LATENCY
=> 19;
45 use constant HIGH_KSWAPD_LATENCY
=> 20;
46 use constant HIGH_KSWAPD_REWAKEUP
=> 21;
47 use constant HIGH_NR_SCANNED
=> 22;
48 use constant HIGH_NR_TAKEN
=> 23;
49 use constant HIGH_NR_RECLAIMED
=> 24;
50 use constant HIGH_NR_CONTIG_DIRTY
=> 25;
56 my $opt_read_procstat;
58 my $total_wakeup_kswapd;
59 my ($total_direct_reclaim, $total_direct_nr_scanned);
60 my ($total_direct_latency, $total_kswapd_latency);
61 my ($total_direct_nr_reclaimed);
62 my ($total_direct_writepage_file_sync, $total_direct_writepage_file_async);
63 my ($total_direct_writepage_anon_sync, $total_direct_writepage_anon_async);
64 my ($total_kswapd_nr_scanned, $total_kswapd_wake);
65 my ($total_kswapd_writepage_file_sync, $total_kswapd_writepage_file_async);
66 my ($total_kswapd_writepage_anon_sync, $total_kswapd_writepage_anon_async);
67 my ($total_kswapd_nr_reclaimed);
69 # Catch sigint and exit on request
70 my $sigint_report = 0;
72 my $sigint_pending = 0;
73 my $sigint_received = 0;
75 my $current_time = time;
76 if ($current_time - 2 > $sigint_received) {
77 print "SIGINT received, report pending. Hit ctrl-c again to exit\n";
81 print "Second SIGINT received quickly, exiting\n";
86 if ($sigint_exit > 3) {
87 print "Many SIGINTs received, exiting now without report\n";
91 $sigint_received = $current_time;
94 $SIG{INT
} = "sigint_handler";
96 # Parse command line options
98 'ignore-pid' => \
$opt_ignorepid,
99 'read-procstat' => \
$opt_read_procstat,
102 # Defaults for dynamically discovered regex's
103 my $regex_direct_begin_default = 'order=([0-9]*) may_writepage=([0-9]*) gfp_flags=([A-Z_|]*)';
104 my $regex_direct_end_default = 'nr_reclaimed=([0-9]*)';
105 my $regex_kswapd_wake_default = 'nid=([0-9]*) order=([0-9]*)';
106 my $regex_kswapd_sleep_default = 'nid=([0-9]*)';
107 my $regex_wakeup_kswapd_default = 'nid=([0-9]*) zid=([0-9]*) order=([0-9]*)';
108 my $regex_lru_isolate_default = 'isolate_mode=([0-9]*) order=([0-9]*) nr_requested=([0-9]*) nr_scanned=([0-9]*) nr_taken=([0-9]*) contig_taken=([0-9]*) contig_dirty=([0-9]*) contig_failed=([0-9]*)';
109 my $regex_lru_shrink_inactive_default = 'nid=([0-9]*) zid=([0-9]*) nr_scanned=([0-9]*) nr_reclaimed=([0-9]*) priority=([0-9]*) flags=([A-Z_|]*)';
110 my $regex_lru_shrink_active_default = 'lru=([A-Z_]*) nr_scanned=([0-9]*) nr_rotated=([0-9]*) priority=([0-9]*)';
111 my $regex_writepage_default = 'page=([0-9a-f]*) pfn=([0-9]*) flags=([A-Z_|]*)';
113 # Dyanically discovered regex
114 my $regex_direct_begin;
115 my $regex_direct_end;
116 my $regex_kswapd_wake;
117 my $regex_kswapd_sleep;
118 my $regex_wakeup_kswapd;
119 my $regex_lru_isolate;
120 my $regex_lru_shrink_inactive;
121 my $regex_lru_shrink_active;
124 # Static regex used. Specified like this for readability and for use with /o
125 # (process_pid) (cpus ) ( time ) (tpoint ) (details)
126 my $regex_traceevent = '\s*([a-zA-Z0-9-]*)\s*(\[[0-9]*\])\s*([0-9.]*):\s*([a-zA-Z_]*):\s*(.*)';
127 my $regex_statname = '[-0-9]*\s\((.*)\).*';
128 my $regex_statppid = '[-0-9]*\s\(.*\)\s[A-Za-z]\s([0-9]*).*';
130 sub generate_traceevent_regex
{
135 # Read the event format or use the default
136 if (!open (FORMAT
, "/sys/kernel/debug/tracing/events/$event/format")) {
137 print("WARNING: Event $event format string not found\n");
141 while (!eof(FORMAT
)) {
143 $line =~ s/, REC->.*//;
144 if ($line =~ /^print fmt:\s"(.*)".*/) {
146 $regex =~ s/%s/\([0-9a-zA-Z|_]*\)/g;
147 $regex =~ s/%p/\([0-9a-f]*\)/g;
148 $regex =~ s/%d/\([-0-9]*\)/g;
149 $regex =~ s/%ld/\([-0-9]*\)/g;
150 $regex =~ s/%lu/\([0-9]*\)/g;
155 # Can't handle the print_flags stuff but in the context of this
156 # script, it really doesn't matter
157 $regex =~ s/\(REC.*\) \? __print_flags.*//;
159 # Verify fields are in the right order
161 foreach $tuple (split /\s/, $regex) {
162 my ($key, $value) = split(/=/, $tuple);
163 my $expected = shift;
164 if ($key ne $expected) {
165 print("WARNING: Format not as expected for event $event '$key' != '$expected'\n");
166 $regex =~ s/$key=\((.*)\)/$key=$1/;
171 die("Fewer fields than expected in format");
177 $regex_direct_begin = generate_traceevent_regex
(
178 "vmscan/mm_vmscan_direct_reclaim_begin",
179 $regex_direct_begin_default,
180 "order", "may_writepage",
182 $regex_direct_end = generate_traceevent_regex
(
183 "vmscan/mm_vmscan_direct_reclaim_end",
184 $regex_direct_end_default,
186 $regex_kswapd_wake = generate_traceevent_regex
(
187 "vmscan/mm_vmscan_kswapd_wake",
188 $regex_kswapd_wake_default,
190 $regex_kswapd_sleep = generate_traceevent_regex
(
191 "vmscan/mm_vmscan_kswapd_sleep",
192 $regex_kswapd_sleep_default,
194 $regex_wakeup_kswapd = generate_traceevent_regex
(
195 "vmscan/mm_vmscan_wakeup_kswapd",
196 $regex_wakeup_kswapd_default,
197 "nid", "zid", "order");
198 $regex_lru_isolate = generate_traceevent_regex
(
199 "vmscan/mm_vmscan_lru_isolate",
200 $regex_lru_isolate_default,
201 "isolate_mode", "order",
202 "nr_requested", "nr_scanned", "nr_taken",
203 "contig_taken", "contig_dirty", "contig_failed");
204 $regex_lru_shrink_inactive = generate_traceevent_regex
(
205 "vmscan/mm_vmscan_lru_shrink_inactive",
206 $regex_lru_shrink_inactive_default,
208 "nr_scanned", "nr_reclaimed", "priority",
210 $regex_lru_shrink_active = generate_traceevent_regex
(
211 "vmscan/mm_vmscan_lru_shrink_active",
212 $regex_lru_shrink_active_default,
215 "nr_scanned", "nr_rotated", "priority");
216 $regex_writepage = generate_traceevent_regex
(
217 "vmscan/mm_vmscan_writepage",
218 $regex_writepage_default,
219 "page", "pfn", "flags");
221 sub read_statline
($) {
225 if (open(STAT
, "/proc/$pid/stat")) {
230 if ($statline eq '') {
231 $statline = "-1 (UNKNOWN_PROCESS_NAME) R 0";
237 sub guess_process_pid
($$) {
239 my $statline = $_[1];
245 if ($statline !~ /$regex_statname/o) {
246 die("Failed to math stat line for process name :: $statline");
251 # Convert sec.usec timestamp format
252 sub timestamp_to_ms
($) {
253 my $timestamp = $_[0];
255 my ($sec, $usec) = split (/\./, $timestamp);
256 return ($sec * 1000) + ($usec / 1000);
268 # Read each line of the event log
270 while ($traceevent = <STDIN
>) {
271 if ($traceevent =~ /$regex_traceevent/o) {
276 $process_pid =~ /(.*)-([0-9]*)$/;
280 if ($process eq "") {
281 $process = $last_procmap{$pid};
282 $process_pid = "$process-$pid";
284 $last_procmap{$pid} = $process;
286 if ($opt_read_procstat) {
287 $statline = read_statline
($pid);
288 if ($opt_read_procstat && $process eq '') {
289 $process_pid = guess_process_pid
($pid, $statline);
296 # Perl Switch() sucks majorly
297 if ($tracepoint eq "mm_vmscan_direct_reclaim_begin") {
298 $timestamp = timestamp_to_ms
($timestamp);
299 $perprocesspid{$process_pid}->{MM_VMSCAN_DIRECT_RECLAIM_BEGIN
}++;
300 $perprocesspid{$process_pid}->{STATE_DIRECT_BEGIN
} = $timestamp;
303 if ($details !~ /$regex_direct_begin/o) {
304 print "WARNING: Failed to parse mm_vmscan_direct_reclaim_begin as expected\n";
306 print " $regex_direct_begin\n";
310 $perprocesspid{$process_pid}->{MM_VMSCAN_DIRECT_RECLAIM_BEGIN_PERORDER
}[$order]++;
311 $perprocesspid{$process_pid}->{STATE_DIRECT_ORDER
} = $order;
312 } elsif ($tracepoint eq "mm_vmscan_direct_reclaim_end") {
313 # Count the event itself
314 my $index = $perprocesspid{$process_pid}->{MM_VMSCAN_DIRECT_RECLAIM_END
};
315 $perprocesspid{$process_pid}->{MM_VMSCAN_DIRECT_RECLAIM_END
}++;
317 # Record how long direct reclaim took this time
318 if (defined $perprocesspid{$process_pid}->{STATE_DIRECT_BEGIN
}) {
319 $timestamp = timestamp_to_ms
($timestamp);
320 my $order = $perprocesspid{$process_pid}->{STATE_DIRECT_ORDER
};
321 my $latency = ($timestamp - $perprocesspid{$process_pid}->{STATE_DIRECT_BEGIN
});
322 $perprocesspid{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY
}[$index] = "$order-$latency";
324 } elsif ($tracepoint eq "mm_vmscan_kswapd_wake") {
326 if ($details !~ /$regex_kswapd_wake/o) {
327 print "WARNING: Failed to parse mm_vmscan_kswapd_wake as expected\n";
329 print " $regex_kswapd_wake\n";
334 $perprocesspid{$process_pid}->{STATE_KSWAPD_ORDER
} = $order;
335 if (!$perprocesspid{$process_pid}->{STATE_KSWAPD_BEGIN
}) {
336 $timestamp = timestamp_to_ms
($timestamp);
337 $perprocesspid{$process_pid}->{MM_VMSCAN_KSWAPD_WAKE
}++;
338 $perprocesspid{$process_pid}->{STATE_KSWAPD_BEGIN
} = $timestamp;
339 $perprocesspid{$process_pid}->{MM_VMSCAN_KSWAPD_WAKE_PERORDER
}[$order]++;
341 $perprocesspid{$process_pid}->{HIGH_KSWAPD_REWAKEUP
}++;
342 $perprocesspid{$process_pid}->{HIGH_KSWAPD_REWAKEUP_PERORDER
}[$order]++;
344 } elsif ($tracepoint eq "mm_vmscan_kswapd_sleep") {
346 # Count the event itself
347 my $index = $perprocesspid{$process_pid}->{MM_VMSCAN_KSWAPD_SLEEP
};
348 $perprocesspid{$process_pid}->{MM_VMSCAN_KSWAPD_SLEEP
}++;
350 # Record how long kswapd was awake
351 $timestamp = timestamp_to_ms
($timestamp);
352 my $order = $perprocesspid{$process_pid}->{STATE_KSWAPD_ORDER
};
353 my $latency = ($timestamp - $perprocesspid{$process_pid}->{STATE_KSWAPD_BEGIN
});
354 $perprocesspid{$process_pid}->{HIGH_KSWAPD_LATENCY
}[$index] = "$order-$latency";
355 $perprocesspid{$process_pid}->{STATE_KSWAPD_BEGIN
} = 0;
356 } elsif ($tracepoint eq "mm_vmscan_wakeup_kswapd") {
357 $perprocesspid{$process_pid}->{MM_VMSCAN_WAKEUP_KSWAPD
}++;
360 if ($details !~ /$regex_wakeup_kswapd/o) {
361 print "WARNING: Failed to parse mm_vmscan_wakeup_kswapd as expected\n";
363 print " $regex_wakeup_kswapd\n";
367 $perprocesspid{$process_pid}->{MM_VMSCAN_WAKEUP_KSWAPD_PERORDER
}[$order]++;
368 } elsif ($tracepoint eq "mm_vmscan_lru_isolate") {
370 if ($details !~ /$regex_lru_isolate/o) {
371 print "WARNING: Failed to parse mm_vmscan_lru_isolate as expected\n";
373 print " $regex_lru_isolate/o\n";
377 my $nr_contig_dirty = $7;
378 $perprocesspid{$process_pid}->{HIGH_NR_SCANNED
} += $nr_scanned;
379 $perprocesspid{$process_pid}->{HIGH_NR_CONTIG_DIRTY
} += $nr_contig_dirty;
380 } elsif ($tracepoint eq "mm_vmscan_lru_shrink_inactive") {
382 if ($details !~ /$regex_lru_shrink_inactive/o) {
383 print "WARNING: Failed to parse mm_vmscan_lru_shrink_inactive as expected\n";
385 print " $regex_lru_shrink_inactive/o\n";
388 my $nr_reclaimed = $4;
389 $perprocesspid{$process_pid}->{HIGH_NR_RECLAIMED
} += $nr_reclaimed;
390 } elsif ($tracepoint eq "mm_vmscan_writepage") {
392 if ($details !~ /$regex_writepage/o) {
393 print "WARNING: Failed to parse mm_vmscan_writepage as expected\n";
395 print " $regex_writepage\n";
402 if ($flags =~ /RECLAIM_WB_FILE/) {
405 if ($flags =~ /RECLAIM_WB_SYNC/) {
410 $perprocesspid{$process_pid}->{MM_VMSCAN_WRITEPAGE_FILE_SYNC
}++;
412 $perprocesspid{$process_pid}->{MM_VMSCAN_WRITEPAGE_ANON_SYNC
}++;
416 $perprocesspid{$process_pid}->{MM_VMSCAN_WRITEPAGE_FILE_ASYNC
}++;
418 $perprocesspid{$process_pid}->{MM_VMSCAN_WRITEPAGE_ANON_ASYNC
}++;
422 $perprocesspid{$process_pid}->{EVENT_UNKNOWN
}++;
425 if ($sigint_pending) {
433 my %stats = %$hashref;
435 # Dump per-process stats
439 # Get the maximum process name
440 foreach $process_pid (keys %perprocesspid) {
441 my $len = length($process_pid);
442 if ($len > $max_strlen) {
449 printf("\n") if !$opt_ignorepid;
450 printf("Reclaim latencies expressed as order-latency_in_ms\n") if !$opt_ignorepid;
451 foreach $process_pid (keys %stats) {
453 if (!$stats{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY
}[0] &&
454 !$stats{$process_pid}->{HIGH_KSWAPD_LATENCY
}[0]) {
458 printf "%-" . $max_strlen . "s ", $process_pid if !$opt_ignorepid;
460 while (defined $stats{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY
}[$index] ||
461 defined $stats{$process_pid}->{HIGH_KSWAPD_LATENCY
}[$index]) {
463 if ($stats{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY
}[$index]) {
464 printf("%s ", $stats{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY
}[$index]) if !$opt_ignorepid;
465 my ($dummy, $latency) = split(/-/, $stats{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY
}[$index]);
466 $total_direct_latency += $latency;
468 printf("%s ", $stats{$process_pid}->{HIGH_KSWAPD_LATENCY
}[$index]) if !$opt_ignorepid;
469 my ($dummy, $latency) = split(/-/, $stats{$process_pid}->{HIGH_KSWAPD_LATENCY
}[$index]);
470 $total_kswapd_latency += $latency;
474 print "\n" if !$opt_ignorepid;
477 # Print out process activity
479 printf("%-" . $max_strlen . "s %8s %10s %8s %8s %8s %8s %8s %8s\n", "Process", "Direct", "Wokeup", "Pages", "Pages", "Pages", "Pages", "Time");
480 printf("%-" . $max_strlen . "s %8s %10s %8s %8s %8s %8s %8s %8s\n", "details", "Rclms", "Kswapd", "Scanned", "Rclmed", "Sync-IO", "ASync-IO", "Stalled");
481 foreach $process_pid (keys %stats) {
483 if (!$stats{$process_pid}->{MM_VMSCAN_DIRECT_RECLAIM_BEGIN
}) {
487 $total_direct_reclaim += $stats{$process_pid}->{MM_VMSCAN_DIRECT_RECLAIM_BEGIN
};
488 $total_wakeup_kswapd += $stats{$process_pid}->{MM_VMSCAN_WAKEUP_KSWAPD
};
489 $total_direct_nr_scanned += $stats{$process_pid}->{HIGH_NR_SCANNED
};
490 $total_direct_nr_reclaimed += $stats{$process_pid}->{HIGH_NR_RECLAIMED
};
491 $total_direct_writepage_file_sync += $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_FILE_SYNC
};
492 $total_direct_writepage_anon_sync += $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_ANON_SYNC
};
493 $total_direct_writepage_file_async += $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_FILE_ASYNC
};
495 $total_direct_writepage_anon_async += $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_ANON_ASYNC
};
498 my $this_reclaim_delay = 0;
499 while (defined $stats{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY
}[$index]) {
500 my ($dummy, $latency) = split(/-/, $stats{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY
}[$index]);
501 $this_reclaim_delay += $latency;
505 printf("%-" . $max_strlen . "s %8d %10d %8u %8u %8u %8u %8.3f",
507 $stats{$process_pid}->{MM_VMSCAN_DIRECT_RECLAIM_BEGIN
},
508 $stats{$process_pid}->{MM_VMSCAN_WAKEUP_KSWAPD
},
509 $stats{$process_pid}->{HIGH_NR_SCANNED
},
510 $stats{$process_pid}->{HIGH_NR_RECLAIMED
},
511 $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_FILE_SYNC
} + $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_ANON_SYNC
},
512 $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_FILE_ASYNC
} + $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_ANON_ASYNC
},
513 $this_reclaim_delay / 1000);
515 if ($stats{$process_pid}->{MM_VMSCAN_DIRECT_RECLAIM_BEGIN
}) {
517 for (my $order = 0; $order < 20; $order++) {
518 my $count = $stats{$process_pid}->{MM_VMSCAN_DIRECT_RECLAIM_BEGIN_PERORDER
}[$order];
520 print "direct-$order=$count ";
524 if ($stats{$process_pid}->{MM_VMSCAN_WAKEUP_KSWAPD
}) {
526 for (my $order = 0; $order < 20; $order++) {
527 my $count = $stats{$process_pid}->{MM_VMSCAN_WAKEUP_KSWAPD_PERORDER
}[$order];
529 print "wakeup-$order=$count ";
533 if ($stats{$process_pid}->{HIGH_NR_CONTIG_DIRTY
}) {
535 my $count = $stats{$process_pid}->{HIGH_NR_CONTIG_DIRTY
};
537 print "contig-dirty=$count ";
544 # Print out kswapd activity
546 printf("%-" . $max_strlen . "s %8s %10s %8s %8s %8s %8s\n", "Kswapd", "Kswapd", "Order", "Pages", "Pages", "Pages", "Pages");
547 printf("%-" . $max_strlen . "s %8s %10s %8s %8s %8s %8s\n", "Instance", "Wakeups", "Re-wakeup", "Scanned", "Rclmed", "Sync-IO", "ASync-IO");
548 foreach $process_pid (keys %stats) {
550 if (!$stats{$process_pid}->{MM_VMSCAN_KSWAPD_WAKE
}) {
554 $total_kswapd_wake += $stats{$process_pid}->{MM_VMSCAN_KSWAPD_WAKE
};
555 $total_kswapd_nr_scanned += $stats{$process_pid}->{HIGH_NR_SCANNED
};
556 $total_kswapd_nr_reclaimed += $stats{$process_pid}->{HIGH_NR_RECLAIMED
};
557 $total_kswapd_writepage_file_sync += $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_FILE_SYNC
};
558 $total_kswapd_writepage_anon_sync += $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_ANON_SYNC
};
559 $total_kswapd_writepage_file_async += $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_FILE_ASYNC
};
560 $total_kswapd_writepage_anon_async += $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_ANON_ASYNC
};
562 printf("%-" . $max_strlen . "s %8d %10d %8u %8u %8i %8u",
564 $stats{$process_pid}->{MM_VMSCAN_KSWAPD_WAKE
},
565 $stats{$process_pid}->{HIGH_KSWAPD_REWAKEUP
},
566 $stats{$process_pid}->{HIGH_NR_SCANNED
},
567 $stats{$process_pid}->{HIGH_NR_RECLAIMED
},
568 $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_FILE_SYNC
} + $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_ANON_SYNC
},
569 $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_FILE_ASYNC
} + $stats{$process_pid}->{MM_VMSCAN_WRITEPAGE_ANON_ASYNC
});
571 if ($stats{$process_pid}->{MM_VMSCAN_KSWAPD_WAKE
}) {
573 for (my $order = 0; $order < 20; $order++) {
574 my $count = $stats{$process_pid}->{MM_VMSCAN_KSWAPD_WAKE_PERORDER
}[$order];
576 print "wake-$order=$count ";
580 if ($stats{$process_pid}->{HIGH_KSWAPD_REWAKEUP
}) {
582 for (my $order = 0; $order < 20; $order++) {
583 my $count = $stats{$process_pid}->{HIGH_KSWAPD_REWAKEUP_PERORDER
}[$order];
585 print "rewake-$order=$count ";
592 # Print out summaries
593 $total_direct_latency /= 1000;
594 $total_kswapd_latency /= 1000;
596 print "Direct reclaims: $total_direct_reclaim\n";
597 print "Direct reclaim pages scanned: $total_direct_nr_scanned\n";
598 print "Direct reclaim pages reclaimed: $total_direct_nr_reclaimed\n";
599 print "Direct reclaim write file sync I/O: $total_direct_writepage_file_sync\n";
600 print "Direct reclaim write anon sync I/O: $total_direct_writepage_anon_sync\n";
601 print "Direct reclaim write file async I/O: $total_direct_writepage_file_async\n";
602 print "Direct reclaim write anon async I/O: $total_direct_writepage_anon_async\n";
603 print "Wake kswapd requests: $total_wakeup_kswapd\n";
604 printf "Time stalled direct reclaim: %-1.2f seconds\n", $total_direct_latency;
606 print "Kswapd wakeups: $total_kswapd_wake\n";
607 print "Kswapd pages scanned: $total_kswapd_nr_scanned\n";
608 print "Kswapd pages reclaimed: $total_kswapd_nr_reclaimed\n";
609 print "Kswapd reclaim write file sync I/O: $total_kswapd_writepage_file_sync\n";
610 print "Kswapd reclaim write anon sync I/O: $total_kswapd_writepage_anon_sync\n";
611 print "Kswapd reclaim write file async I/O: $total_kswapd_writepage_file_async\n";
612 print "Kswapd reclaim write anon async I/O: $total_kswapd_writepage_anon_async\n";
613 printf "Time kswapd awake: %-1.2f seconds\n", $total_kswapd_latency;
616 sub aggregate_perprocesspid
() {
621 foreach $process_pid (keys %perprocesspid) {
622 $process = $process_pid;
623 $process =~ s/-([0-9])*$//;
624 if ($process eq '') {
625 $process = "NO_PROCESS_NAME";
628 $perprocess{$process}->{MM_VMSCAN_DIRECT_RECLAIM_BEGIN
} += $perprocesspid{$process_pid}->{MM_VMSCAN_DIRECT_RECLAIM_BEGIN
};
629 $perprocess{$process}->{MM_VMSCAN_KSWAPD_WAKE
} += $perprocesspid{$process_pid}->{MM_VMSCAN_KSWAPD_WAKE
};
630 $perprocess{$process}->{MM_VMSCAN_WAKEUP_KSWAPD
} += $perprocesspid{$process_pid}->{MM_VMSCAN_WAKEUP_KSWAPD
};
631 $perprocess{$process}->{HIGH_KSWAPD_REWAKEUP
} += $perprocesspid{$process_pid}->{HIGH_KSWAPD_REWAKEUP
};
632 $perprocess{$process}->{HIGH_NR_SCANNED
} += $perprocesspid{$process_pid}->{HIGH_NR_SCANNED
};
633 $perprocess{$process}->{HIGH_NR_RECLAIMED
} += $perprocesspid{$process_pid}->{HIGH_NR_RECLAIMED
};
634 $perprocess{$process}->{MM_VMSCAN_WRITEPAGE_FILE_SYNC
} += $perprocesspid{$process_pid}->{MM_VMSCAN_WRITEPAGE_FILE_SYNC
};
635 $perprocess{$process}->{MM_VMSCAN_WRITEPAGE_ANON_SYNC
} += $perprocesspid{$process_pid}->{MM_VMSCAN_WRITEPAGE_ANON_SYNC
};
636 $perprocess{$process}->{MM_VMSCAN_WRITEPAGE_FILE_ASYNC
} += $perprocesspid{$process_pid}->{MM_VMSCAN_WRITEPAGE_FILE_ASYNC
};
637 $perprocess{$process}->{MM_VMSCAN_WRITEPAGE_ANON_ASYNC
} += $perprocesspid{$process_pid}->{MM_VMSCAN_WRITEPAGE_ANON_ASYNC
};
639 for (my $order = 0; $order < 20; $order++) {
640 $perprocess{$process}->{MM_VMSCAN_DIRECT_RECLAIM_BEGIN_PERORDER
}[$order] += $perprocesspid{$process_pid}->{MM_VMSCAN_DIRECT_RECLAIM_BEGIN_PERORDER
}[$order];
641 $perprocess{$process}->{MM_VMSCAN_WAKEUP_KSWAPD_PERORDER
}[$order] += $perprocesspid{$process_pid}->{MM_VMSCAN_WAKEUP_KSWAPD_PERORDER
}[$order];
642 $perprocess{$process}->{MM_VMSCAN_KSWAPD_WAKE_PERORDER
}[$order] += $perprocesspid{$process_pid}->{MM_VMSCAN_KSWAPD_WAKE_PERORDER
}[$order];
646 # Aggregate direct reclaim latencies
647 my $wr_index = $perprocess{$process}->{MM_VMSCAN_DIRECT_RECLAIM_END
};
649 while (defined $perprocesspid{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY
}[$rd_index]) {
650 $perprocess{$process}->{HIGH_DIRECT_RECLAIM_LATENCY
}[$wr_index] = $perprocesspid{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY
}[$rd_index];
654 $perprocess{$process}->{MM_VMSCAN_DIRECT_RECLAIM_END
} = $wr_index;
656 # Aggregate kswapd latencies
657 my $wr_index = $perprocess{$process}->{MM_VMSCAN_KSWAPD_SLEEP
};
659 while (defined $perprocesspid{$process_pid}->{HIGH_KSWAPD_LATENCY
}[$rd_index]) {
660 $perprocess{$process}->{HIGH_KSWAPD_LATENCY
}[$wr_index] = $perprocesspid{$process_pid}->{HIGH_KSWAPD_LATENCY
}[$rd_index];
664 $perprocess{$process}->{MM_VMSCAN_DIRECT_RECLAIM_END
} = $wr_index;
669 if (!$opt_ignorepid) {
670 dump_stats
(\
%perprocesspid);
672 aggregate_perprocesspid
();
673 dump_stats
(\
%perprocess);
677 # Process events or signals until neither is available
679 my $sigint_processed;
681 $sigint_processed = 0;
684 # Handle pending signals if any
685 if ($sigint_pending) {
686 my $current_time = time;
689 print "Received exit signal\n";
692 if ($sigint_report) {
693 if ($current_time >= $sigint_received + 2) {
697 $sigint_processed = 1;
701 } while ($sigint_pending || $sigint_processed);