]> git.droids-corp.org - dpdk.git/commitdiff
jobstats: add abort function
authorMarcin Kerlin <marcinx.kerlin@intel.com>
Fri, 12 Feb 2016 16:04:41 +0000 (17:04 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 29 Feb 2016 10:22:53 +0000 (11:22 +0100)
This patch adds new function rte_jobstats_abort.
It marks *job* as finished and time of this work will be add to management
time instead of execution time.
This function should be used instead of rte_jobstats_finish if condition
occurs, condition is defined by the application for example when receiving
n>0 packets.
Example of usage is added to the example l2fwd-jobstats.
At maximum load do-while loop inside Idle job will be execute once because
one or more jobs waiting to be executed, so this time should not be include
as the execution time by calling rte_jobstats_abort().

Signed-off-by: Marcin Kerlin <marcinx.kerlin@intel.com>
Acked-by: Fan Zhang <roy.fan.zhang@intel.com>
examples/l2fwd-jobstats/main.c
lib/librte_jobstats/rte_jobstats.c
lib/librte_jobstats/rte_jobstats.h
lib/librte_jobstats/rte_jobstats_version.map

index 7b59f4e26b6deea60f3dddf9462803cb5e8cb784..6da60e09dc6b13a9f70024b841925b670e73cf73 100644 (file)
@@ -577,10 +577,13 @@ l2fwd_main_loop(void)
                         */
                        rte_jobstats_start(&qconf->jobs_context, &qconf->idle_job);
 
+                       uint64_t repeats = 0;
+
                        do {
                                uint8_t i;
                                uint64_t now = rte_get_timer_cycles();
 
+                               repeats++;
                                need_manage = qconf->flush_timer.expire < now;
                                /* Check if we was esked to give a stats. */
                                stats_read_pending =
@@ -591,7 +594,11 @@ l2fwd_main_loop(void)
                                        need_manage = qconf->rx_timers[i].expire < now;
 
                        } while (!need_manage);
-                       rte_jobstats_finish(&qconf->idle_job, qconf->idle_job.target);
+
+                       if (likely(repeats != 1))
+                               rte_jobstats_finish(&qconf->idle_job, qconf->idle_job.target);
+                       else
+                               rte_jobstats_abort(&qconf->idle_job);
 
                        rte_timer_manage();
                        rte_jobstats_context_finish(&qconf->jobs_context);
index 2eaac0c9217dfff2d209080d1bf123b060edeaad..2b42050ce81baceb0c6de5020592833be1ec8eb5 100644 (file)
@@ -169,6 +169,26 @@ rte_jobstats_start(struct rte_jobstats_context *ctx, struct rte_jobstats *job)
        return 0;
 }
 
+int
+rte_jobstats_abort(struct rte_jobstats *job)
+{
+       struct rte_jobstats_context *ctx;
+       uint64_t now, exec_time;
+
+       /* Some sanity check. */
+       if (unlikely(job == NULL || job->context == NULL))
+               return -EINVAL;
+
+       ctx = job->context;
+       now = get_time();
+       exec_time = now - ctx->state_time;
+       ADD_TIME_MIN_MAX(ctx, management, exec_time);
+       ctx->state_time = now;
+       job->context = NULL;
+
+       return 0;
+}
+
 int
 rte_jobstats_finish(struct rte_jobstats *job, int64_t job_value)
 {
index de6a89adb3165b58a4f29a7f091be7552a6627c0..c2b285f878f1ffcaba97b1b8d8da52f9f929e5f1 100644 (file)
@@ -236,6 +236,20 @@ rte_jobstats_set_target(struct rte_jobstats *job, int64_t target);
 int
 rte_jobstats_start(struct rte_jobstats_context *ctx, struct rte_jobstats *job);
 
+/**
+ * Mark that *job* finished its execution, but time of this work will be skipped
+ * and added to management time.
+ *
+ * @param job
+ *  Job object.
+ *
+ * @return
+ *  0 on success
+ *  -EINVAL if job is NULL or job was not started (it have no context).
+ */
+int
+rte_jobstats_abort(struct rte_jobstats *job);
+
 /**
  * Mark that *job* finished its execution. Context in which it was executing
  * will receive stat update. After this function call *job* object is ready to
index cb01bfdd6f14de6600b9e91d5d2e4b5c6ebd2340..f89441438e26081b5fb24e2cef3850a206b43b54 100644 (file)
@@ -17,3 +17,10 @@ DPDK_2.0 {
 
        local: *;
 };
+
+DPDK_16.04 {
+       global:
+
+       rte_jobstats_abort;
+
+} DPDK_2.0;