All of lore.kernel.org
 help / color / mirror / Atom feed
From: Steven Rostedt <rostedt@goodmis.org>
To: Peter Zijlstra <peterz@infradead.org>
Cc: Xunlei Pang <xlpang@126.com>,
	linux-kernel@vger.kernel.org, Juri Lelli <juri.lelli@gmail.com>,
	Xunlei Pang <pang.xunlei@linaro.org>
Subject: Re: [PATCH v6 2/3] sched/rt: Fix wrong SMP scheduler behavior for equal prio cases
Date: Mon, 20 Apr 2015 13:48:03 -0400	[thread overview]
Message-ID: <20150420134803.5446e32d@gandalf.local.home> (raw)
In-Reply-To: <20150420172048.GZ27490@worktop.programming.kicks-ass.net>

On Mon, 20 Apr 2015 19:20:48 +0200
Peter Zijlstra <peterz@infradead.org> wrote:

> > > +		 */
> > > +		if (preempt_count() & PREEMPT_ACTIVE)
> > > +			enqueue_pushable_task_preempted(rq, p);
> > > +		else
> > > +			enqueue_pushable_task(rq, p);
> > > +	}
> > >  }
> 
> This looks wrong, what do you want to find? _any_ preemption? In that
> case PREEMPT_ACTIVE is wrong. What you need to check is if the task is
> still on the RQ or not.
> 
> If the task was put to sleep it got dequeued, if it was not dequeued, it
> got preempted.
> 
> PREEMPT_ACTIVE is only ever set for forced kernel preemption, which is a
> special sub case only ever triggered with CONFIG_PREEMPT=y.

Ah, you're right. I was thinking of just forced preemption, but, I
wasn't thinking about voluntary preemption (preemption points). We want
this behavior for that too (for kernel).

And yes, if we preempt in user space, this isn't enough either.

Actually, I think we only care if the state of the task is
TASK_RUNNING, if it is anything else, the task is probably going to
sleep anyway and we don't care about FIFO order then.

-- Steve
 

  reply	other threads:[~2015-04-20 17:48 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-20  8:22 [PATCH v6 1/3] lib/plist: Provide plist_add_head() for nodes with the same prio Xunlei Pang
2015-04-20  8:22 ` [PATCH v6 2/3] sched/rt: Fix wrong SMP scheduler behavior for equal prio cases Xunlei Pang
2015-04-20 14:52   ` Steven Rostedt
2015-04-20 17:20     ` Peter Zijlstra
2015-04-20 17:48       ` Steven Rostedt [this message]
2015-04-20 23:45         ` Peter Zijlstra
2015-04-21 13:10           ` Steven Rostedt
     [not found]         ` <OFB1503F16.1E65406F-ON48257E2E.002B562D-48257E30.0008BFEB@zte.com.cn>
2015-04-23  3:01           ` Steven Rostedt
     [not found]             ` <OFE3B71874.C9D81693-ON48257E30.0024F69F-48257E30.0025E2D3@zte.com.cn>
2015-04-23 13:10               ` Steven Rostedt
2015-04-24 18:32               ` Peter Zijlstra
     [not found]                 ` <OF0B05B4FE.F40C0BE3-ON48257E32.004EF485-48257E32.00513DB3@zte.com.cn>
2015-04-25 18:23                   ` Peter Zijlstra
     [not found]                     ` <OFD410EB1E.5A02675A-ON48257E33.00309252-48257E33.003641FF@zte.com.cn>
2015-04-26 15:58                       ` Steven Rostedt
2015-04-28 10:19                         ` Peter Zijlstra
2015-04-28 12:48                           ` Mike Galbraith
2015-04-20  8:22 ` [PATCH v6 3/3] sched/rt: Check to push the task when changing its affinity Xunlei Pang
2015-04-20 16:06   ` Steven Rostedt
2015-04-20 14:42 ` [PATCH v6 1/3] lib/plist: Provide plist_add_head() for nodes with the same prio Steven Rostedt
2015-04-20 14:48 ` Steven Rostedt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150420134803.5446e32d@gandalf.local.home \
    --to=rostedt@goodmis.org \
    --cc=juri.lelli@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pang.xunlei@linaro.org \
    --cc=peterz@infradead.org \
    --cc=xlpang@126.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.