Lines Matching defs:msdp
1145 struct multi_send_data *msdp)
1147 *msd_skb = msdp->skb;
1148 *msd_send = msdp->pkt;
1149 msdp->skb = NULL;
1150 msdp->pkt = NULL;
1151 msdp->count = 0;
1190 struct multi_send_data *msdp;
1211 msdp = &nvchan->msd;
1212 if (msdp->pkt)
1213 msd_len = msdp->pkt->total_data_buflen;
1215 try_batch = msd_len > 0 && msdp->count < net_device->max_pkt;
1218 section_index = msdp->pkt->send_buf_index;
1222 section_index = msdp->pkt->send_buf_index;
1231 move_pkt_msd(&msd_send, &msd_skb, msdp);
1258 if (msdp->pkt) {
1259 packet->total_packets += msdp->pkt->total_packets;
1260 packet->total_bytes += msdp->pkt->total_bytes;
1263 if (msdp->skb)
1264 dev_consume_skb_any(msdp->skb);
1267 msdp->skb = skb;
1268 msdp->pkt = packet;
1269 msdp->count++;
1272 msdp->skb = NULL;
1273 msdp->pkt = NULL;
1274 msdp->count = 0;
1277 move_pkt_msd(&msd_send, &msd_skb, msdp);