Lines Matching refs:legacy

905     struct E1kTDLegacy  legacy;
1744 if (pDesc->legacy.cmd.fDEXT)
1837 pThis->szPrf, cszDir, pDesc->legacy.cmd.u16Length, cszDir));
1840 pDesc->legacy.cmd.u16Length));
1842 pDesc->legacy.cmd.fIDE ? " IDE" :"",
1843 pDesc->legacy.cmd.fVLE ? " VLE" :"",
1844 pDesc->legacy.cmd.fRPS ? " RPS" :"",
1845 pDesc->legacy.cmd.fRS ? " RS" :"",
1846 pDesc->legacy.cmd.fIC ? " IC" :"",
1847 pDesc->legacy.cmd.fIFCS? " IFCS":"",
1848 pDesc->legacy.cmd.fEOP ? " EOP" :"",
1849 pDesc->legacy.dw3.fDD ? " DD" :"",
1850 pDesc->legacy.dw3.fEC ? " EC" :"",
1851 pDesc->legacy.dw3.fLC ? " LC" :"",
1852 pDesc->legacy.cmd.u8CSO,
1853 pDesc->legacy.dw3.u8CSS,
1854 E1K_SPEC_CFI(pDesc->legacy.dw3.u16Special) ? "CFI" :"cfi",
1855 E1K_SPEC_VLAN(pDesc->legacy.dw3.u16Special),
1856 E1K_SPEC_PRI(pDesc->legacy.dw3.u16Special)));
3969 * and legacy descriptors since it is identical to
3970 * legacy.u64BufAddr.
4409 * We need to check RPS as well since some legacy drivers use it instead of
4412 if (pDesc->legacy.cmd.fRS || pDesc->legacy.cmd.fRPS)
4414 pDesc->legacy.dw3.fDD = 1; /* Descriptor Done */
4416 if (pDesc->legacy.cmd.fEOP)
4419 if (pDesc->legacy.cmd.fIDE)
4466 * - legacy data descriptors of older format (context-less).
4467 * - data the same as legacy but providing new offloading capabilities.
4521 /** @todo Same as legacy when !TSE. See below. */
4655 if (pDesc->legacy.cmd.u16Length == 0 || pDesc->legacy.u64BufAddr == 0)
4657 E1kLog(("%s Empty legacy descriptor, skipped.\n", pThis->szPrf));
4667 if (pDesc->legacy.cmd.fEOP)
4668 cbVTag = pDesc->legacy.cmd.fVLE ? 4 : 0;
4673 rc = e1kXmitAllocBuf(pThis, pDesc->legacy.cmd.u16Length + cbVTag, pDesc->legacy.cmd.fEOP, false /*fGso*/);
4685 if (e1kAddToFrame(pThis, pDesc->data.u64BufAddr, pDesc->legacy.cmd.u16Length))
4690 if (pDesc->legacy.cmd.fEOP)
4692 pThis->fVTag = pDesc->legacy.cmd.fVLE;
4693 pThis->u16VTagTCI = pDesc->legacy.dw3.u16Special;
4700 else if (pDesc->legacy.cmd.fEOP)
4725 * - legacy data descriptors of older format (context-less).
4726 * - data the same as legacy but providing new offloading capabilities.
4838 if (pDesc->legacy.cmd.u16Length == 0 || pDesc->legacy.u64BufAddr == 0)
4840 E1kLog(("%s Empty legacy descriptor, skipped.\n", pThis->szPrf));
4845 if (e1kAddToFrame(pThis, pDesc->data.u64BufAddr, pDesc->legacy.cmd.u16Length))
4850 if (pDesc->legacy.cmd.fEOP)
4852 if (pDesc->legacy.cmd.fIC)
4857 pDesc->legacy.cmd.u8CSO,
4858 pDesc->legacy.dw3.u8CSS,
4866 else if (pDesc->legacy.cmd.fEOP)
4936 if (!pDesc->legacy.u64BufAddr || !pDesc->legacy.cmd.u16Length)
4938 cbPacket += pDesc->legacy.cmd.u16Length;
4970 if (pDesc->legacy.cmd.fEOP)
5033 if (e1kGetDescType(pDesc) != E1K_DTYP_CONTEXT && pDesc->legacy.cmd.fEOP)
6926 pDesc->legacy.cmd.u16Length,
6927 pDesc->legacy.cmd.fIDE ? " IDE" :"",
6928 pDesc->legacy.cmd.fVLE ? " VLE" :"",
6929 pDesc->legacy.cmd.fRPS ? " RPS" :"",
6930 pDesc->legacy.cmd.fRS ? " RS" :"",
6931 pDesc->legacy.cmd.fIC ? " IC" :"",
6932 pDesc->legacy.cmd.fIFCS? " IFCS":"",
6933 pDesc->legacy.cmd.fEOP ? " EOP" :"",
6934 pDesc->legacy.dw3.fDD ? " DD" :"",
6935 pDesc->legacy.dw3.fEC ? " EC" :"",
6936 pDesc->legacy.dw3.fLC ? " LC" :"",
6937 pDesc->legacy.cmd.u8CSO,
6938 pDesc->legacy.dw3.u8CSS,
6939 E1K_SPEC_CFI(pDesc->legacy.dw3.u16Special) ? "CFI" :"cfi",
6940 E1K_SPEC_VLAN(pDesc->legacy.dw3.u16Special),
6941 E1K_SPEC_PRI(pDesc->legacy.dw3.u16Special));
7760 PDMDevHlpSTAMRegisterF(pDevIns, &pThis->StatTxDescLegacy, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES, "Number of TX legacy descriptors", "/Devices/E1k%d/TxDesc/Legacy", iInstance);