mirror of https://gitee.com/openkylin/linux.git
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: Nikolay Borisov <nborisov@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
8eec846308
commit
79bcb71a5b
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue