Lines Matching refs:soft
601 struct arc_rfc1201 *soft; in arcnet_send_packet() local
612 soft = &pkt->soft.rfc1201; in arcnet_send_packet()
613 proto = arc_proto_map[soft->proto]; in arcnet_send_packet()
1013 struct arc_rfc1201 *soft; in arcnet_rx() local
1016 soft = &pkt.soft.rfc1201; in arcnet_rx()
1028 if (sizeof(pkt.soft) <= length) { in arcnet_rx()
1029 lp->hw.copy_from_card(dev, bufnum, ofs, soft, sizeof(pkt.soft)); in arcnet_rx()
1031 memset(&pkt.soft, 0, sizeof(pkt.soft)); in arcnet_rx()
1032 lp->hw.copy_from_card(dev, bufnum, ofs, soft, length); in arcnet_rx()
1042 if (arc_proto_map[soft->proto]->is_ip) { in arcnet_rx()
1046 *newp = arc_proto_map[soft->proto]; in arcnet_rx()
1051 soft->proto, pkt.hard.source, in arcnet_rx()
1057 lp->default_proto[0] = soft->proto; in arcnet_rx()
1060 lp->default_proto[pkt.hard.source] = soft->proto; in arcnet_rx()
1063 arc_proto_map[soft->proto]->rx(dev, bufnum, &pkt, length); in arcnet_rx()
1071 pkthdr->soft.rfc1201.proto, pkthdr->hard.source); in null_rx()