Changeset 68841 in vbox for trunk/src/VBox/Runtime/common/fs
- Timestamp:
- Sep 23, 2017 1:05:34 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/isomakercmd.cpp
r68840 r68841 1204 1204 { 1205 1205 /* Look for the next clear bit after it (with wrap around). */ 1206 //int iHit = ASMBitNextClear(pvBitmap, RT_ALIGN_32(cBlocks, 64), iBlock); - buggy assembly somewhere...1207 1206 int iHit = ASMBitNextClear(pvBitmap, cBlocks, iBlock); 1208 1207 Assert(iHit < (int32_t)cBlocks); 1209 1208 if (iHit < 0) 1210 1209 { 1211 //iHit = ASMBitNextClear(pvBitmap, RT_ALIGN_32(iBlock, 64), 0); - buggy assembly somewhere... 1212 iHit = ASMBitNextClear(pvBitmap, iBlock, 0); 1210 iHit = ASMBitFirstClear(pvBitmap, iBlock); 1213 1211 Assert(iHit < (int32_t)cBlocks); 1214 1212 }
Note:
See TracChangeset
for help on using the changeset viewer.