* [dpdk-dev] [PATCH 0/2] two bus fixed: pending timers counting and periodic timer non-reloading
@ 2014-05-14 20:03 Vadim Suraev
2014-05-14 20:03 ` [dpdk-dev] [PATCH 1/2] Pending timers counting fixed Vadim Suraev
2014-05-14 20:03 ` [dpdk-dev] [PATCH 2/2] Bug fixed: when timer's callback (for periodic timer) calls timer_reset for another timer, a per-core updated flag is raised which prevents reloading of that periodic timer. The flag is moved to the timer's control block structure Vadim Suraev
0 siblings, 2 replies; 4+ messages in thread
From: Vadim Suraev @ 2014-05-14 20:03 UTC (permalink / raw)
To: dev
*** BLURB HERE ***
Vadim Suraev (2):
Pending timers counting fixed
Bug fixed: when timer's callback (for periodic timer) calls
timer_reset for another timer, a per-core updated flag is
raised which prevents reloading of that periodic timer. The
flag is moved to the timer's control block structure
lib/librte_timer/rte_timer.c | 18 ++++++------------
lib/librte_timer/rte_timer.h | 3 +++
2 files changed, 9 insertions(+), 12 deletions(-)
--
1.7.9.5
^ permalink raw reply [flat|nested] 4+ messages in thread
* [dpdk-dev] [PATCH 1/2] Pending timers counting fixed
2014-05-14 20:03 [dpdk-dev] [PATCH 0/2] two bus fixed: pending timers counting and periodic timer non-reloading Vadim Suraev
@ 2014-05-14 20:03 ` Vadim Suraev
2014-05-14 21:16 ` Thomas Monjalon
2014-05-14 20:03 ` [dpdk-dev] [PATCH 2/2] Bug fixed: when timer's callback (for periodic timer) calls timer_reset for another timer, a per-core updated flag is raised which prevents reloading of that periodic timer. The flag is moved to the timer's control block structure Vadim Suraev
1 sibling, 1 reply; 4+ messages in thread
From: Vadim Suraev @ 2014-05-14 20:03 UTC (permalink / raw)
To: dev
---
lib/librte_timer/rte_timer.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/librte_timer/rte_timer.c b/lib/librte_timer/rte_timer.c
index a3d5cca..f98e904 100755
--- a/lib/librte_timer/rte_timer.c
+++ b/lib/librte_timer/rte_timer.c
@@ -173,7 +173,7 @@ timer_set_running_state(struct rte_timer *tim)
/* timer is not pending anymore */
if (prev_status.state != RTE_TIMER_PENDING)
return -1;
-
+ __TIMER_STAT_ADD(pending, -1);
/* here, we know that timer is stopped or pending,
* mark it atomically as beeing configured */
status.state = RTE_TIMER_RUNNING;
@@ -555,7 +555,6 @@ void rte_timer_manage(void)
if (tim->period == 0) {
/* remove from done list and mark timer as stopped */
- __TIMER_STAT_ADD(pending, -1);
status.state = RTE_TIMER_STOP;
status.owner = RTE_TIMER_NO_OWNER;
rte_wmb();
@@ -564,6 +563,7 @@ void rte_timer_manage(void)
else {
/* keep it in list and mark timer as pending */
status.state = RTE_TIMER_PENDING;
+ __TIMER_STAT_ADD(pending, 1);
status.owner = (int16_t)lcore_id;
rte_wmb();
tim->status.u32 = status.u32;
--
1.7.9.5
^ permalink raw reply [flat|nested] 4+ messages in thread
* [dpdk-dev] [PATCH 2/2] Bug fixed: when timer's callback (for periodic timer) calls timer_reset for another timer, a per-core updated flag is raised which prevents reloading of that periodic timer. The flag is moved to the timer's control block structure
2014-05-14 20:03 [dpdk-dev] [PATCH 0/2] two bus fixed: pending timers counting and periodic timer non-reloading Vadim Suraev
2014-05-14 20:03 ` [dpdk-dev] [PATCH 1/2] Pending timers counting fixed Vadim Suraev
@ 2014-05-14 20:03 ` Vadim Suraev
1 sibling, 0 replies; 4+ messages in thread
From: Vadim Suraev @ 2014-05-14 20:03 UTC (permalink / raw)
To: dev
---
lib/librte_timer/rte_timer.c | 14 ++++----------
lib/librte_timer/rte_timer.h | 3 +++
2 files changed, 7 insertions(+), 10 deletions(-)
diff --git a/lib/librte_timer/rte_timer.c b/lib/librte_timer/rte_timer.c
index f98e904..ea2f22a 100755
--- a/lib/librte_timer/rte_timer.c
+++ b/lib/librte_timer/rte_timer.c
@@ -58,11 +58,6 @@ LIST_HEAD(rte_timer_list, rte_timer);
struct priv_timer {
struct rte_timer pending_head; /**< dummy timer instance to head up list */
rte_spinlock_t list_lock; /**< lock to protect list access */
-
- /** per-core variable that true if a timer was updated on this
- * core since last reset of the variable */
- int updated;
-
/** track the current depth of the skiplist */
unsigned curr_skiplist_depth;
@@ -378,7 +373,7 @@ __rte_timer_reset(struct rte_timer *tim, uint64_t expire,
return -1;
__TIMER_STAT_ADD(reset, 1);
- priv_timer[lcore_id].updated = 1;
+ tim->updated = 1;
/* remove it from list */
if (prev_status.state == RTE_TIMER_PENDING) {
@@ -443,7 +438,6 @@ int
rte_timer_stop(struct rte_timer *tim)
{
union rte_timer_status prev_status, status;
- unsigned lcore_id = rte_lcore_id();
int ret;
/* wait that the timer is in correct status before update,
@@ -453,7 +447,7 @@ rte_timer_stop(struct rte_timer *tim)
return -1;
__TIMER_STAT_ADD(stop, 1);
- priv_timer[lcore_id].updated = 1;
+ tim->updated = 1;
/* remove it from list */
if (prev_status.state == RTE_TIMER_PENDING) {
@@ -541,7 +535,7 @@ void rte_timer_manage(void)
rte_spinlock_unlock(&priv_timer[lcore_id].list_lock);
- priv_timer[lcore_id].updated = 0;
+ tim->updated = 0;
/* execute callback function with list unlocked */
tim->f(tim, tim->arg);
@@ -550,7 +544,7 @@ void rte_timer_manage(void)
/* the timer was stopped or reloaded by the callback
* function, we have nothing to do here */
- if (priv_timer[lcore_id].updated == 1)
+ if (tim->updated == 1)
continue;
if (tim->period == 0) {
diff --git a/lib/librte_timer/rte_timer.h b/lib/librte_timer/rte_timer.h
index c5f936b..19f6514 100755
--- a/lib/librte_timer/rte_timer.h
+++ b/lib/librte_timer/rte_timer.h
@@ -129,6 +129,9 @@ struct rte_timer
uint64_t period; /**< Period of timer (0 if not periodic). */
rte_timer_cb_t *f; /**< Callback function. */
void *arg; /**< Argument to callback function. */
+ /** if a timer was updated on this
+ * core since last reset of the variable */
+ int updated;
};
--
1.7.9.5
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] Pending timers counting fixed
2014-05-14 20:03 ` [dpdk-dev] [PATCH 1/2] Pending timers counting fixed Vadim Suraev
@ 2014-05-14 21:16 ` Thomas Monjalon
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2014-05-14 21:16 UTC (permalink / raw)
To: Vadim Suraev; +Cc: dev
Hello,
Thanks for contributing.
Please reformat your patch as described here:
http://dpdk.org/dev#send
--
Thomas
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-05-14 21:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-14 20:03 [dpdk-dev] [PATCH 0/2] two bus fixed: pending timers counting and periodic timer non-reloading Vadim Suraev
2014-05-14 20:03 ` [dpdk-dev] [PATCH 1/2] Pending timers counting fixed Vadim Suraev
2014-05-14 21:16 ` Thomas Monjalon
2014-05-14 20:03 ` [dpdk-dev] [PATCH 2/2] Bug fixed: when timer's callback (for periodic timer) calls timer_reset for another timer, a per-core updated flag is raised which prevents reloading of that periodic timer. The flag is moved to the timer's control block structure Vadim Suraev
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).