2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 06:15:47 +00:00

netdev-provider: fix comments for netdev_rxq_recv

Commit 64839cf43 applies batch objects to netdev-providers, but
some comments were not updated accordingly. Fix these:
   - replace 'pkts' with 'batch'
   - replace '*cnt' with 'batch->count'
   - replace MAX_RX_BATCH with NETDEV_MAX_BURST
   - remove superfluous whitespace

Signed-off-by: Mark Kavanagh <mark.b.kavanagh@intel.com>
Acked-by: William Tu <u9012063@gmail.com>
Acked-by: Daniele Di Proietto <diproiettod@vmware.com>
This commit is contained in:
Mark Kavanagh
2016-07-26 14:19:17 +01:00
committed by Daniele Di Proietto
parent 9b2cc0c35c
commit c90e4d9c95
2 changed files with 10 additions and 9 deletions

View File

@@ -614,14 +614,15 @@ netdev_rxq_close(struct netdev_rxq *rx)
}
}
/* Attempts to receive a batch of packets from 'rx'. 'pkts' should point to
* the beginning of an array of MAX_RX_BATCH pointers to dp_packet. If
* successful, this function stores pointers to up to MAX_RX_BATCH dp_packets
* into the array, transferring ownership of the packets to the caller, stores
* the number of received packets into '*cnt', and returns 0.
/* Attempts to receive a batch of packets from 'rx'. 'batch' should point to
* the beginning of an array of NETDEV_MAX_BURST pointers to dp_packet. If
* successful, this function stores pointers to up to NETDEV_MAX_BURST
* dp_packets into the array, transferring ownership of the packets to the
* caller, stores the number of received packets in 'batch->count', and returns
* 0.
*
* The implementation does not necessarily initialize any non-data members of
* 'pkts'. That is, the caller must initialize layer pointers and metadata
* 'batch'. That is, the caller must initialize layer pointers and metadata
* itself, if desired, e.g. with pkt_metadata_init() and miniflow_extract().
*
* Returns EAGAIN immediately if no packet is ready to be received or another
@@ -631,7 +632,7 @@ netdev_rxq_recv(struct netdev_rxq *rx, struct dp_packet_batch *batch)
{
int retval;
retval = rx->netdev->netdev_class->rxq_recv(rx, batch);
retval = rx->netdev->netdev_class->rxq_recv(rx, batch);
if (!retval) {
COVERAGE_INC(netdev_received);
} else {