Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mmc: core: Fix tracepoint print of blk_addr and blksz

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 <adrian.hunter@intel.com>
Fixes: d2f82254e4e8 ("mmc: core: Add members to mmc_request and mmc_data for CQE's")
Cc: <stable@vger.kernel.org> # 4.14+
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>

authored by

Adrian Hunter and committed by
Ulf Hansson
c658dc58 dbe7dc6b

+2 -2
+2 -2
include/trace/events/mmc.h
··· 86 86 __entry->stop_flags, __entry->stop_retries, 87 87 __entry->sbc_opcode, __entry->sbc_arg, 88 88 __entry->sbc_flags, __entry->sbc_retries, 89 - __entry->blocks, __entry->blk_addr, 90 - __entry->blksz, __entry->data_flags, __entry->tag, 89 + __entry->blocks, __entry->blksz, 90 + __entry->blk_addr, __entry->data_flags, __entry->tag, 91 91 __entry->can_retune, __entry->doing_retune, 92 92 __entry->retune_now, __entry->need_retune, 93 93 __entry->hold_retune, __entry->retune_period)