Searched refs:next_tx (Results 1 – 9 of 9) sorted by relevance
/linux-4.4.14/drivers/net/arcnet/ |
D | arcnet.c | 473 lp->cur_tx = lp->next_tx = -1; in arcnet_open() 609 lp->hw.status(dev), lp->cur_tx, lp->next_tx, skb->len, skb->protocol); in arcnet_send_packet() 632 if (lp->next_tx == -1) in arcnet_send_packet() 659 lp->next_tx = txbuf; in arcnet_send_packet() 690 lp->hw.status(dev), lp->intmask, lp->next_tx, lp->cur_tx); in go_tx() 692 if (lp->cur_tx != -1 || lp->next_tx == -1) in go_tx() 696 arcnet_dump_packet(dev, lp->next_tx, "go_tx", 0); in go_tx() 698 lp->cur_tx = lp->next_tx; in go_tx() 699 lp->next_tx = -1; in go_tx() 906 lp->next_tx = txbuf; in arcnet_interrupt()
|
D | arc-rawmode.c | 121 lp->next_tx, lp->cur_tx, bufnum); in prepare_tx()
|
D | rfc1051.c | 215 lp->next_tx, lp->cur_tx, bufnum); in prepare_tx()
|
D | arcdevice.h | 253 next_tx, /* buffer where a packet is ready to send */ member
|
D | capmode.c | 145 lp->next_tx, lp->cur_tx, bufnum); in prepare_tx()
|
D | rfc1201.c | 483 lp->next_tx, lp->cur_tx, bufnum); in prepare_tx()
|
/linux-4.4.14/drivers/net/ethernet/natsemi/ |
D | sonic.c | 206 int entry = lp->next_tx; in sonic_send_packet() 252 lp->next_tx = (entry + 1) & SONIC_TDS_MASK; in sonic_send_packet() 253 if (lp->tx_skb[lp->next_tx] != NULL) { in sonic_send_packet() 685 lp->cur_tx = lp->next_tx = 0; in sonic_init()
|
D | sonic.h | 320 unsigned int next_tx; /* next free TD */ member
|
/linux-4.4.14/net/core/ |
D | pktgen.c | 281 ktime_t next_tx; member 2249 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay); in spin() 2276 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay); in spin() 3093 pkt_dev->started_at = pkt_dev->next_tx = ktime_get(); in pktgen_run() 3269 else if (ktime_compare(pkt_dev->next_tx, best->next_tx) < 0) in next_to_run() 3384 pkt_dev->next_tx = ktime_add_ns(ktime_get(), ULONG_MAX); in pktgen_xmit() 3406 spin(pkt_dev, pkt_dev->next_tx); in pktgen_xmit()
|