[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[qemu-s390x] [PULL 04/54] s390/ipl: cast to SCSIDevice directly
From: |
Cornelia Huck |
Subject: |
[qemu-s390x] [PULL 04/54] s390/ipl: cast to SCSIDevice directly |
Date: |
Mon, 20 May 2019 19:02:12 +0200 |
Coverity notes that the result of object_dynamic_cast() to
SCSIDevice is not checked in s390_gen_initial_iplp(); as
we know that we always have a SCSIDevice in that branch,
we can instead cast via SCSI_DEVICE directly.
Coverity: CID 1401098
Fixes: 44445d8668f4 ("s390 vfio-ccw: Add bootindex property and IPLB data")
Message-Id: <address@hidden>
Reviewed-by: Thomas Huth <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Reviewed-by: Christian Borntraeger <address@hidden>
Signed-off-by: Cornelia Huck <address@hidden>
---
hw/s390x/ipl.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/hw/s390x/ipl.c b/hw/s390x/ipl.c
index d0cc06a05fd0..b93750c14eac 100644
--- a/hw/s390x/ipl.c
+++ b/hw/s390x/ipl.c
@@ -374,8 +374,7 @@ static bool s390_gen_initial_iplb(S390IPLState *ipl)
if (ccw_dev) {
switch (devtype) {
case CCW_DEVTYPE_SCSI:
- sd = (SCSIDevice *) object_dynamic_cast(OBJECT(dev_st),
- TYPE_SCSI_DEVICE);
+ sd = SCSI_DEVICE(dev_st);
ipl->iplb.len = cpu_to_be32(S390_IPLB_MIN_QEMU_SCSI_LEN);
ipl->iplb.blk0_len =
cpu_to_be32(S390_IPLB_MIN_QEMU_SCSI_LEN -
S390_IPLB_HEADER_LEN);
--
2.20.1
- [qemu-s390x] [PULL 00/54] s390x update, Cornelia Huck, 2019/05/20
- [qemu-s390x] [PULL 01/54] pc-bios/s390-ccw: Clean up harmless misuse of isdigit(), Cornelia Huck, 2019/05/20
- [qemu-s390x] [PULL 02/54] s390-bios: Skip bootmap signature entries, Cornelia Huck, 2019/05/20
- [qemu-s390x] [PULL 04/54] s390/ipl: cast to SCSIDevice directly,
Cornelia Huck <=
- [qemu-s390x] [PULL 05/54] s390/css: handle CCW_FLAG_SKIP, Cornelia Huck, 2019/05/20
- [qemu-s390x] [PULL 03/54] pc-bios/s390: Update firmware image with "Skip bootmap signature entries" fix, Cornelia Huck, 2019/05/20
- [qemu-s390x] [PULL 06/54] s390x/tcg: Implement VECTOR ADD, Cornelia Huck, 2019/05/20
- [qemu-s390x] [PULL 07/54] s390x/tcg: Implement VECTOR ADD COMPUTE CARRY, Cornelia Huck, 2019/05/20
- [qemu-s390x] [PULL 09/54] s390x/tcg: Implement VECTOR ADD WITH CARRY COMPUTE CARRY, Cornelia Huck, 2019/05/20
- [qemu-s390x] [PULL 08/54] s390x/tcg: Implement VECTOR ADD WITH CARRY, Cornelia Huck, 2019/05/20
- [qemu-s390x] [PULL 10/54] s390x/tcg: Implement VECTOR AND (WITH COMPLEMENT), Cornelia Huck, 2019/05/20
- [qemu-s390x] [PULL 11/54] s390x/tcg: Implement VECTOR AVERAGE, Cornelia Huck, 2019/05/20
- [qemu-s390x] [PULL 12/54] s390x/tcg: Implement VECTOR AVERAGE LOGICAL, Cornelia Huck, 2019/05/20
- [qemu-s390x] [PULL 13/54] s390x/tcg: Implement VECTOR CHECKSUM, Cornelia Huck, 2019/05/20