Lines Matching defs:msdp
1205 struct multi_send_data *msdp)
1207 *msd_skb = msdp->skb;
1208 *msd_send = msdp->pkt;
1209 msdp->skb = NULL;
1210 msdp->pkt = NULL;
1211 msdp->count = 0;
1250 struct multi_send_data *msdp;
1271 msdp = &nvchan->msd;
1272 if (msdp->pkt)
1273 msd_len = msdp->pkt->total_data_buflen;
1275 try_batch = msd_len > 0 && msdp->count < net_device->max_pkt;
1278 section_index = msdp->pkt->send_buf_index;
1282 section_index = msdp->pkt->send_buf_index;
1291 move_pkt_msd(&msd_send, &msd_skb, msdp);
1318 if (msdp->pkt) {
1319 packet->total_packets += msdp->pkt->total_packets;
1320 packet->total_bytes += msdp->pkt->total_bytes;
1323 if (msdp->skb)
1324 dev_consume_skb_any(msdp->skb);
1327 msdp->skb = skb;
1328 msdp->pkt = packet;
1329 msdp->count++;
1332 msdp->skb = NULL;
1333 msdp->pkt = NULL;
1334 msdp->count = 0;
1337 move_pkt_msd(&msd_send, &msd_skb, msdp);