> Subject: Re: [Patch v5] net/netvsc: fix number Tx queues > Rx queues > > On Thu, 17 Oct 2024 12:20:29 -0700 > lon...@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.
Is it okay to take the patch as is, or should I send a v6 to have it fixed?