[Patch v5] net/netvsc: fix number Tx queues > Rx queues

Stephen Hemminger stephen at networkplumber.org
Fri Oct 18 00:34:20 CEST 2024


On Thu, 17 Oct 2024 12:20:29 -0700
longli at linuxonhyperv.com wrote:

> +static void
> +hn_rx_queue_free_common(struct hn_rx_queue *rxq) {
> +	if (!rxq)
> +		return;
> +
> +	rte_free(rxq->rxbuf_info);
> +	rte_free(rxq->event_buf);
> +	rte_free(rxq);
> +}

Minor nit, DPDK style is for the bracket on the next line.
Checkpatch will complain about this.


More information about the dev mailing list