Searched refs:ETHERMIN (Results 1 - 25 of 44) sorted by relevance

12

/illumos-gate/usr/src/lib/libbc/inc/include/netinet/
H A Dif_ether.h54 #define ETHERMIN (60-14) macro
/illumos-gate/usr/src/uts/common/sys/
H A Dethernet.h111 #define ETHERMIN (60) /* min frame w/header w/o fcs */ macro
/illumos-gate/usr/src/uts/common/io/bge/
H A Dbge_recv2.c159 minsize = ETHERMIN + ETHERFCSL - VLAN_TAGSZ;
162 minsize = ETHERMIN + ETHERFCSL;
/illumos-gate/usr/src/uts/common/io/urf/
H A Durf_usbgem.c442 if (len < ETHERMIN || mp->b_cont != NULL || (len & 0x3f) == 0) {
446 len = max(len, ETHERMIN);
505 if (len < ETHERMIN + ETHERFCSL) {
538 } else if (len < ETHERMIN + ETHERFCSL) {
/illumos-gate/usr/src/uts/common/io/hxge/
H A Dhxge_vmac.c177 hxgep->msg_min = ETHERMIN;
/illumos-gate/usr/src/uts/common/io/efe/
H A Defe.c1373 if (len < ETHERMIN) {
1450 * Packets must contain at least ETHERMIN octets.
1453 if (len < ETHERMIN) {
1454 bzero(bp->b_kaddr + len, ETHERMIN - len);
1455 len = ETHERMIN;
/illumos-gate/usr/src/uts/common/io/e1000g/
H A De1000g_tx.c234 if (msg_size < ETHERMIN) {
1309 ASSERT(tx_buf->len < ETHERMIN);
1312 ETHERMIN - tx_buf->len);
1313 tx_buf->len = ETHERMIN;
H A De1000g_rx.c488 min_size = ETHERMIN;
/illumos-gate/usr/src/boot/include/net/
H A Dethernet.h364 #define ETHERMIN (ETHER_MIN_LEN-ETHER_HDR_LEN-ETHER_CRC_LEN) macro
/illumos-gate/usr/src/uts/common/io/simnet/
H A Dsimnet.c773 if (len < ETHERMIN) {
774 size = ETHERMIN - len;
1179 if (mtu > ETHERMIN && mtu < SIMNET_MAX_MTU)
/illumos-gate/usr/src/uts/sun4v/io/
H A Dvsw_rxdring.c746 if ((rxdp->nbytes < ETHERMIN) ||
910 if (size < ETHERMIN)
911 size = ETHERMIN;
H A Dvnet_rxdring.c616 if (size < ETHERMIN)
617 size = ETHERMIN;
1082 if ((nbytes < ETHERMIN) ||
H A Dvsw_txdring.c855 priv_desc->datalen = (size < (size_t)ETHERMIN) ? ETHERMIN : size;
1167 if ((desc.nbytes < ETHERMIN) ||
H A Dvnet_txdring.c630 if (size < ETHERMIN)
631 size = ETHERMIN;
1053 if ((rxd.nbytes < ETHERMIN) ||
/illumos-gate/usr/src/uts/common/io/upf/
H A Dupf_usbgem.c512 if (len < ETHERMIN) {
513 len = ETHERMIN;
625 } else if (len < ETHERMIN) {
/illumos-gate/usr/src/uts/common/io/rtls/
H A Drtls.c1144 if (totlen < ETHERMIN) {
1145 bzero(rtlsp->tx_buf[cur_desc] + totlen, ETHERMIN - totlen);
1146 totlen = ETHERMIN;
1254 (packet_len < (ETHERMIN + ETHERFCSL)) ||
1265 (packet_len < (ETHERMIN + ETHERFCSL)))
/illumos-gate/usr/src/uts/common/io/ib/clients/eoib/
H A Deib_data.c993 * ETHERMIN, pad up the buffer to ETHERMIN (with zeros)
995 if ((pktsz + lsohdr_sz) < (ETHERMIN + EIB_ENCAP_HDR_SZ)) {
996 bzero(bufp, (ETHERMIN + EIB_ENCAP_HDR_SZ) -
998 swqe->qe_sgl.ds_len = ETHERMIN + EIB_ENCAP_HDR_SZ;
/illumos-gate/usr/src/uts/common/io/axf/
H A Daxf_usbgem.c731 if (len >= ETHERMIN && mp->b_cont == NULL &&
744 /* minimum ethernet packet size of ETHERMIN */
745 pkt_size = max(len, ETHERMIN);
843 if (len < ETHERMIN || len > ETHERMAX) {
/illumos-gate/usr/src/uts/common/sys/fibre-channel/ulp/
H A Dfcip.h53 #define FCIPMIN (ETHERMIN + sizeof (llc_snap_hdr_t) + \
/illumos-gate/usr/src/uts/common/io/nge/
H A Dnge_rx.c157 minsize = ETHERMIN;
/illumos-gate/usr/src/stand/lib/inet/
H A Dethernet.c65 char filler[ETHERMIN - sizeof (struct ether_arp)];
/illumos-gate/usr/src/uts/common/io/rge/
H A Drge_rxtx.c218 minsize = ETHERMIN;
/illumos-gate/usr/src/uts/common/io/i40e/
H A Di40e_sw.h124 #define I40E_MIN_MTU ETHERMIN
/illumos-gate/usr/src/uts/common/io/igb/
H A Digb_sw.h138 #define MIN_MTU ETHERMIN
/illumos-gate/usr/src/uts/common/io/ixgbe/
H A Dixgbe_sw.h139 #define MIN_MTU ETHERMIN

Completed in 184 milliseconds

12