- Timestamp:
- Mar 26, 2018 6:15:27 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r71486 r71522 170 170 && $(KBUILD_VERSION_PATCH) >= 999)) 171 171 VBOX_MIN_KMK_REVISION := 3093 172 VBOX_MIN_KBUILD_KMK_REVISION := $(if-expr "$(KBUILD_HOST)" == "win",3097, 3074)172 VBOX_MIN_KBUILD_KMK_REVISION := $(if-expr "$(KBUILD_HOST)" == "win",3097,$(if-expr "$(KBUILD_HOST).$(KBUILD_HOST_ARCH)" == "solaris.sparc64",2511,3074)) 173 173 if $(KMK_REVISION) >= $(VBOX_MIN_KMK_REVISION) 174 174 if $(KBUILD_KMK_REVISION) >= $(VBOX_MIN_KBUILD_KMK_REVISION) -
trunk/include/iprt/asm.h
r71339 r71522 1510 1510 #if (defined(RT_ARCH_X86) && ARCH_BITS == 16) || defined(IN_GUEST) 1511 1511 # define ASMSerializeInstruction() ASMSerializeInstructionIRet() 1512 #el se1512 #elif defined(RT_ARCH_X86) || defined(RT_ARCH_AMD64) 1513 1513 # define ASMSerializeInstruction() ASMSerializeInstructionCpuId() 1514 #elif defined(RT_ARCH_SPARC64) 1515 RTDECL(void) ASMSerializeInstruction(void); 1516 #else 1517 # error "Port me" 1514 1518 #endif 1515 1519 -
trunk/src/VBox/Runtime/common/asm/asm-fake.cpp
r69111 r71522 451 451 } 452 452 453 RTDECL(unsigned) ASMBitFirstSetU64(uint64_t u64) 454 { 455 uint32_t iBit; 456 for (iBit = 0; iBit < 64; iBit++) 457 if (u64 & RT_BIT_64(iBit)) 458 return iBit + 1; 459 return 0; 460 } 461 453 462 RTDECL(uint16_t) ASMByteSwapU16(uint16_t u16) 454 463 { -
trunk/src/VBox/Storage/VCICache.cpp
r69500 r71522 1426 1426 /* Setup the root tree. */ 1427 1427 memset(&NodeRoot, 0, sizeof(VciTreeNode)); 1428 NodeRoot.u8Type = RT_H2LE_U32(VCI_TREE_NODE_TYPE_LEAF);1428 NodeRoot.u8Type = VCI_TREE_NODE_TYPE_LEAF; 1429 1429 1430 1430 rc = vdIfIoIntFileWriteSync(pCache->pIfIo, pCache->pStorage, offTreeRoot,
Note:
See TracChangeset
for help on using the changeset viewer.