Commit 44b5de36 authored by Bean Huo's avatar Bean Huo Committed by Martin K. Petersen

scsi: ufs: core: Capture command trace only for the cmd != NULL case

For the query request, we already have query_trace, but in
ufshcd_send_command(), there will add two more redundant traces. Since
lrbp->cmd is NULL in the query request, the two trace events below provide
nothing except the tag and DB. Instead of letting them take up the limited
trace ring buffer, it’s better not to print these traces in case of cmd ==
NULL.

ufshcd_command: send_req: ff3b0000.ufs: tag: 28, DB: 0x0, size: -1, IS: 0, LBA: 18446744073709551615, opcode: 0x0 (0x0), group_id: 0x0
ufshcd_command: dev_complete: ff3b0000.ufs: tag: 28, DB: 0x0, size: -1, IS: 0, LBA: 18446744073709551615, opcode: 0x0 (0x0), group_id: 0x0

Link: https://lore.kernel.org/r/20210531104308.391842-4-huobean@gmail.comReviewed-by: default avatarCan Guo <cang@codeaurora.org>
Signed-off-by: default avatarBean Huo <beanhuo@micron.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 89ac2c3b
...@@ -378,35 +378,33 @@ static void ufshcd_add_command_trace(struct ufs_hba *hba, unsigned int tag, ...@@ -378,35 +378,33 @@ static void ufshcd_add_command_trace(struct ufs_hba *hba, unsigned int tag,
struct scsi_cmnd *cmd = lrbp->cmd; struct scsi_cmnd *cmd = lrbp->cmd;
int transfer_len = -1; int transfer_len = -1;
if (!cmd)
return;
if (!trace_ufshcd_command_enabled()) { if (!trace_ufshcd_command_enabled()) {
/* trace UPIU W/O tracing command */ /* trace UPIU W/O tracing command */
if (cmd) ufshcd_add_cmd_upiu_trace(hba, tag, str_t);
ufshcd_add_cmd_upiu_trace(hba, tag, str_t);
return; return;
} }
if (cmd) { /* data phase exists */ /* trace UPIU also */
/* trace UPIU also */ ufshcd_add_cmd_upiu_trace(hba, tag, str_t);
ufshcd_add_cmd_upiu_trace(hba, tag, str_t); opcode = cmd->cmnd[0];
opcode = cmd->cmnd[0]; lba = sectors_to_logical(cmd->device, blk_rq_pos(cmd->request));
lba = sectors_to_logical(cmd->device, blk_rq_pos(cmd->request));
if ((opcode == READ_10) || (opcode == WRITE_10)) { if (opcode == READ_10 || opcode == WRITE_10) {
/* /*
* Currently we only fully trace read(10) and write(10) * Currently we only fully trace read(10) and write(10) commands
* commands */
*/ transfer_len =
transfer_len = be32_to_cpu( be32_to_cpu(lrbp->ucd_req_ptr->sc.exp_data_transfer_len);
lrbp->ucd_req_ptr->sc.exp_data_transfer_len); if (opcode == WRITE_10)
if (opcode == WRITE_10) group_id = lrbp->cmd->cmnd[6];
group_id = lrbp->cmd->cmnd[6]; } else if (opcode == UNMAP) {
} else if (opcode == UNMAP) { /*
/* * The number of Bytes to be unmapped beginning with the lba.
* The number of Bytes to be unmapped beginning with the */
* lba. transfer_len = blk_rq_bytes(cmd->request);
*/
transfer_len = blk_rq_bytes(cmd->request);
}
} }
intr = ufshcd_readl(hba, REG_INTERRUPT_STATUS); intr = ufshcd_readl(hba, REG_INTERRUPT_STATUS);
......
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