HomeSort by: relevance | last modified time | path
    Searched refs:ETHER_ALIGN (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/sys/dev/pci/
if_nfereg.h 31 #define NFE_JBYTES (NFE_JUMBO_FRAMELEN + ETHER_ALIGN)
if_bgevar.h 160 #define BGE_JRAWLEN (BGE_JUMBO_FRAMELEN + ETHER_ALIGN)
if_ti.c 724 m_adj(m_new, ETHER_ALIGN);
738 m_adj(m_new, ETHER_ALIGN);
791 m_adj(m_new, ETHER_ALIGN);
805 m_adj(m_new, ETHER_ALIGN);
867 m_adj(m_new, ETHER_ALIGN);
1483 rcb->ti_max_len = MHLEN - ETHER_ALIGN;
if_sk.c 815 m_adj(m_new, ETHER_ALIGN);
2089 m0 = m_devget(mtod(m, char *) - ETHER_ALIGN,
2090 total_len + ETHER_ALIGN, 0, ifp);
2098 m_adj(m0, ETHER_ALIGN);
if_age.c 1565 if (nsegs != ((pktlen + (MCLBYTES - ETHER_ALIGN - 1)) /
1566 (MCLBYTES - ETHER_ALIGN)))
2241 m_adj(m, ETHER_ALIGN);
if_tireg.h 998 #define TI_JRAWLEN (ETHER_MAX_LEN_JUMBO + ETHER_ALIGN + sizeof(uint64_t))
if_bge.c 1499 m_adj(m, ETHER_ALIGN);
1571 m_adj(m_new, ETHER_ALIGN);
4584 memmove(mtod(m, char *) + ETHER_ALIGN, m->m_data,
4586 m->m_data += ETHER_ALIGN;
5712 if (v == (MCLBYTES - ETHER_ALIGN))
if_txp.c 767 if (len > (MHLEN - ETHER_ALIGN)) {
775 m->m_data += ETHER_ALIGN;
if_vioif.c 1274 .dma_size = MCLBYTES - ETHER_ALIGN,
1781 m_adj(m, ETHER_ALIGN);
if_cas.c 1404 cp = rxs->rxs_kva + off * 256 + ETHER_ALIGN;
1435 cp = rxs->rxs_kva + off + ETHER_ALIGN;
  /src/sys/dev/usb/
if_kue.c 548 if (pktlen > total_len - ETHER_ALIGN)
549 pktlen = total_len - ETHER_ALIGN;
552 pktlen > MCLBYTES - ETHER_ALIGN) {
if_smsc.c 666 * set Rx data offset to ETHER_ALIGN which will make the IP header
669 reg_val |= ETHER_ALIGN << SMSC_HW_CFG_RXDOFF_SHIFT;
918 pktlen += ETHER_ALIGN;
934 uint8_t *pktbuf = buf + ETHER_ALIGN;
935 size_t buflen = pktlen - ETHER_ALIGN;
usbnet.c 260 if (buflen > MCLBYTES - ETHER_ALIGN)
267 if (buflen > MHLEN - ETHER_ALIGN) {
275 m->m_len = m->m_pkthdr.len = ETHER_ALIGN + buflen;
276 m_adj(m, ETHER_ALIGN);
if_axen.c 825 if (pkt_len < sizeof(struct ether_header) + ETHER_ALIGN)
840 usbnet_enqueue(un, buf + ETHER_ALIGN, pkt_len - 2,
846 usbnet_enqueue(un, buf + ETHER_ALIGN, pkt_len - 6,
if_mue.c 1176 pktlen > MCLBYTES - ETHER_ALIGN || /* XXX */
  /src/sys/arch/i386/stand/efiboot/
efinet.c 43 #define ETHER_EXT_LEN (ETHER_HDR_LEN + ETHER_CRC_LEN + ETHER_ALIGN)
195 ptr = eni->pktbuf + ETHER_ALIGN;
  /src/sys/net/
if_ether.h 70 * Drivers should do m_adj(m, ETHER_ALIGN) when setting up a
74 #define ETHER_ALIGN 2 /* driver adjust for IP hdr alignment */
  /src/sys/stand/efiboot/
efinet.c 41 #define ETHER_EXT_LEN (ETHER_HDR_LEN + ETHER_CRC_LEN + ETHER_ALIGN)
226 ptr = eni->pktbuf + ETHER_ALIGN;
  /src/sys/arch/mips/sibyte/dev/
sbmac.c 518 m_adj(m_new, ETHER_ALIGN);
523 m_adj(m_new, ETHER_ALIGN);
531 V_DMA_DSCRA_A_SIZE(NUMCACHEBLKS(ETHER_ALIGN + m_new->m_len)) |
733 /*m_adj(m_new, ETHER_ALIGN);*/
  /src/sys/dev/ic/
bcmgenet.c 737 if (len < ETHER_ALIGN) {
773 n, index, status, len, len - ETHER_ALIGN);
777 m_adj(m, ETHER_ALIGN);
dwc_gmac.c 513 m_adj(data->rd_m, ETHER_ALIGN);
1297 m_adj(mnew, ETHER_ALIGN);
dwc_eqos.c 404 #if MCLBYTES >= (EQOS_RXDMA_SIZE + ETHER_ALIGN)
405 m_adj(m, ETHER_ALIGN);
  /src/sys/dev/pci/ixgbe/
ixgbe.h 184 #define IXGBE_RX_COPY_LEN_MAX (MHLEN - ETHER_ALIGN)
ix_txrx.c 104 if (sc->max_frame_size <= (rxr->mbuf_sz - ETHER_ALIGN)) \
105 m_adj(mp, ETHER_ALIGN)
2063 sendmp->m_data += ETHER_ALIGN;
  /src/sys/arch/arm/xscale/
ixp425_if_npe.c 865 KASSERT(m->m_ext.ext_size >= (NPE_FRAME_SIZE_DEFAULT + ETHER_ALIGN));
869 - (NPE_FRAME_SIZE_DEFAULT + ETHER_ALIGN));

Completed in 48 milliseconds

1 2