VirtualBox

Changeset 29422 in vbox for trunk/src/VBox/Main/include


Ignore:
Timestamp:
May 12, 2010 2:08:52 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
61537
Message:

Main/OVF: fix IDE channel confusion introduced with earlier OVF two-channel IDE fix (trunk regression)

Location:
trunk/src/VBox/Main/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/ApplianceImpl.h

    r28800 r29422  
    141141                                     uint32_t ulAddressOnParent,
    142142                                     Bstr &controllerType,
    143                                      int32_t &lChannel,
     143                                     int32_t &lControllerPort,
    144144                                     int32_t &lDevice);
    145145
  • trunk/src/VBox/Main/include/ApplianceImplPrivate.h

    r28800 r29422  
    127127    ComPtr<IMachine>    pMachine;
    128128    Bstr                controllerType;
    129     int32_t             lChannel;
    130     int32_t             lDevice;
     129    int32_t             lControllerPort;        // 0-29 for SATA
     130    int32_t             lDevice;                // IDE: 0 or 1, otherwise 0 always
    131131};
    132132
  • trunk/src/VBox/Main/include/ovfreader.h

    r29087 r29422  
    217217                                        // a network adapter depending on the network name.
    218218    iprt::MiniString strAddress;                 // "Device-specific. For an Ethernet adapter, this specifies the MAC address."
     219    int32_t lAddress;                   // strAddress as an integer, if applicable.
    219220    iprt::MiniString strAddressOnParent;         // "For a device, this specifies its location on the controller."
    220221    iprt::MiniString strAllocationUnits;         // "Specifies the units of allocation used. For example, “byte * 2^20”."
     
    262263            // treats it as a fourth class besides IDE, SATA, SCSI
    263264
    264     uint32_t                ulAddress;          // controller index; this is determined heuristically by the OVF reader and will
    265                                                 // be 0 for the first controller of this type (e.g. IDE primary ctler), 1 for the
    266                                                 // next (e.g. IDE secondary ctler)
     265    int32_t                 lAddress;           // value from OVF "Address" element
     266    bool                    fPrimary;           // controller index; this is determined heuristically by the OVF reader and will
     267                                                // be true for the first controller of this type (e.g. IDE primary ctler) or
     268                                                // false for the next (e.g. IDE secondary ctler)
    267269
    268270    HardDiskController()
    269271        : idController(0),
    270           ulAddress(0)
     272          lAddress(0),
     273          fPrimary(true)
    271274    { }
    272275};
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette