diff options
author | youzhongyang <[email protected]> | 2022-10-28 12:08:12 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-28 09:08:12 -0700 |
commit | 5d0fd8429b0257b2dcd80cef9ed13c8293c1060d (patch) | |
tree | f0159c671ac37160ea3689d4a90ecca0876ffc6b /include/os | |
parent | 1428ede0ba8d112c152c73f37604299db412422c (diff) |
Fix zio_flag_t print format
Follow up for 4938d01d which changed zio_flag from enum to uint64_t.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Richard Yao <[email protected]>
Signed-off-by: Youzhong Yang <[email protected]>
Closes #14100
Diffstat (limited to 'include/os')
-rw-r--r-- | include/os/linux/zfs/sys/trace_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/os/linux/zfs/sys/trace_common.h b/include/os/linux/zfs/sys/trace_common.h index a14727f15..3d4b1920d 100644 --- a/include/os/linux/zfs/sys/trace_common.h +++ b/include/os/linux/zfs/sys/trace_common.h @@ -92,7 +92,7 @@ #define ZIO_TP_PRINTK_FMT \ "zio { type %u cmd %i prio %u size %llu orig_size %llu " \ "offset %llu timestamp %llu delta %llu delay %llu " \ - "flags 0x%x stage 0x%x pipeline 0x%x orig_flags 0x%x " \ + "flags 0x%llx stage 0x%x pipeline 0x%x orig_flags 0x%llx " \ "orig_stage 0x%x orig_pipeline 0x%x reexecute %u " \ "txg %llu error %d ena %llu prop { checksum %u compress %u " \ "type %u level %u copies %u dedup %u dedup_verify %u nopwrite %u } }" |