mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
Merge branch '6.12/scsi-fixes' into 6.13/scsi-staging
Pull in 6.12 fixes branch to resolve a merge conflict in ufs-mcq.c. Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
commit
4b3b5815bc
@ -830,7 +830,6 @@ static int fnic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
spin_lock_init(&fnic->vlans_lock);
|
||||
INIT_WORK(&fnic->fip_frame_work, fnic_handle_fip_frame);
|
||||
INIT_WORK(&fnic->event_work, fnic_handle_event);
|
||||
INIT_WORK(&fnic->flush_work, fnic_flush_tx);
|
||||
skb_queue_head_init(&fnic->fip_frame_queue);
|
||||
INIT_LIST_HEAD(&fnic->evlist);
|
||||
INIT_LIST_HEAD(&fnic->vlans);
|
||||
@ -948,6 +947,7 @@ static int fnic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
|
||||
INIT_WORK(&fnic->link_work, fnic_handle_link);
|
||||
INIT_WORK(&fnic->frame_work, fnic_handle_frame);
|
||||
INIT_WORK(&fnic->flush_work, fnic_flush_tx);
|
||||
skb_queue_head_init(&fnic->frame_queue);
|
||||
skb_queue_head_init(&fnic->tx_queue);
|
||||
|
||||
|
@ -542,8 +542,8 @@ struct mpi3mr_hba_port {
|
||||
* @port_list: List of ports belonging to a SAS node
|
||||
* @num_phys: Number of phys associated with port
|
||||
* @marked_responding: used while refresing the sas ports
|
||||
* @lowest_phy: lowest phy ID of current sas port
|
||||
* @phy_mask: phy_mask of current sas port
|
||||
* @lowest_phy: lowest phy ID of current sas port, valid for controller port
|
||||
* @phy_mask: phy_mask of current sas port, valid for controller port
|
||||
* @hba_port: HBA port entry
|
||||
* @remote_identify: Attached device identification
|
||||
* @rphy: SAS transport layer rphy object
|
||||
|
@ -590,12 +590,13 @@ static enum sas_linkrate mpi3mr_convert_phy_link_rate(u8 link_rate)
|
||||
* @mrioc: Adapter instance reference
|
||||
* @mr_sas_port: Internal Port object
|
||||
* @mr_sas_phy: Internal Phy object
|
||||
* @host_node: Flag to indicate this is a host_node
|
||||
*
|
||||
* Return: None.
|
||||
*/
|
||||
static void mpi3mr_delete_sas_phy(struct mpi3mr_ioc *mrioc,
|
||||
struct mpi3mr_sas_port *mr_sas_port,
|
||||
struct mpi3mr_sas_phy *mr_sas_phy)
|
||||
struct mpi3mr_sas_phy *mr_sas_phy, u8 host_node)
|
||||
{
|
||||
u64 sas_address = mr_sas_port->remote_identify.sas_address;
|
||||
|
||||
@ -605,9 +606,13 @@ static void mpi3mr_delete_sas_phy(struct mpi3mr_ioc *mrioc,
|
||||
|
||||
list_del(&mr_sas_phy->port_siblings);
|
||||
mr_sas_port->num_phys--;
|
||||
mr_sas_port->phy_mask &= ~(1 << mr_sas_phy->phy_id);
|
||||
if (mr_sas_port->lowest_phy == mr_sas_phy->phy_id)
|
||||
mr_sas_port->lowest_phy = ffs(mr_sas_port->phy_mask) - 1;
|
||||
|
||||
if (host_node) {
|
||||
mr_sas_port->phy_mask &= ~(1 << mr_sas_phy->phy_id);
|
||||
|
||||
if (mr_sas_port->lowest_phy == mr_sas_phy->phy_id)
|
||||
mr_sas_port->lowest_phy = ffs(mr_sas_port->phy_mask) - 1;
|
||||
}
|
||||
sas_port_delete_phy(mr_sas_port->port, mr_sas_phy->phy);
|
||||
mr_sas_phy->phy_belongs_to_port = 0;
|
||||
}
|
||||
@ -617,12 +622,13 @@ static void mpi3mr_delete_sas_phy(struct mpi3mr_ioc *mrioc,
|
||||
* @mrioc: Adapter instance reference
|
||||
* @mr_sas_port: Internal Port object
|
||||
* @mr_sas_phy: Internal Phy object
|
||||
* @host_node: Flag to indicate this is a host_node
|
||||
*
|
||||
* Return: None.
|
||||
*/
|
||||
static void mpi3mr_add_sas_phy(struct mpi3mr_ioc *mrioc,
|
||||
struct mpi3mr_sas_port *mr_sas_port,
|
||||
struct mpi3mr_sas_phy *mr_sas_phy)
|
||||
struct mpi3mr_sas_phy *mr_sas_phy, u8 host_node)
|
||||
{
|
||||
u64 sas_address = mr_sas_port->remote_identify.sas_address;
|
||||
|
||||
@ -632,9 +638,12 @@ static void mpi3mr_add_sas_phy(struct mpi3mr_ioc *mrioc,
|
||||
|
||||
list_add_tail(&mr_sas_phy->port_siblings, &mr_sas_port->phy_list);
|
||||
mr_sas_port->num_phys++;
|
||||
mr_sas_port->phy_mask |= (1 << mr_sas_phy->phy_id);
|
||||
if (mr_sas_phy->phy_id < mr_sas_port->lowest_phy)
|
||||
mr_sas_port->lowest_phy = ffs(mr_sas_port->phy_mask) - 1;
|
||||
if (host_node) {
|
||||
mr_sas_port->phy_mask |= (1 << mr_sas_phy->phy_id);
|
||||
|
||||
if (mr_sas_phy->phy_id < mr_sas_port->lowest_phy)
|
||||
mr_sas_port->lowest_phy = ffs(mr_sas_port->phy_mask) - 1;
|
||||
}
|
||||
sas_port_add_phy(mr_sas_port->port, mr_sas_phy->phy);
|
||||
mr_sas_phy->phy_belongs_to_port = 1;
|
||||
}
|
||||
@ -675,7 +684,7 @@ static void mpi3mr_add_phy_to_an_existing_port(struct mpi3mr_ioc *mrioc,
|
||||
if (srch_phy == mr_sas_phy)
|
||||
return;
|
||||
}
|
||||
mpi3mr_add_sas_phy(mrioc, mr_sas_port, mr_sas_phy);
|
||||
mpi3mr_add_sas_phy(mrioc, mr_sas_port, mr_sas_phy, mr_sas_node->host_node);
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -736,7 +745,7 @@ static void mpi3mr_del_phy_from_an_existing_port(struct mpi3mr_ioc *mrioc,
|
||||
mpi3mr_delete_sas_port(mrioc, mr_sas_port);
|
||||
else
|
||||
mpi3mr_delete_sas_phy(mrioc, mr_sas_port,
|
||||
mr_sas_phy);
|
||||
mr_sas_phy, mr_sas_node->host_node);
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -1028,7 +1037,7 @@ mpi3mr_alloc_hba_port(struct mpi3mr_ioc *mrioc, u16 port_id)
|
||||
/**
|
||||
* mpi3mr_get_hba_port_by_id - find hba port by id
|
||||
* @mrioc: Adapter instance reference
|
||||
* @port_id - Port ID to search
|
||||
* @port_id: Port ID to search
|
||||
*
|
||||
* Return: mpi3mr_hba_port reference for the matched port
|
||||
*/
|
||||
@ -1367,7 +1376,8 @@ static struct mpi3mr_sas_port *mpi3mr_sas_port_add(struct mpi3mr_ioc *mrioc,
|
||||
mpi3mr_sas_port_sanity_check(mrioc, mr_sas_node,
|
||||
mr_sas_port->remote_identify.sas_address, hba_port);
|
||||
|
||||
if (mr_sas_node->num_phys >= sizeof(mr_sas_port->phy_mask) * 8)
|
||||
if (mr_sas_node->host_node && mr_sas_node->num_phys >=
|
||||
sizeof(mr_sas_port->phy_mask) * 8)
|
||||
ioc_info(mrioc, "max port count %u could be too high\n",
|
||||
mr_sas_node->num_phys);
|
||||
|
||||
@ -1377,7 +1387,7 @@ static struct mpi3mr_sas_port *mpi3mr_sas_port_add(struct mpi3mr_ioc *mrioc,
|
||||
(mr_sas_node->phy[i].hba_port != hba_port))
|
||||
continue;
|
||||
|
||||
if (i >= sizeof(mr_sas_port->phy_mask) * 8) {
|
||||
if (mr_sas_node->host_node && (i >= sizeof(mr_sas_port->phy_mask) * 8)) {
|
||||
ioc_warn(mrioc, "skipping port %u, max allowed value is %zu\n",
|
||||
i, sizeof(mr_sas_port->phy_mask) * 8);
|
||||
goto out_fail;
|
||||
@ -1385,7 +1395,8 @@ static struct mpi3mr_sas_port *mpi3mr_sas_port_add(struct mpi3mr_ioc *mrioc,
|
||||
list_add_tail(&mr_sas_node->phy[i].port_siblings,
|
||||
&mr_sas_port->phy_list);
|
||||
mr_sas_port->num_phys++;
|
||||
mr_sas_port->phy_mask |= (1 << i);
|
||||
if (mr_sas_node->host_node)
|
||||
mr_sas_port->phy_mask |= (1 << i);
|
||||
}
|
||||
|
||||
if (!mr_sas_port->num_phys) {
|
||||
@ -1394,7 +1405,8 @@ static struct mpi3mr_sas_port *mpi3mr_sas_port_add(struct mpi3mr_ioc *mrioc,
|
||||
goto out_fail;
|
||||
}
|
||||
|
||||
mr_sas_port->lowest_phy = ffs(mr_sas_port->phy_mask) - 1;
|
||||
if (mr_sas_node->host_node)
|
||||
mr_sas_port->lowest_phy = ffs(mr_sas_port->phy_mask) - 1;
|
||||
|
||||
if (mr_sas_port->remote_identify.device_type == SAS_END_DEVICE) {
|
||||
tgtdev = mpi3mr_get_tgtdev_by_addr(mrioc,
|
||||
|
@ -3651,7 +3651,7 @@ static int do_device_access(struct sdeb_store_info *sip, struct scsi_cmnd *scp,
|
||||
enum dma_data_direction dir;
|
||||
struct scsi_data_buffer *sdb = &scp->sdb;
|
||||
u8 *fsp;
|
||||
int i;
|
||||
int i, total = 0;
|
||||
|
||||
/*
|
||||
* Even though reads are inherently atomic (in this driver), we expect
|
||||
@ -3688,18 +3688,16 @@ static int do_device_access(struct sdeb_store_info *sip, struct scsi_cmnd *scp,
|
||||
fsp + (block * sdebug_sector_size),
|
||||
sdebug_sector_size, sg_skip, do_write);
|
||||
sdeb_data_sector_unlock(sip, do_write);
|
||||
if (ret != sdebug_sector_size) {
|
||||
ret += (i * sdebug_sector_size);
|
||||
total += ret;
|
||||
if (ret != sdebug_sector_size)
|
||||
break;
|
||||
}
|
||||
sg_skip += sdebug_sector_size;
|
||||
if (++block >= sdebug_store_sectors)
|
||||
block = 0;
|
||||
}
|
||||
ret = num * sdebug_sector_size;
|
||||
sdeb_data_unlock(sip, atomic);
|
||||
|
||||
return ret;
|
||||
return total;
|
||||
}
|
||||
|
||||
/* Returns number of bytes copied or -1 if error. */
|
||||
|
@ -1250,7 +1250,7 @@ static ssize_t fc_rport_set_marginal_state(struct device *dev,
|
||||
*/
|
||||
if (rport->port_state == FC_PORTSTATE_ONLINE)
|
||||
rport->port_state = port_state;
|
||||
else
|
||||
else if (port_state != rport->port_state)
|
||||
return -EINVAL;
|
||||
} else if (port_state == FC_PORTSTATE_ONLINE) {
|
||||
/*
|
||||
@ -1260,7 +1260,7 @@ static ssize_t fc_rport_set_marginal_state(struct device *dev,
|
||||
*/
|
||||
if (rport->port_state == FC_PORTSTATE_MARGINAL)
|
||||
rport->port_state = port_state;
|
||||
else
|
||||
else if (port_state != rport->port_state)
|
||||
return -EINVAL;
|
||||
} else
|
||||
return -EINVAL;
|
||||
|
@ -831,7 +831,7 @@ wd33c93_intr(struct Scsi_Host *instance)
|
||||
/* construct an IDENTIFY message with correct disconnect bit */
|
||||
|
||||
hostdata->outgoing_msg[0] = IDENTIFY(0, cmd->device->lun);
|
||||
if (scsi_pointer->phase)
|
||||
if (WD33C93_scsi_pointer(cmd)->phase)
|
||||
hostdata->outgoing_msg[0] |= 0x40;
|
||||
|
||||
if (hostdata->sync_stat[cmd->device->id] == SS_FIRST) {
|
||||
|
@ -691,7 +691,7 @@ struct se_device *target_alloc_device(struct se_hba *hba, const char *name)
|
||||
|
||||
dev->queues = kcalloc(nr_cpu_ids, sizeof(*dev->queues), GFP_KERNEL);
|
||||
if (!dev->queues) {
|
||||
dev->transport->free_device(dev);
|
||||
hba->backend->ops->free_device(dev);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -569,8 +569,9 @@ int ufshcd_mcq_sq_cleanup(struct ufs_hba *hba, int task_tag)
|
||||
opr_sqd_base = mcq_opr_base(hba, OPR_SQD, id);
|
||||
writel(nexus, opr_sqd_base + REG_SQCTI);
|
||||
|
||||
/* SQRTCy.ICU = 1 */
|
||||
writel(SQ_ICU, opr_sqd_base + REG_SQRTC);
|
||||
/* Initiate Cleanup */
|
||||
writel(readl(opr_sqd_base + REG_SQRTC) | SQ_ICU,
|
||||
opr_sqd_base + REG_SQRTC);
|
||||
|
||||
/* Wait until SQRTSy.CUS = 1. Report SQRTSy.RTC. */
|
||||
reg = opr_sqd_base + REG_SQRTS;
|
||||
|
@ -2923,9 +2923,8 @@ static void ufshcd_init_lrb(struct ufs_hba *hba, struct ufshcd_lrb *lrb, int i)
|
||||
struct utp_transfer_req_desc *utrdlp = hba->utrdl_base_addr;
|
||||
dma_addr_t cmd_desc_element_addr = hba->ucdl_dma_addr +
|
||||
i * ufshcd_get_ucd_size(hba);
|
||||
u16 response_offset = offsetof(struct utp_transfer_cmd_desc,
|
||||
response_upiu);
|
||||
u16 prdt_offset = offsetof(struct utp_transfer_cmd_desc, prd_table);
|
||||
u16 response_offset = le16_to_cpu(utrdlp[i].response_upiu_offset);
|
||||
u16 prdt_offset = le16_to_cpu(utrdlp[i].prd_table_offset);
|
||||
|
||||
lrb->utr_descriptor_ptr = utrdlp + i;
|
||||
lrb->utrd_dma_addr = hba->utrdl_dma_addr +
|
||||
@ -5394,10 +5393,12 @@ ufshcd_transfer_rsp_status(struct ufs_hba *hba, struct ufshcd_lrb *lrbp,
|
||||
}
|
||||
break;
|
||||
case OCS_ABORTED:
|
||||
result |= DID_ABORT << 16;
|
||||
break;
|
||||
case OCS_INVALID_COMMAND_STATUS:
|
||||
result |= DID_REQUEUE << 16;
|
||||
dev_warn(hba->dev,
|
||||
"OCS %s from controller for tag %d\n",
|
||||
(ocs == OCS_ABORTED ? "aborted" : "invalid"),
|
||||
lrbp->task_tag);
|
||||
break;
|
||||
case OCS_INVALID_CMD_TABLE_ATTR:
|
||||
case OCS_INVALID_PRDT_ATTR:
|
||||
@ -6444,26 +6445,12 @@ static bool ufshcd_abort_one(struct request *rq, void *priv)
|
||||
struct scsi_device *sdev = cmd->device;
|
||||
struct Scsi_Host *shost = sdev->host;
|
||||
struct ufs_hba *hba = shost_priv(shost);
|
||||
struct ufshcd_lrb *lrbp = &hba->lrb[tag];
|
||||
struct ufs_hw_queue *hwq;
|
||||
unsigned long flags;
|
||||
|
||||
*ret = ufshcd_try_to_abort_task(hba, tag);
|
||||
dev_err(hba->dev, "Aborting tag %d / CDB %#02x %s\n", tag,
|
||||
hba->lrb[tag].cmd ? hba->lrb[tag].cmd->cmnd[0] : -1,
|
||||
*ret ? "failed" : "succeeded");
|
||||
|
||||
/* Release cmd in MCQ mode if abort succeeds */
|
||||
if (hba->mcq_enabled && (*ret == 0)) {
|
||||
hwq = ufshcd_mcq_req_to_hwq(hba, scsi_cmd_to_rq(lrbp->cmd));
|
||||
if (!hwq)
|
||||
return 0;
|
||||
spin_lock_irqsave(&hwq->cq_lock, flags);
|
||||
if (ufshcd_cmd_inflight(lrbp->cmd))
|
||||
ufshcd_release_scsi_cmd(hba, lrbp);
|
||||
spin_unlock_irqrestore(&hwq->cq_lock, flags);
|
||||
}
|
||||
|
||||
return *ret == 0;
|
||||
}
|
||||
|
||||
@ -8216,7 +8203,7 @@ static void ufshcd_update_rtc(struct ufs_hba *hba)
|
||||
|
||||
err = ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_WRITE_ATTR, QUERY_ATTR_IDN_SECONDS_PASSED,
|
||||
0, 0, &val);
|
||||
ufshcd_rpm_put_sync(hba);
|
||||
ufshcd_rpm_put(hba);
|
||||
|
||||
if (err)
|
||||
dev_err(hba->dev, "%s: Failed to update rtc %d\n", __func__, err);
|
||||
@ -10171,7 +10158,9 @@ static void ufshcd_wl_shutdown(struct device *dev)
|
||||
shost_for_each_device(sdev, hba->host) {
|
||||
if (sdev == hba->ufs_device_wlun)
|
||||
continue;
|
||||
scsi_device_quiesce(sdev);
|
||||
mutex_lock(&sdev->state_mutex);
|
||||
scsi_device_set_state(sdev, SDEV_OFFLINE);
|
||||
mutex_unlock(&sdev->state_mutex);
|
||||
}
|
||||
__ufshcd_wl_suspend(hba, UFS_SHUTDOWN_PM);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user