All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] event/sw: move stats code for better cache access
@ 2018-02-27 20:17 Vipin Varghese
  2018-03-14 13:14 ` Laatz, Kevin
  0 siblings, 1 reply; 3+ messages in thread
From: Vipin Varghese @ 2018-02-27 20:17 UTC (permalink / raw)
  To: dev, harry.van.haaren; +Cc: Vipin Varghese

variables 'out_pkts_total' and 'out_pkts_total' will be in registers.
Hence shifting the code after the loop, helps the update from registers.

Signed-off-by: Vipin Varghese <vipin.varghese@intel.com>
---
 drivers/event/sw/sw_evdev_scheduler.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/event/sw/sw_evdev_scheduler.c b/drivers/event/sw/sw_evdev_scheduler.c
index 17bd4c0..9143b93 100644
--- a/drivers/event/sw/sw_evdev_scheduler.c
+++ b/drivers/event/sw/sw_evdev_scheduler.c
@@ -541,6 +541,12 @@ sw_event_schedule(struct rte_eventdev *dev)
 			break;
 	} while ((int)out_pkts_total < sched_quanta);
 
+	sw->stats.tx_pkts += out_pkts_total;
+	sw->stats.rx_pkts += in_pkts_total;
+
+	sw->sched_no_iq_enqueues += (in_pkts_total == 0);
+	sw->sched_no_cq_enqueues += (out_pkts_total == 0);
+
 	/* push all the internal buffered QEs in port->cq_ring to the
 	 * worker cores: aka, do the ring transfers batched.
 	 */
@@ -552,10 +558,4 @@ sw_event_schedule(struct rte_eventdev *dev)
 		sw->ports[i].cq_buf_count = 0;
 	}
 
-	sw->stats.tx_pkts += out_pkts_total;
-	sw->stats.rx_pkts += in_pkts_total;
-
-	sw->sched_no_iq_enqueues += (in_pkts_total == 0);
-	sw->sched_no_cq_enqueues += (out_pkts_total == 0);
-
 }
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] event/sw: move stats code for better cache access
  2018-02-27 20:17 [PATCH] event/sw: move stats code for better cache access Vipin Varghese
@ 2018-03-14 13:14 ` Laatz, Kevin
  2018-03-20  5:48   ` Jerin Jacob
  0 siblings, 1 reply; 3+ messages in thread
From: Laatz, Kevin @ 2018-03-14 13:14 UTC (permalink / raw)
  To: Vipin Varghese; +Cc: dev, harry.van.haaren



On 27/02/2018 20:17, Vipin Varghese wrote:
> variables 'out_pkts_total' and 'out_pkts_total' will be in registers.
> Hence shifting the code after the loop, helps the update from registers.
>
> Signed-off-by: Vipin Varghese <vipin.varghese@intel.com>

<...>

Acked-by: Kevin Laatz <kevin.laatz@intel.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] event/sw: move stats code for better cache access
  2018-03-14 13:14 ` Laatz, Kevin
@ 2018-03-20  5:48   ` Jerin Jacob
  0 siblings, 0 replies; 3+ messages in thread
From: Jerin Jacob @ 2018-03-20  5:48 UTC (permalink / raw)
  To: Laatz, Kevin; +Cc: Vipin Varghese, dev, harry.van.haaren

-----Original Message-----
> Date: Wed, 14 Mar 2018 13:14:10 +0000
> From: "Laatz, Kevin" <kevin.laatz@intel.com>
> To: Vipin Varghese <vipin.varghese@intel.com>
> CC: dev@dpdk.org, harry.van.haaren@intel.com
> Subject: Re: [dpdk-dev] [PATCH] event/sw: move stats code for better cache
>  access
> User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101
>  Thunderbird/52.6.0
> 
> 
> 
> On 27/02/2018 20:17, Vipin Varghese wrote:
> > variables 'out_pkts_total' and 'out_pkts_total' will be in registers.
> > Hence shifting the code after the loop, helps the update from registers.
> > 
> > Signed-off-by: Vipin Varghese <vipin.varghese@intel.com>
> 
> <...>
> 
> Acked-by: Kevin Laatz <kevin.laatz@intel.com>

Applied to dpdk-next-eventdev/master. Thanks.

> 
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-03-20  5:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-27 20:17 [PATCH] event/sw: move stats code for better cache access Vipin Varghese
2018-03-14 13:14 ` Laatz, Kevin
2018-03-20  5:48   ` Jerin Jacob

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.