summaryrefslogtreecommitdiff
path: root/src/VBox/Devices/Network/DrvIntNet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/Devices/Network/DrvIntNet.cpp')
-rw-r--r--src/VBox/Devices/Network/DrvIntNet.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/VBox/Devices/Network/DrvIntNet.cpp b/src/VBox/Devices/Network/DrvIntNet.cpp
index 1615af7cc..ae3afe4ba 100644
--- a/src/VBox/Devices/Network/DrvIntNet.cpp
+++ b/src/VBox/Devices/Network/DrvIntNet.cpp
@@ -1,4 +1,4 @@
-/* $Id: DrvIntNet.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
+/* $Id: DrvIntNet.cpp 29598 2010-05-18 08:32:49Z vboxsync $ */
/** @file
* DrvIntNet - Internal network transport driver.
*/
@@ -1445,7 +1445,7 @@ static DECLCALLBACK(int) drvR3IntNetConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg
if (OpenReq.cbSend < 128)
return PDMDRV_SET_ERROR(pDrvIns, rc,
N_("Configuration error: The \"SendBufferSize\" value is too small"));
- if (OpenReq.cbSend < VBOX_MAX_GSO_SIZE * 4)
+ if (OpenReq.cbSend < VBOX_MAX_GSO_SIZE * 3)
LogRel(("DrvIntNet: Warning! SendBufferSize=%u, Recommended minimum size %u butes.\n", OpenReq.cbSend, VBOX_MAX_GSO_SIZE * 4));
/** @cfgm{IsService, boolean, true}
@@ -1521,7 +1521,7 @@ static DECLCALLBACK(int) drvR3IntNetConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg
GetBufferPtrsReq.pSession = NIL_RTR0PTR;
GetBufferPtrsReq.hIf = pThis->hIf;
GetBufferPtrsReq.pRing3Buf = NULL;
- GetBufferPtrsReq.pRing0Buf = NULL;
+ GetBufferPtrsReq.pRing0Buf = NIL_RTR0PTR;
rc = PDMDrvHlpSUPCallVMMR0Ex(pDrvIns, VMMR0_DO_INTNET_IF_GET_BUFFER_PTRS, &GetBufferPtrsReq, sizeof(GetBufferPtrsReq));
if (RT_FAILURE(rc))
return PDMDrvHlpVMSetError(pDrvIns, rc, RT_SRC_POS,