From 7b54567c1fbcd5bf8a33d7537c9eaf14a29fb32d Mon Sep 17 00:00:00 2001 From: Ameer Hamza Date: Tue, 19 Aug 2025 19:54:50 +0500 Subject: [PATCH] trace_zil.h: rename zcw_zio_error to zcw_error Rename `zcw_zio_error` to `zcw_error` in `trace_zil.h` that was missed in commit f562e0f69. This fixes compilation errors exposed when building with `--with-linux=`. Reviewed-by: Alexander Motin Reviewed-by: Rob Norris Signed-off-by: Ameer Hamza Closes #17654 --- include/os/linux/zfs/sys/trace_zil.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/os/linux/zfs/sys/trace_zil.h b/include/os/linux/zfs/sys/trace_zil.h index 955462c85..e34ea46b3 100644 --- a/include/os/linux/zfs/sys/trace_zil.h +++ b/include/os/linux/zfs/sys/trace_zil.h @@ -139,18 +139,18 @@ #define ZCW_TP_STRUCT_ENTRY \ __field(lwb_t *, zcw_lwb) \ __field(boolean_t, zcw_done) \ - __field(int, zcw_zio_error) \ + __field(int, zcw_error) \ #define ZCW_TP_FAST_ASSIGN \ __entry->zcw_lwb = zcw->zcw_lwb; \ __entry->zcw_done = zcw->zcw_done; \ - __entry->zcw_zio_error = zcw->zcw_zio_error; + __entry->zcw_error = zcw->zcw_error; #define ZCW_TP_PRINTK_FMT \ "zcw { lwb %p done %u error %u }" #define ZCW_TP_PRINTK_ARGS \ - __entry->zcw_lwb, __entry->zcw_done, __entry->zcw_zio_error + __entry->zcw_lwb, __entry->zcw_done, __entry->zcw_error /* * Generic support for two argument tracepoints of the form: