commit | 517a13c91a975987b4c2850c08078bd3cef4dce7 | [log] [tgz] |
---|---|---|
author | Juan Quintela <quintela@redhat.com> | Mon May 21 23:46:44 2012 +0200 |
committer | Juan Quintela <quintela@redhat.com> | Fri Jun 29 13:27:28 2012 +0200 |
tree | 5c7ce61f610232da3f07ad370fdb4adbfc848b96 | |
parent | d5f8a5701d3690b5ec0c34b6a5c0b5a24d274540 [diff] |
Add tracepoints for savevm section start/end This allows to know how long each section takes to save. An awk script like this tells us sections that takes more that 10ms $1 ~ /savevm_state_iterate_end/ { /* Print savevm_section_end line when > 10ms duration */ if ($2 > 10000) { printf("%s times_missing=%u\n", $0, times_missing++); } } Signed-off-by: Juan Quintela <quintela@redhat.com> fix ws tracepoints Signed-off-by: Juan Quintela <quintela@redhat.com>