]> xenbits.xensource.com Git - libvirt.git/commitdiff
virPCIVPDParseVPDLargeResourceFields: Merge logic conditions
authorPeter Krempa <pkrempa@redhat.com>
Tue, 30 Jan 2024 14:02:39 +0000 (15:02 +0100)
committerPeter Krempa <pkrempa@redhat.com>
Wed, 31 Jan 2024 16:24:07 +0000 (17:24 +0100)
Merge the pre-checks with the 'switch' statement which is operating on
the same values to simplify further refactoring.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
src/util/virpcivpd.c

index ddd79fa8bc87469991338abc81cc7a5178a5fb22..ba05014e40a4986798e9c0d02496e4babe447ca6 100644 (file)
@@ -438,23 +438,27 @@ virPCIVPDParseVPDLargeResourceFields(int vpdFileFd, uint16_t resPos, uint16_t re
         fieldKeyword = g_strndup((char *)buf, 2);
         fieldFormat = virPCIVPDResourceGetFieldValueFormat(fieldKeyword);
 
-        /* Handle special cases first */
-        if (!readOnly && fieldFormat == VIR_PCI_VPD_RESOURCE_FIELD_VALUE_FORMAT_RESVD) {
-            VIR_INFO("Unexpected RV keyword in the read-write section.");
-            return false;
-        } else if (readOnly && fieldFormat == VIR_PCI_VPD_RESOURCE_FIELD_VALUE_FORMAT_RDWR) {
-            VIR_INFO("Unexpected RW keyword in the read-only section.");
-            return false;
-        }
-
         /* Determine how many bytes to read per field value type. */
         switch (fieldFormat) {
             case VIR_PCI_VPD_RESOURCE_FIELD_VALUE_FORMAT_TEXT:
-            case VIR_PCI_VPD_RESOURCE_FIELD_VALUE_FORMAT_RDWR:
             case VIR_PCI_VPD_RESOURCE_FIELD_VALUE_FORMAT_BINARY:
                 bytesToRead = fieldDataLen;
                 break;
+
+            case VIR_PCI_VPD_RESOURCE_FIELD_VALUE_FORMAT_RDWR:
+                if (readOnly) {
+                    VIR_INFO("Unexpected RW keyword in the read-only section.");
+                    return false;
+                }
+
+                bytesToRead = fieldDataLen;
+                break;
+
             case VIR_PCI_VPD_RESOURCE_FIELD_VALUE_FORMAT_RESVD:
+                if (!readOnly) {
+                    VIR_INFO("Unexpected RV keyword in the read-write section.");
+                    return false;
+                }
                 /* Only need one byte to be read and accounted towards
                  * the checksum calculation. */
                 bytesToRead = 1;