Re: [dpdk-dev] [PATCH] sched: fix port time rounding error

2020-06-25 Thread Alan Dewar
angordonde...@gmail.com' ; > > dev@dpdk.org; 'Alan Dewar' ; Dewar, Alan > > > > Subject: Re: [dpdk-dev] [PATCH] sched: fix port time rounding error > > > > Jasvinder, what is the conclusion of this patch? > > > > 21/04/2020 10:21, Dewar, Alan:

Re: [dpdk-dev] [PATCH v7] sched: make RED scaling configurable

2019-04-08 Thread Alan Dewar
t 4:36 PM Ferruh Yigit wrote: > > On 1/16/2018 4:07 PM, alangordonde...@gmail.com wrote: > > From: Alan Dewar > > > > The RED code stores the weighted moving average in a 32-bit integer as > > a pseudo fixed-point floating number with 10 fractional bits. Twelve >

Re: [dpdk-dev] [PATCH] sched: add 64-bit counter retrieval API

2018-07-25 Thread Alan Dewar
hy this can't happen that I'm not aware of (support for 32-bit CPUs??) Regards Alan On Mon, Jul 23, 2018 at 5:52 PM, Stephen Hemminger wrote: > On Wed, 18 Jul 2018 15:51:39 +0100 > alangordonde...@gmail.com wrote: > >> From: Alan Dewar >> >> Add new APIs to ret

Re: [dpdk-dev] [PATCH] vhost: support non multiqueue guests

2018-02-05 Thread Alan Dewar
Hi Maxime, Just confirming that the commit that you suggested fixes the problem that I was seeing. Many thanks for your help. Regards Alan On Mon, Feb 5, 2018 at 8:42 AM, Maxime Coquelin wrote: > Hi Alan, > > On 01/31/2018 03:42 PM, alangordonde...@gmail.com wrote: >> >

Re: [dpdk-dev] [PATCH v6] sched: make RED scaling configurable

2018-01-16 Thread Alan Dewar
On Tue, Jan 16, 2018 at 3:50 PM, Alan Dewar wrote: > On Mon, Jan 15, 2018 at 4:52 PM, Stephen Hemminger > wrote: >> >> On Mon, 15 Jan 2018 16:16:09 + >> alangordonde...@gmail.com wrote: >> >> Looks like a good idea, minor editing feedback. >>

Re: [dpdk-dev] [PATCH v6] sched: make RED scaling configurable

2018-01-16 Thread Alan Dewar
On Mon, Jan 15, 2018 at 4:52 PM, Stephen Hemminger wrote: > > On Mon, 15 Jan 2018 16:16:09 + > alangordonde...@gmail.com wrote: > > Looks like a good idea, minor editing feedback. > > > > - red_cfg->min_th = ((uint32_t) min_th) << (wq_log2 + RTE_RED_SCALING); > > - red_cfg->max_th = ((

Re: [dpdk-dev] [RFC] sched: parameterize QoS traffic-classes and queues

2017-10-06 Thread Alan Dewar
gt; > > Alan. > > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of > alangordonde...@gmail.com > Sent: Thursday, October 05, 2017 10:21 AM > To: cristian.dumitre...@intel.com > Cc: dev@dpdk.org; Alan Dewar > Subject: [dpdk-dev] [RFC] sched: parameterize QoS traffic-class

[dpdk-dev] [PATCH] rte_sched: don't count RED-drops as tail-drops

2017-08-24 Thread Alan Dewar
not Tail-dropped, so the n_pkts_dropped counter should not be incremented when the n_pkts_red_dropped counter is. Signed-off-by: Alan Dewar --- lib/librte_sched/rte_sched.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_sched/rte_sched.c b/lib/librte_sched