From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Wang Subject: Re: [net-next RFC V5 5/5] virtio_net: support negotiating the number of queues through ctrl vq Date: Fri, 06 Jul 2012 15:46:50 +0800 Message-ID: <4FF697EA.807@redhat.com> References: <1341484194-8108-1-git-send-email-jasowang@redhat.com> <1341484194-8108-6-git-send-email-jasowang@redhat.com> <1341492679.18786.18.camel@lappy> <4FF5F3F7.8090307@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Cc: krkumar2@in.ibm.com, habanero@linux.vnet.ibm.com, mashirle@us.ibm.com, kvm@vger.kernel.org, mst@redhat.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, virtualization@lists.linux-foundation.org, edumazet@google.com, Sasha Levin , jwhan@filewood.snu.ac.kr, sri@us.ibm.com, davem@davemloft.net, tahm@linux.vnet.ibm.com To: Amos Kong Return-path: In-Reply-To: <4FF5F3F7.8090307@redhat.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: virtualization-bounces@lists.linux-foundation.org Errors-To: virtualization-bounces@lists.linux-foundation.org List-Id: netdev.vger.kernel.org On 07/06/2012 04:07 AM, Amos Kong wrote: > On 07/05/2012 08:51 PM, Sasha Levin wrote: >> On Thu, 2012-07-05 at 18:29 +0800, Jason Wang wrote: >>> @@ -1387,6 +1404,10 @@ static int virtnet_probe(struct virtio_device *vdev) >>> if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) >>> vi->has_cvq = true; >>> > >>> + /* Use single tx/rx queue pair as default */ >>> + vi->num_queue_pairs = 1; >>> + vi->total_queue_pairs = num_queue_pairs; > vi->total_queue_pairs also should be set to 1 > > vi->total_queue_pairs = 1; Hi Amos: total_queue_pairs is the max number of queue pairs that the deivce could provide, so it's ok here. >> The code is using this "default" even if the amount of queue pairs it >> wants was specified during initialization. This basically limits any >> device to use 1 pair when starting up. >> >> -- >> To unsubscribe from this list: send the line "unsubscribe kvm" in >> the body of a message to majordomo@vger.kernel.org >> More majordomo info at http://vger.kernel.org/majordomo-info.html >