Changeset 931 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Feb 15, 2007 6:18:10 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18666
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r928 r931 1922 1922 } 1923 1923 1924 /** 1925 * Fails a TMD with a generic error. 1926 */ 1927 static void pcnetXmitFailTMDGeneric(PCNetState *pData, TMD *pTmd) 1928 { 1929 /* make carrier error - hope this is correct. */ 1930 pTmd->tmd2.lcar = pTmd->tmd1.err = 1; 1931 pData->aCSR[0] |= BIT(15) | BIT(13); /* ERR | CERR */ 1932 pData->Led.Asserted.s.fError = pData->Led.Actual.s.fError = 1; 1933 Log(("#%d pcnetTransmit: Signaling send error. swstyle=%#x\n", 1934 PCNETSTATE_2_DEVINS(pData)->iInstance, pData->aBCR[BCR_SWS])); 1935 } 1936 1924 1937 1925 1938 /** … … 2050 2063 RTR3PTR pv; 2051 2064 2052 /* From the manual: ``A zero length buffer sis acceptable as2065 /* From the manual: ``A zero length buffer is acceptable as 2053 2066 * long as it is not the last buffer in a chain (STP = 0 and 2054 2067 * ENP = 1).'' That means that the first buffer might have a 2055 2068 * zero length if it is not the last one in the chain. */ 2056 if (RT_LIKELY(cb < 4096))2069 if (RT_LIKELY(cb <= 1536)) 2057 2070 { 2058 2071 int rc = PDMDevHlpPhys2HCVirt(pData->pDevInsHC, … … 2089 2102 pcnetTmdStorePassHost(pData, &tmd, PHYSADDR(pData, CSR_CXDA(pData))); 2090 2103 break; 2104 } 2105 else 2106 { 2107 /* Signal error, as this violates the Ethernet specs. */ 2108 /** @todo check if the correct error is generated. */ 2109 LogRel(("PCNET: pcnetAsyncTransmit: illegal 4kb frame -> signalling error\n")); 2110 2111 pcnetXmitFailTMDGeneric(pData, &tmd); 2091 2112 } 2092 2113 }
Note:
See TracChangeset
for help on using the changeset viewer.