btrfs: tracepoints, fix whitespace in strings
authorDavid Sterba <dsterba@suse.com>
Tue, 3 Apr 2018 19:21:17 +0000 (21:21 +0200)
committerDavid Sterba <dsterba@suse.com>
Mon, 28 May 2018 16:07:17 +0000 (18:07 +0200)
The preferred style is to avoid spaces between key and value and no
commas between key=values.

Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
include/trace/events/btrfs.h

index 06e8b8b..1773355 100644 (file)
@@ -121,7 +121,7 @@ TRACE_EVENT(btrfs_transaction_commit,
                __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),
                  __entry->generation)
 );
@@ -656,7 +656,7 @@ TRACE_EVENT(btrfs_sync_fs,
                __entry->wait   = wait;
        ),
 
-       TP_printk_btrfs("wait = %d", __entry->wait)
+       TP_printk_btrfs("wait=%d", __entry->wait)
 );
 
 TRACE_EVENT(btrfs_add_block_group,