mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-16 12:10:38 -04:00
Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
Pull more SCSI updates from James Bottomley: "A few late arriving patches that missed the initial pull request. It's mostly bug fixes (the dt-bindings is a fix for the initial pull)" * tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: scsi: ufs: core: Remove unused function declaration scsi: target: docs: Remove tcm_mod_builder.py scsi: target: iblock: Quiet bool conversion warning with pr_preempt use scsi: dt-bindings: ufs: qcom: Fix ICE phandle scsi: core: Simplify scsi_cdl_check_cmd() scsi: isci: Fix comment typo scsi: smartpqi: Replace one-element arrays with flexible-array members scsi: target: tcmu: Replace strlcpy() with strscpy() scsi: ncr53c8xx: Replace strlcpy() with strscpy() scsi: lpfc: Fix lpfc_name struct packing
This commit is contained in:
@@ -888,7 +888,7 @@ static sense_reason_t iblock_execute_pr_out(struct se_cmd *cmd, u8 sa, u64 key,
|
||||
|
||||
ret = ops->pr_preempt(bdev, key, sa_key,
|
||||
scsi_pr_type_to_block(type),
|
||||
sa == PRO_PREEMPT ? false : true);
|
||||
sa == PRO_PREEMPT_AND_ABORT);
|
||||
break;
|
||||
case PRO_RELEASE:
|
||||
if (!ops->pr_clear) {
|
||||
|
||||
@@ -2820,14 +2820,14 @@ static ssize_t tcmu_dev_config_store(struct config_item *item, const char *page,
|
||||
pr_err("Unable to reconfigure device\n");
|
||||
return ret;
|
||||
}
|
||||
strlcpy(udev->dev_config, page, TCMU_CONFIG_LEN);
|
||||
strscpy(udev->dev_config, page, TCMU_CONFIG_LEN);
|
||||
|
||||
ret = tcmu_update_uio_info(udev);
|
||||
if (ret)
|
||||
return ret;
|
||||
return count;
|
||||
}
|
||||
strlcpy(udev->dev_config, page, TCMU_CONFIG_LEN);
|
||||
strscpy(udev->dev_config, page, TCMU_CONFIG_LEN);
|
||||
|
||||
return count;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user