projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dbe7dc6
)
mmc: core: Fix tracepoint print of blk_addr and blksz
author
Adrian Hunter
<
[email protected]
>
Thu, 15 Mar 2018 09:22:28 +0000
(11:22 +0200)
committer
Ulf Hansson
<
[email protected]
>
Thu, 15 Mar 2018 10:15:22 +0000
(11:15 +0100)
Swap the positions of blk_addr and blksz in the tracepoint print arguments
so that they match the print format.
Signed-off-by: Adrian Hunter <
[email protected]
>
Fixes: d2f82254e4e8 ("mmc: core: Add members to mmc_request and mmc_data for CQE's")
Cc: <
[email protected]
> # 4.14+
Signed-off-by: Ulf Hansson <
[email protected]
>
include/trace/events/mmc.h
patch
|
blob
|
history
diff --git
a/include/trace/events/mmc.h
b/include/trace/events/mmc.h
index 200f731be557048c779691e3360018acbf4927c2..7b706ff213359eb31271c8869160c984171bce71 100644
(file)
--- a/
include/trace/events/mmc.h
+++ b/
include/trace/events/mmc.h
@@
-86,8
+86,8
@@
TRACE_EVENT(mmc_request_start,
__entry->stop_flags, __entry->stop_retries,
__entry->sbc_opcode, __entry->sbc_arg,
__entry->sbc_flags, __entry->sbc_retries,
- __entry->blocks, __entry->blk
_addr
,
- __entry->blk
sz
, __entry->data_flags, __entry->tag,
+ __entry->blocks, __entry->blk
sz
,
+ __entry->blk
_addr
, __entry->data_flags, __entry->tag,
__entry->can_retune, __entry->doing_retune,
__entry->retune_now, __entry->need_retune,
__entry->hold_retune, __entry->retune_period)