scsi: target: Fix incorrect function name in pscsi_create_type_disk()
JIRA: https://issues.redhat.com/browse/RHEL-93481 In pr_err(), bdev_open_by_path() should be renamed to bdev_file_open_by_path() Fixes: 034f0cf8fdf9 ("target: port block device access to file") Signed-off-by: Baolin Liu <liubaolin@kylinos.cn> Link: https://lore.kernel.org/r/20241030021800.234980-1-liubaolin12138@163.com Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> (cherry picked from commit da5aeca99dd0b6c7bf6679382756ea6bda195f72) Signed-off-by: Maurizio Lombardi <mlombard@redhat.com>
This commit is contained in:
parent
b8b966e8b0
commit
03dc4e11a4
|
@ -369,7 +369,7 @@ static int pscsi_create_type_disk(struct se_device *dev, struct scsi_device *sd)
|
||||||
bdev_file = bdev_file_open_by_path(dev->udev_path,
|
bdev_file = bdev_file_open_by_path(dev->udev_path,
|
||||||
BLK_OPEN_WRITE | BLK_OPEN_READ, pdv, NULL);
|
BLK_OPEN_WRITE | BLK_OPEN_READ, pdv, NULL);
|
||||||
if (IS_ERR(bdev_file)) {
|
if (IS_ERR(bdev_file)) {
|
||||||
pr_err("pSCSI: bdev_open_by_path() failed\n");
|
pr_err("pSCSI: bdev_file_open_by_path() failed\n");
|
||||||
scsi_device_put(sd);
|
scsi_device_put(sd);
|
||||||
return PTR_ERR(bdev_file);
|
return PTR_ERR(bdev_file);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue