Lines Matching refs:soft
699 struct arc_rfc1201 *soft; in arcnet_send_packet() local
710 soft = &pkt->soft.rfc1201; in arcnet_send_packet()
711 proto = arc_proto_map[soft->proto]; in arcnet_send_packet()
1123 struct arc_rfc1201 *soft; in arcnet_rx() local
1126 soft = &rxdata.pkt.soft.rfc1201; in arcnet_rx()
1138 if (sizeof(rxdata.pkt.soft) <= length) { in arcnet_rx()
1139 lp->hw.copy_from_card(dev, bufnum, ofs, soft, sizeof(rxdata.pkt.soft)); in arcnet_rx()
1141 memset(&rxdata.pkt.soft, 0, sizeof(rxdata.pkt.soft)); in arcnet_rx()
1142 lp->hw.copy_from_card(dev, bufnum, ofs, soft, length); in arcnet_rx()
1152 if (arc_proto_map[soft->proto]->is_ip) { in arcnet_rx()
1156 *newp = arc_proto_map[soft->proto]; in arcnet_rx()
1161 soft->proto, rxdata.pkt.hard.source, in arcnet_rx()
1167 lp->default_proto[0] = soft->proto; in arcnet_rx()
1170 lp->default_proto[rxdata.pkt.hard.source] = soft->proto; in arcnet_rx()
1173 arc_proto_map[soft->proto]->rx(dev, bufnum, &rxdata.pkt, length); in arcnet_rx()
1181 pkthdr->soft.rfc1201.proto, pkthdr->hard.source); in null_rx()