mirror of
https://gitee.com/openharmony/third_party_f2fs-tools
synced 2024-11-23 10:10:00 +00:00
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:
parent
4d120f0c13
commit
3f6c613444
@ -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); */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user