vbox的更動 62466 路徑 trunk/src/VBox/HostDrivers
- 時間撮記:
- 2016-7-22 下午06:00:27 (8 年 以前)
- 位置:
- trunk/src/VBox/HostDrivers
- 檔案:
-
- 修改 6 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/darwin/VBoxNetFlt-darwin.cpp
r58107 r62466 1108 1108 pThis->pSwitchPort->pfnReportMacAddress(pThis->pSwitchPort, &pThis->u.s.MacAddr); 1109 1109 #if 0 1110 /* 1110 /* 1111 1111 * XXX: Don't tell SrvIntNetR0 if the interface is 1112 1112 * promiscuous, because there's no code yet to update that -
trunk/src/VBox/HostDrivers/VBoxNetFlt/win/cfg/VBoxNetCfg.cpp
r60639 r62466 3162 3162 3163 3163 /* 3164 * Set default metric value of interface to fix multicast issue 3164 * Set default metric value of interface to fix multicast issue 3165 3165 * See @bugref{6379} for details. 3166 3166 */ … … 3386 3386 if (pIpHlpInstance == NULL) 3387 3387 return E_FAIL; 3388 3389 g_pfnInitializeIpInterfaceEntry = 3388 3389 g_pfnInitializeIpInterfaceEntry = 3390 3390 (PFNINITIALIZEIPINTERFACEENTRY)GetProcAddress(pIpHlpInstance, "InitializeIpInterfaceEntry"); 3391 3391 Assert(g_pfnInitializeIpInterfaceEntry); … … 3393 3393 if (g_pfnInitializeIpInterfaceEntry) 3394 3394 { 3395 g_pfnGetIpInterfaceEntry = 3395 g_pfnGetIpInterfaceEntry = 3396 3396 (PFNGETIPINTERFACEENTRY)GetProcAddress(pIpHlpInstance, "GetIpInterfaceEntry"); 3397 3397 Assert(g_pfnGetIpInterfaceEntry); … … 3400 3400 if (g_pfnGetIpInterfaceEntry) 3401 3401 { 3402 g_pfnSetIpInterfaceEntry = 3402 g_pfnSetIpInterfaceEntry = 3403 3403 (PFNSETIPINTERFACEENTRY)GetProcAddress(pIpHlpInstance, "SetIpInterfaceEntry"); 3404 3404 Assert(g_pfnSetIpInterfaceEntry); … … 3470 3470 if (pLUID == NULL) 3471 3471 return E_INVALIDARG; 3472 3472 3473 3473 res = RegQueryValueExW(hKey, L"NetLuidIndex", NULL, 3474 3474 &dwValueType, (LPBYTE)&luidIndex, &cbSize); … … 3497 3497 NET_LUID luid; 3498 3498 int loopbackMetric; 3499 3499 3500 3500 rc = vboxLoadIpHelpFunctions(hModule); 3501 3501 … … 3528 3528 { 3529 3529 SP_DEVINFO_DATA DevInfoData; 3530 3530 3531 3531 DevInfoData.cbSize = sizeof(SP_DEVINFO_DATA); 3532 3532 if (SetupDiOpenDeviceInfo(hDevInfo, pwszId, NULL, 0, &DevInfoData)) -
trunk/src/VBox/HostDrivers/VBoxNetFlt/win/drv/VBoxNetFltRt-win.cpp
r61866 r62466 2746 2746 /* release for the retain we made before waining on the mutex */ 2747 2747 vboxNetFltRelease(pNetFlt, false); 2748 2748 2749 2749 LogFlowFunc(("LEAVE: Status 0x%x\n", Status)); 2750 2750 -
trunk/src/VBox/HostDrivers/VBoxUSB/win/Install/USBUninstall.cpp
r57934 r62466 120 120 else if (ControlService(hService, SERVICE_CONTROL_STOP, &Status)) 121 121 { 122 123 124 125 122 /* 123 * Wait for finish about 1 minute. 124 * It should be enough for work with driver verifier 125 */ 126 126 int iWait = 600; 127 127 while (Status.dwCurrentState == SERVICE_STOP_PENDING && iWait-- > 0) -
trunk/src/VBox/HostDrivers/VBoxUSB/win/dev/VBoxUsbRt.cpp
r60639 r62466 844 844 845 845 /* Clean up. */ 846 if (pUrb) 846 if (pUrb) 847 847 VBoxUsbToolUrbFree(pUrb); 848 848 if (pNewIFInfo) … … 850 850 if (pNewPipeInfo) 851 851 vboxUsbMemFree(pNewPipeInfo); 852 852 853 853 return Status; 854 854 } … … 1090 1090 1091 1091 /* If a control URB was successfully completed on the default control 1092 * pipe, stash away the handle. When submitting the URB, we don't need 1093 * to know (and initially don't have) the handle. If we want to abort 1094 * the default control pipe, we *have* to have a handle. This is how we 1095 * find out what the handle is. 1092 * pipe, stash away the handle. When submitting the URB, we don't need 1093 * to know (and initially don't have) the handle. If we want to abort 1094 * the default control pipe, we *have* to have a handle. This is how we 1095 * find out what the handle is. 1096 1096 */ 1097 1097 if (!pUrbInfo->ep && (pDevExt->Rt.hPipe0 == NULL)) -
trunk/src/VBox/HostDrivers/linux/loadall.sh
r58488 r62466 23 23 # vboxusers membership check. 24 24 # 25 if ! (id -Gn | grep -w ${MY_GROUPNAME}); then 25 if ! (id -Gn | grep -w ${MY_GROUPNAME}); then 26 26 echo "loadall.sh: you're not a member of vboxusers..."; 27 27 # Create the group.
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器