diff mbox

[3/9] Process notify events outside of given interval

Message ID 1462461432-1900-4-git-send-email-jack@suse.cz (mailing list archive)
State New, archived
Headers show

Commit Message

Jan Kara May 5, 2016, 3:17 p.m. UTC
From: Jan Kara <jack@suse.com>

When parsing blktrace data, process notify events even outside the
specified interval. This way we can learn about time stamps, process
names etc.

Signed-off-by: Jan Kara <jack@suse.com>
---
 iowatcher/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/iowatcher/main.c b/iowatcher/main.c
index b13f509ac943..28ff4cbbb153 100644
--- a/iowatcher/main.c
+++ b/iowatcher/main.c
@@ -429,9 +429,9 @@  static void read_trace_events(void)
 
 		first_record(trace);
 		do {
+			check_record(trace);
 			if (SECONDS(get_record_time(trace)) > tf->max_seconds)
 				continue;
-			check_record(trace);
 			add_tput(trace, tf->tput_writes_gld, tf->tput_reads_gld);
 			add_iop(trace, tf->iop_gld);
 			add_io(trace, tf);