* [dpdk-dev] VMDq + DCB: 128 Tx queues @ 2014-08-01 5:13 Sunil Bojanapally 2014-08-01 7:41 ` Liu, Jijiang 0 siblings, 1 reply; 4+ messages in thread From: Sunil Bojanapally @ 2014-08-01 5:13 UTC (permalink / raw) To: dev Hi team, As per dpdk programming guide on VMDq+DCB will configure each Ethernet port to 16 pools with 8 queues each. Which means per port will have 128 Rx & Tx queues. The question is, in order to have end 2 end QoS support the port should get configured with 128 Rx as well as 128 Tx queues ? Note: I am considering same port for Rx & Tx. Thanks, Sunil ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] VMDq + DCB: 128 Tx queues 2014-08-01 5:13 [dpdk-dev] VMDq + DCB: 128 Tx queues Sunil Bojanapally @ 2014-08-01 7:41 ` Liu, Jijiang 2014-08-01 16:12 ` Sunil Bojanapally 0 siblings, 1 reply; 4+ messages in thread From: Liu, Jijiang @ 2014-08-01 7:41 UTC (permalink / raw) To: sunil.bojanapally; +Cc: dev Yes, if you hope TX is configured DCB mode, and 128 TX queues are needed. In testpmd codes, there is an example how to use 128 RX queue and 128 TX queue simultaneously in vmdq+dcb mode. The example function is get_eth_dcb_conf() in testpmd.c file. BRs, Jijiang Liu -----Original Message----- From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Sunil Bojanapally Sent: Friday, August 01, 2014 1:13 PM To: dev@dpdk.org Subject: [dpdk-dev] VMDq + DCB: 128 Tx queues Hi team, As per dpdk programming guide on VMDq+DCB will configure each Ethernet port to 16 pools with 8 queues each. Which means per port will have 128 Rx & Tx queues. The question is, in order to have end 2 end QoS support the port should get configured with 128 Rx as well as 128 Tx queues ? Note: I am considering same port for Rx & Tx. Thanks, Sunil ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] VMDq + DCB: 128 Tx queues 2014-08-01 7:41 ` Liu, Jijiang @ 2014-08-01 16:12 ` Sunil Bojanapally 2014-08-01 17:38 ` Richardson, Bruce 0 siblings, 1 reply; 4+ messages in thread From: Sunil Bojanapally @ 2014-08-01 16:12 UTC (permalink / raw) To: Liu, Jijiang; +Cc: dev Thanks Liu for the pointer to function implemented in testpmd.c Just want to know in RX configured pools, what scheduling method is used in polling the queues. -Sunil On Fri, Aug 01, 2014 at 1:11 PM, Liu, Jijiang <jijiang.liu@intel.com<mailto:jijiang.liu@intel.com>> wrote: Yes, if you hope TX is configured DCB mode, and 128 TX queues are needed. In testpmd codes, there is an example how to use 128 RX queue and 128 TX queue simultaneously in vmdq+dcb mode. The example function is get_eth_dcb_conf() in testpmd.c file. BRs, Jijiang Liu -----Original Message----- From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Sunil Bojanapally Sent: Friday, August 01, 2014 1:13 PM To: dev@dpdk.org Subject: [dpdk-dev] VMDq + DCB: 128 Tx queues Hi team, As per dpdk programming guide on VMDq+DCB will configure each Ethernet port to 16 pools with 8 queues each. Which means per port will have 128 Rx & Tx queues. The question is, in order to have end 2 end QoS support the port should get configured with 128 Rx as well as 128 Tx queues ? Note: I am considering same port for Rx & Tx. Thanks, Sunil ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] VMDq + DCB: 128 Tx queues 2014-08-01 16:12 ` Sunil Bojanapally @ 2014-08-01 17:38 ` Richardson, Bruce 0 siblings, 0 replies; 4+ messages in thread From: Richardson, Bruce @ 2014-08-01 17:38 UTC (permalink / raw) To: Sunil Bojanapally, Liu, Jijiang; +Cc: dev > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Sunil Bojanapally > Sent: Friday, August 01, 2014 9:13 AM > To: Liu, Jijiang > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] VMDq + DCB: 128 Tx queues > > Thanks Liu for the pointer to function implemented in testpmd.c > > Just want to know in RX configured pools, what scheduling method is used in > polling the queues. How the queues are polled when in vmdq+dcb mode is entirely up to the application, as the queue id passed into the rx_burst function will refer directly to one of the hardware queues to be read. There is no behind-the-scenes magic and prioritization of packets being done, the app knows best what way it wants the packets to be read and processed. Regards, /Bruce > > -Sunil > > On Fri, Aug 01, 2014 at 1:11 PM, Liu, Jijiang > <jijiang.liu@intel.com<mailto:jijiang.liu@intel.com>> wrote: > > > Yes, if you hope TX is configured DCB mode, and 128 TX queues are needed. In > testpmd codes, there is an example how to use 128 RX queue and 128 TX queue > simultaneously in vmdq+dcb mode. > The example function is get_eth_dcb_conf() in testpmd.c file. > > BRs, > Jijiang Liu > > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Sunil Bojanapally > Sent: Friday, August 01, 2014 1:13 PM > To: dev@dpdk.org > Subject: [dpdk-dev] VMDq + DCB: 128 Tx queues > > Hi team, > > As per dpdk programming guide on VMDq+DCB will configure each Ethernet port > to 16 pools with 8 queues each. Which means per port will have 128 Rx & Tx > queues. > > The question is, in order to have end 2 end QoS support the port should get > configured with 128 Rx as well as 128 Tx queues ? > > Note: I am considering same port for Rx & Tx. > > Thanks, > Sunil ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-08-01 17:37 UTC | newest] Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2014-08-01 5:13 [dpdk-dev] VMDq + DCB: 128 Tx queues Sunil Bojanapally 2014-08-01 7:41 ` Liu, Jijiang 2014-08-01 16:12 ` Sunil Bojanapally 2014-08-01 17:38 ` Richardson, Bruce
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).