From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Ouyang, Changchun" Subject: Re: [PATCH 4/5] virtio: free queue memory in virtio_dev_close() Date: Wed, 15 Jul 2015 08:38:34 +0000 Message-ID: References: <1436879459-18400-1-git-send-email-bernard.iremonger@intel.com> <1436879459-18400-5-git-send-email-bernard.iremonger@intel.com> <20150714112810.1319eddd@urahara> <8CEF83825BEC744B83065625E567D7C204A49031@IRSMSX108.ger.corp.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Cc: "dev@dpdk.org" To: "Iremonger, Bernard" , Stephen Hemminger Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id AA47B5A96 for ; Wed, 15 Jul 2015 10:38:50 +0200 (CEST) In-Reply-To: <8CEF83825BEC744B83065625E567D7C204A49031@IRSMSX108.ger.corp.intel.com> Content-Language: en-US List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" > -----Original Message----- > From: Iremonger, Bernard > Sent: Wednesday, July 15, 2015 4:27 PM > To: Stephen Hemminger > Cc: dev@dpdk.org; Ouyang, Changchun > Subject: RE: [PATCH 4/5] virtio: free queue memory in virtio_dev_close() >=20 > > -----Original Message----- > > From: Stephen Hemminger [mailto:stephen@networkplumber.org] > > Sent: Tuesday, July 14, 2015 7:28 PM > > To: Iremonger, Bernard > > Cc: dev@dpdk.org; Ouyang, Changchun > > Subject: Re: [PATCH 4/5] virtio: free queue memory in virtio_dev_close(= ) > > > > On Tue, 14 Jul 2015 14:10:58 +0100 > > Bernard Iremonger wrote: > > > > > static void > > > +virtio_free_queues(struct rte_eth_dev *dev) { > > > + unsigned int i; > > > + > > > + for (i =3D 0; i < dev->data->nb_rx_queues; i++) { > > > + virtio_dev_rx_queue_release(dev->data->rx_queues[i]); > > > + dev->data->rx_queues[i] =3D NULL; > > > + } > > > + dev->data->nb_rx_queues =3D 0; > > > + > > > + for (i =3D 0; i < dev->data->nb_tx_queues; i++) { > > > + virtio_dev_tx_queue_release(dev->data->tx_queues[i]); > > > + dev->data->tx_queues[i] =3D NULL; > > > + } > > > + dev->data->nb_tx_queues =3D 0; > > > +} > > > + > > > > Where does command queue get freed? >=20 > The command queue is set up in the eth_virtio_dev_init() function and > freed in the eth_virtio_dev_uninit() function. >=20 Do you mean control vq? > Regards, >=20 > Bernard.