From: Filipe Manana Date: Fri, 17 Apr 2026 17:06:32 +0000 (+0100) Subject: btrfs: tracepoints: remove double negation in finish ordered extent event X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c69e110455f49eb625623076b3bbd1be0e7362a9;p=thirdparty%2Flinux.git btrfs: tracepoints: remove double negation in finish ordered extent event There is no need to add a double negation (!!) to the update field because the field has a boolean type. Reviewed-by: Johannes Thumshirn Signed-off-by: Filipe Manana Signed-off-by: David Sterba --- diff --git a/include/trace/events/btrfs.h b/include/trace/events/btrfs.h index ec1df8b94517c..99ae9c923070a 100644 --- a/include/trace/events/btrfs.h +++ b/include/trace/events/btrfs.h @@ -670,7 +670,7 @@ TRACE_EVENT(btrfs_finish_ordered_extent, TP_printk_btrfs("root=%llu(%s) ino=%llu start=%llu len=%llu uptodate=%d", show_root_type(__entry->root_objectid), __entry->ino, __entry->start, - __entry->len, !!__entry->uptodate) + __entry->len, __entry->uptodate) ); DECLARE_EVENT_CLASS(btrfs__writepage,