Re: [ovs-dev] [dpdk patch v3 2/6] netdev: Add n_txq to 'struct netdev'.

2014-09-12 Thread Alex Wang
Applied the first two patches to master. Will rebase the following ones based on the discussion and comments. On Thu, Sep 11, 2014 at 10:38 PM, Pravin Shelar wrote: > On Tue, Sep 9, 2014 at 5:00 PM, Alex Wang wrote: > > This commit adds new variable n_txq to 'struct netdev' for recording > > t

Re: [ovs-dev] [dpdk patch v3 2/6] netdev: Add n_txq to 'struct netdev'.

2014-09-11 Thread Pravin Shelar
On Tue, Sep 9, 2014 at 5:00 PM, Alex Wang wrote: > This commit adds new variable n_txq to 'struct netdev' for recording > the number of tx queues. Correspondingly, the send_*() functions are > extended to accept queue id as input argument. > > All 'netdev-*' implementation will ignore the queue i

[ovs-dev] [dpdk patch v3 2/6] netdev: Add n_txq to 'struct netdev'.

2014-09-09 Thread Alex Wang
This commit adds new variable n_txq to 'struct netdev' for recording the number of tx queues. Correspondingly, the send_*() functions are extended to accept queue id as input argument. All 'netdev-*' implementation will ignore the queue id since having multiple tx queues is not supported. Upcomp