lkml.org 
[lkml]   [2018]   [Mar]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: [RFC] rcu: Prevent expedite reporting within RCU read-side section
On Thu, Mar 08, 2018 at 10:01:56AM -0800, Paul E. McKenney wrote:
> On Thu, Mar 08, 2018 at 07:08:25PM +0900, Byungchul Park wrote:

[...]

> > 2. Clear its bit of ->expmask *only* when it's out of RCU read
> > sections and keep others unchanged. So it will be cleared at the
> > end of the RCU read section in that case.
> >
> > This option would also work because we anyway check both
> > ->exp_tasks and ->expmask to finish the expedite-gp.
>
> This could be made to work, but one shortcoming is that the grace
> period would end up waiting on later read-side critical sections
> that it does not really need to wait on. Also, eventually all the

I don't think it waits on any later ones since ->expmask would be
cleared at the end of the previous RCU read section.

> bits would clear, and they might clear before the last preempted
> task resumed, so the race would still exist.

No problem since ->exp_tasks will prevent the expedite-gp from ending.

> > Current code chose the 1st option and try to report the quiescent state
> > using rcu_report_exp_rdp() when it's out of RCU read sections or the
> > task is preempted, while an expedite-gp is in progress.
> >
> > However, when reporting it within a RCU read section, the reporting
> > hardly goes further since sync_rcu_preempt_exp_done() of course returns
> > false, furthermore, it might add *unnecessary* lock contention of
> > rcu_node's spin lock within rcu_report_exp_cpu_mult(). I think those are
> > unnecessary at all even though there's no logical problem.
>
> It would be possible to use ordering and memory barriers to avoid at
> least some lock acquisitions, but the resulting code would be more
> complex and fragile. So I would want to see a real problem before

Yes, the simpler the better.

> using a more aggressive design.

I admit that I've done far more than I intended. I understand you and
don't wanna change the design aggressively.

> > @@ -716,28 +716,22 @@ static void sync_rcu_exp_handler(void *info)
> > struct rcu_state *rsp = info;
> > struct task_struct *t = current;
> >
> > - /*
> > - * Within an RCU read-side critical section, request that the next
> > - * rcu_read_unlock() report. Unless this RCU read-side critical
> > - * section has already blocked, in which case it is already set
> > - * up for the expedited grace period to wait on it.
> > - */
> > - if (t->rcu_read_lock_nesting > 0 &&
> > - !t->rcu_read_unlock_special.b.blocked) {
> > + if (t->rcu_read_lock_nesting > 0) {
> > + /*
> > + * Within an RCU read-side critical section, request that
> > + * the next rcu_read_unlock() report.
> > + */
> > t->rcu_read_unlock_special.b.exp_need_qs = true;
> > - return;
> > + } else {
> > + /*
> > + * We are either exiting an RCU read-side critical section
> > + * (negative values of t->rcu_read_lock_nesting) or are not
> > + * in one at all (zero value of t->rcu_read_lock_nesting).
> > + * We can immediately report the quiescent state.
> > + */
> > + rdp = this_cpu_ptr(rsp->rda);
> > + rcu_report_exp_rdp(rsp, rdp, true);
> > }
> > -
> > - /*
> > - * We are either exiting an RCU read-side critical section (negative
> > - * values of t->rcu_read_lock_nesting) or are not in one at all
> > - * (zero value of t->rcu_read_lock_nesting). Or we are in an RCU
> > - * read-side critical section that blocked before this expedited
> > - * grace period started. Either way, we can immediately report
> > - * the quiescent state.
> > - */
> > - rdp = this_cpu_ptr(rsp->rda);
> > - rcu_report_exp_rdp(rsp, rdp, true);
>
> This code is equivalent, correct? All that happened is that a
> "return" statement was replaced with an "else" clause. Or am I
> blind this morning?

It's different. I made it do rcu_report_exp_rdp() only when it's out of
RCU read sections, otherwise set the exp_need_qs flag. But I noticed
that this part should be modified thanks to your explanation below.

> > diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h
> > index b0d7f9b..b303b63 100644
> > --- a/kernel/rcu/tree_plugin.h
> > +++ b/kernel/rcu/tree_plugin.h
> > @@ -269,20 +269,6 @@ static void rcu_preempt_ctxt_queue(struct rcu_node *rnp, struct rcu_data *rdp)
> > WARN_ON_ONCE(!(blkd_state & RCU_EXP_BLKD) !=
> > !(rnp->expmask & rdp->grpmask));
> > raw_spin_unlock_rcu_node(rnp); /* interrupts remain disabled. */
> > -
> > - /*
> > - * Report the quiescent state for the expedited GP. This expedited
> > - * GP should not be able to end until we report, so there should be
> > - * no need to check for a subsequent expedited GP. (Though we are
> > - * still in a quiescent state in any case.)
> > - */
> > - if (blkd_state & RCU_EXP_BLKD &&
> > - t->rcu_read_unlock_special.b.exp_need_qs) {
> > - t->rcu_read_unlock_special.b.exp_need_qs = false;
> > - rcu_report_exp_rdp(rdp->rsp, rdp, true);
> > - } else {
> > - WARN_ON_ONCE(t->rcu_read_unlock_special.b.exp_need_qs);
> > - }
>
> Again, this does not eliminate the race, from what I can see. And it

There are races neither in the current code nor in my patch, I think.

> can unnecessarily extend the expedited grace period.

I don't know what you're pointing out here. Does the patch I'm attaching
below still have the same problem? Do you remind that it's gonna be
handled in rcu_read_unlock_special()?

> > @@ -532,16 +498,18 @@ void rcu_read_unlock_special(struct task_struct *t)
> > /* Unboost if we were boosted. */
> > if (IS_ENABLED(CONFIG_RCU_BOOST) && drop_boost_mutex)
> > rt_mutex_futex_unlock(&rnp->boost_mtx);
> > -
> > - /*
> > - * If this was the last task on the expedited lists,
> > - * then we need to report up the rcu_node hierarchy.
> > - */
> > - if (!empty_exp && empty_exp_now)
> > - rcu_report_exp_rnp(rcu_state_p, rnp, true);
> > } else {
> > local_irq_restore(flags);
> > }
> > +
> > + /*
> > + * Respond to a request for an expedited grace period.
> > + */
> > + if (special.b.exp_need_qs) {
> > + t->rcu_read_unlock_special.b.exp_need_qs = false;
> > + rdp = this_cpu_ptr(rcu_state_p->rda);
> > + rcu_report_exp_rdp(rcu_state_p, rdp, true);
> > + }
>
> OK, so it looks like you are thinking in terms of combining the two
> possible calls to rcu_report_exp_rdp(). But can't you lose reports
> this way? For example, suppose that this rcu_node structure has
> two tasks queued behind ->exp_tasks?

I certainly missed something here. I noticed it thanks to you.

> The current code uses the non-empty-to-empty transition to make the
> later report happen. How does this code make that happen?

Exactly. My code doesn't make it.

What about the modified version which doesn't change the design but just
eliminates the obvious unnecessary? And it might answer your question
properly saying "which calls to this function (rcu_report_exp_cpu_mult())
do you believe should be removed?".

----->8-----
diff --git a/kernel/rcu/tree_exp.h b/kernel/rcu/tree_exp.h
index 73e1d3d..33dfe6b 100644
--- a/kernel/rcu/tree_exp.h
+++ b/kernel/rcu/tree_exp.h
@@ -736,8 +736,10 @@ static void sync_rcu_exp_handler(void *info)
* grace period started. Either way, we can immediately report
* the quiescent state.
*/
- rdp = this_cpu_ptr(rsp->rda);
- rcu_report_exp_rdp(rsp, rdp, true);
+ if (t->rcu_read_lock_nesting <= 0) {
+ rdp = this_cpu_ptr(rsp->rda);
+ rcu_report_exp_rdp(rsp, rdp, true);
+ }
}

/**
diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h
index b0d7f9b..bb6b2dc 100644
--- a/kernel/rcu/tree_plugin.h
+++ b/kernel/rcu/tree_plugin.h
@@ -271,15 +271,12 @@ static void rcu_preempt_ctxt_queue(struct rcu_node *rnp, struct rcu_data *rdp)
raw_spin_unlock_rcu_node(rnp); /* interrupts remain disabled. */

/*
- * Report the quiescent state for the expedited GP. This expedited
- * GP should not be able to end until we report, so there should be
- * no need to check for a subsequent expedited GP. (Though we are
- * still in a quiescent state in any case.)
+ * Reporting the quiescent state for the expedited GP will be
+ * handled by special.b.blocked field in rcu_read_unlock_special().
*/
if (blkd_state & RCU_EXP_BLKD &&
t->rcu_read_unlock_special.b.exp_need_qs) {
t->rcu_read_unlock_special.b.exp_need_qs = false;
- rcu_report_exp_rdp(rdp->rsp, rdp, true);
} else {
WARN_ON_ONCE(t->rcu_read_unlock_special.b.exp_need_qs);
}
@@ -491,7 +488,7 @@ void rcu_read_unlock_special(struct task_struct *t)
WARN_ON_ONCE(rnp != t->rcu_blocked_node);
WARN_ON_ONCE(rnp->level != rcu_num_lvls - 1);
empty_norm = !rcu_preempt_blocked_readers_cgp(rnp);
- empty_exp = sync_rcu_preempt_exp_done(rnp);
+ empty_exp = rnp->exp_tasks == NULL;
smp_mb(); /* ensure expedited fastpath sees end of RCU c-s. */
np = rcu_next_node_entry(t, rnp);
list_del_init(&t->rcu_node_entry);
@@ -515,7 +512,7 @@ void rcu_read_unlock_special(struct task_struct *t)
* Note that rcu_report_unblock_qs_rnp() releases rnp->lock,
* so we must take a snapshot of the expedited state.
*/
- empty_exp_now = sync_rcu_preempt_exp_done(rnp);
+ empty_exp_now = rnp->exp_tasks == NULL;
if (!empty_norm && !rcu_preempt_blocked_readers_cgp(rnp)) {
trace_rcu_quiescent_state_report(TPS("preempt_rcu"),
rnp->gpnum,
@@ -537,8 +534,10 @@ void rcu_read_unlock_special(struct task_struct *t)
* If this was the last task on the expedited lists,
* then we need to report up the rcu_node hierarchy.
*/
- if (!empty_exp && empty_exp_now)
- rcu_report_exp_rnp(rcu_state_p, rnp, true);
+ if (!empty_exp && empty_exp_now) {
+ rdp = this_cpu_ptr(rcu_state_p->rda);
+ rcu_report_exp_rdp(rcu_state_p, rdp, true);
+ }
} else {
local_irq_restore(flags);
}
\
 
 \ /
  Last update: 2018-03-09 09:44    [W:0.075 / U:0.032 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site