Re: [ovs-dev] [PATCH 2/5] pinsched: Report queued packet count correctly.

2014-07-17 Thread Ben Pfaff
On Wed, Jul 16, 2014 at 03:57:27PM -0700, Gurucharan Shetty wrote: > On Wed, Jul 16, 2014 at 3:05 PM, Ben Pfaff wrote: > > 'n_txq' was initialized to 0 and never modified, so pinsched_count_txqlen() > > always returned 0. Instead, return the correct number. > > > > This only affected the results

Re: [ovs-dev] [PATCH 2/5] pinsched: Report queued packet count correctly.

2014-07-16 Thread Gurucharan Shetty
On Wed, Jul 16, 2014 at 3:05 PM, Ben Pfaff wrote: > 'n_txq' was initialized to 0 and never modified, so pinsched_count_txqlen() > always returned 0. Instead, return the correct number. > > This only affected the results of "ovs-appctl memory/show", and only if > controller rate limiting was turne

[ovs-dev] [PATCH 2/5] pinsched: Report queued packet count correctly.

2014-07-16 Thread Ben Pfaff
'n_txq' was initialized to 0 and never modified, so pinsched_count_txqlen() always returned 0. Instead, return the correct number. This only affected the results of "ovs-appctl memory/show", and only if controller rate limiting was turned on, so it is not a serious bug. Signed-off-by: Ben Pfaff