parse.f2fs: fix parsing of f2fs_trace_ios

It is incorrectly taking blkaddr as len because it missed to parse
op_flags in the trace print of f2fs_trace_ios.

Signed-off-by: Sahitya Tummala <stummala@codeaurora.org>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
Sahitya Tummala 2018-12-28 13:06:43 +05:30 committed by Jaegeuk Kim
parent 4d120f0c13
commit 3f6c613444

View File

@ -190,6 +190,8 @@ static void handle_tp_ios(char *ptr)
ptr = strtok(NULL, " ");
rw = atoh(ptr);
ptr = strtok(NULL, " ");
/* int op_flags = atoh(ptr) */
ptr = strtok(NULL, " ");
/* unsigned long long blkaddr = atoh(ptr); */