Lines Matching defs:msdp
950 struct multi_send_data *msdp)
952 *msd_skb = msdp->skb;
953 *msd_send = msdp->pkt;
954 msdp->skb = NULL;
955 msdp->pkt = NULL;
956 msdp->count = 0;
975 struct multi_send_data *msdp;
996 msdp = &nvchan->msd;
997 if (msdp->pkt)
998 msd_len = msdp->pkt->total_data_buflen;
1000 try_batch = msd_len > 0 && msdp->count < net_device->max_pkt;
1003 section_index = msdp->pkt->send_buf_index;
1007 section_index = msdp->pkt->send_buf_index;
1016 move_pkt_msd(&msd_send, &msd_skb, msdp);
1043 if (msdp->pkt) {
1044 packet->total_packets += msdp->pkt->total_packets;
1045 packet->total_bytes += msdp->pkt->total_bytes;
1048 if (msdp->skb)
1049 dev_consume_skb_any(msdp->skb);
1052 msdp->skb = skb;
1053 msdp->pkt = packet;
1054 msdp->count++;
1057 msdp->skb = NULL;
1058 msdp->pkt = NULL;
1059 msdp->count = 0;
1062 move_pkt_msd(&msd_send, &msd_skb, msdp);