Lines Matching refs:soft
703 struct arc_rfc1201 *soft; in arcnet_send_packet() local
714 soft = &pkt->soft.rfc1201; in arcnet_send_packet()
715 proto = arc_proto_map[soft->proto]; in arcnet_send_packet()
1127 struct arc_rfc1201 *soft; in arcnet_rx() local
1130 soft = &rxdata.pkt.soft.rfc1201; in arcnet_rx()
1142 if (sizeof(rxdata.pkt.soft) <= length) { in arcnet_rx()
1143 lp->hw.copy_from_card(dev, bufnum, ofs, soft, sizeof(rxdata.pkt.soft)); in arcnet_rx()
1145 memset(&rxdata.pkt.soft, 0, sizeof(rxdata.pkt.soft)); in arcnet_rx()
1146 lp->hw.copy_from_card(dev, bufnum, ofs, soft, length); in arcnet_rx()
1156 if (arc_proto_map[soft->proto]->is_ip) { in arcnet_rx()
1160 *newp = arc_proto_map[soft->proto]; in arcnet_rx()
1165 soft->proto, rxdata.pkt.hard.source, in arcnet_rx()
1171 lp->default_proto[0] = soft->proto; in arcnet_rx()
1174 lp->default_proto[rxdata.pkt.hard.source] = soft->proto; in arcnet_rx()
1177 arc_proto_map[soft->proto]->rx(dev, bufnum, &rxdata.pkt, length); in arcnet_rx()
1185 pkthdr->soft.rfc1201.proto, pkthdr->hard.source); in null_rx()