- Timestamp:
- Mar 25, 2009 6:32:26 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 45022
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImpl.cpp
r18269 r18273 3237 3237 } 3238 3238 3239 ULONG ulTotalOperationsWeight = ulTotalMB * 100 / ulPercentForDisks; 3240 m->ulWeightPerOperation = ulTotalOperationsWeight / 100; 3239 ULONG ulTotalOperationsWeight; 3240 if (ulTotalMB) 3241 { 3242 ulTotalOperationsWeight = ulTotalMB * 100 / ulPercentForDisks; 3243 m->ulWeightPerOperation = ulTotalOperationsWeight / 100; 3244 } 3245 else 3246 { 3247 ulTotalOperationsWeight = cFixed; 3248 m->ulWeightPerOperation = 1; 3249 } 3241 3250 3242 3251 Log(("Setting up progress object: ulTotalMB = %d, cFixed = %d, cDisks = %d, => cOperations = %d, ulTotalOperationsWeight = %d, m->ulWeightPerOperation = %d\n", … … 3870 3879 Bstr bstrLocation; 3871 3880 rc = pHardDisk->COMGETTER(Location)(bstrLocation.asOutParam()); 3881 if (FAILED(rc)) throw rc; 3872 3882 Bstr bstrName; 3873 3883 rc = pHardDisk->COMGETTER(Name)(bstrName.asOutParam()); 3884 if (FAILED(rc)) throw rc; 3885 ULONG64 ullSize; 3886 rc = pHardDisk->COMGETTER(Size)(&ullSize); 3887 if (FAILED(rc)) throw rc; 3874 3888 3875 3889 // and how this translates to the virtual system … … 3920 3934 strTargetVmdkName, // OVF value: 3921 3935 Utf8Str(bstrLocation), // vbox value: media path 3936 (uint32_t)(ullSize / _1M), 3922 3937 Utf8StrFmt("controller=%RI32;channel=%RI32", lControllerVsys, lChannelVsys)); 3923 3938 }
Note:
See TracChangeset
for help on using the changeset viewer.