diff options
| author | Filipe Manana <fdmanana@suse.com> | 2026-04-17 18:06:32 +0100 |
|---|---|---|
| committer | David Sterba <dsterba@suse.com> | 2026-06-08 15:53:33 +0200 |
| commit | c69e110455f49eb625623076b3bbd1be0e7362a9 (patch) | |
| tree | 8bdfe57dd32290bcb30e13d65c0c1cbc68515fac /include/trace | |
| parent | dfd70996e5894214ac49255131a2def1b8b9c19f (diff) | |
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 <johannes.thumshirn@wdc.com>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'include/trace')
| -rw-r--r-- | include/trace/events/btrfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/events/btrfs.h b/include/trace/events/btrfs.h index ec1df8b94517..99ae9c923070 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, |
