Get rid of the 'vsc_rxpend' state - it doesn't serve any purpose because we

drop any frames that arrive while the device is starved for receive buffers.

This makes the receive path to only execute in context of the receive thread
and allows for further simplification.

Reviewed by:	grehan
This commit is contained in:
Neel Natu 2013-04-28 01:02:59 +00:00
parent e113789bdc
commit 88d1272e3c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=250009

View File

@ -140,7 +140,6 @@ struct pci_vtnet_softc {
int vsc_isr;
int vsc_tapfd;
int vsc_rx_ready;
int vsc_rxpend;
int tx_in_progress;
int resetting;
@ -322,14 +321,6 @@ pci_vtnet_tap_rx(struct pci_vtnet_softc *sc)
ndescs = hq_num_avail(hq);
if (ndescs == 0) {
/*
* Need to wait for host notification to read
*/
if (sc->vsc_rxpend == 0) {
WPRINTF(("vtnet: no rx descriptors !\n"));
sc->vsc_rxpend = 1;
}
/*
* Drop the packet and try later
*/
@ -417,17 +408,6 @@ pci_vtnet_ping_rxq(struct pci_vtnet_softc *sc)
if (sc->vsc_rx_ready == 0) {
sc->vsc_rx_ready = 1;
}
/*
* If the rx queue was empty, attempt to receive a
* packet that was previously blocked due to no rx bufs
* available
*/
if (sc->vsc_rxpend) {
WPRINTF(("vtnet: rx resumed\n\r"));
sc->vsc_rxpend = 0;
pci_vtnet_tap_rx(sc);
}
}
static void