Commit 54815088 authored by Martin K. Petersen's avatar Martin K. Petersen

scsi: ufs: core: Use scsi_get_lba() to get LBA

Use the scsi_get_lba() helper instead of a function internal to the
SCSI disk driver. Remove #include "sd.h".

Link: https://lore.kernel.org/r/20210609033929.3815-16-martin.petersen@oracle.comReviewed-by: default avatarBart Van Assche <bvanassche@acm.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
Message-Id: <20210609033929.3815-16-martin.petersen@oracle.com>
parent d2c945f0
...@@ -25,7 +25,6 @@ ...@@ -25,7 +25,6 @@
#include "ufs_bsg.h" #include "ufs_bsg.h"
#include "ufshcd-crypto.h" #include "ufshcd-crypto.h"
#include <asm/unaligned.h> #include <asm/unaligned.h>
#include "../sd.h"
#define CREATE_TRACE_POINTS #define CREATE_TRACE_POINTS
#include <trace/events/ufs.h> #include <trace/events/ufs.h>
...@@ -390,7 +389,7 @@ static void ufshcd_add_command_trace(struct ufs_hba *hba, unsigned int tag, ...@@ -390,7 +389,7 @@ static void ufshcd_add_command_trace(struct ufs_hba *hba, unsigned int tag,
/* 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 = scsi_get_lba(cmd);
if (opcode == READ_10 || opcode == WRITE_10) { if (opcode == READ_10 || opcode == WRITE_10) {
/* /*
......
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