Commit 79bcb71a authored by David Sterba's avatar David Sterba

btrfs: tracepoints, fix whitespace in strings

The preferred style is to avoid spaces between key and value and no
commas between key=values.
Reviewed-by: default avatarNikolay Borisov <nborisov@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 8eec8463
...@@ -121,7 +121,7 @@ TRACE_EVENT(btrfs_transaction_commit, ...@@ -121,7 +121,7 @@ TRACE_EVENT(btrfs_transaction_commit,
__entry->root_objectid = root->root_key.objectid; __entry->root_objectid = root->root_key.objectid;
), ),
TP_printk_btrfs("root = %llu(%s), gen = %llu", TP_printk_btrfs("root=%llu(%s) gen=%llu",
show_root_type(__entry->root_objectid), show_root_type(__entry->root_objectid),
__entry->generation) __entry->generation)
); );
...@@ -656,7 +656,7 @@ TRACE_EVENT(btrfs_sync_fs, ...@@ -656,7 +656,7 @@ TRACE_EVENT(btrfs_sync_fs,
__entry->wait = wait; __entry->wait = wait;
), ),
TP_printk_btrfs("wait = %d", __entry->wait) TP_printk_btrfs("wait=%d", __entry->wait)
); );
TRACE_EVENT(btrfs_add_block_group, TRACE_EVENT(btrfs_add_block_group,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment