public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: "Wang Nan" <wn.at.lkml@gmail.com>
Cc: linux-kernel@vger.kernel.org, Ingo Molnar <mingo@elte.hu>
Subject: Re: Can any one tell me why cond_resched in do_select?
Date: Sat, 26 Jan 2008 22:00:06 -0800	[thread overview]
Message-ID: <20080126220006.21bf443c.akpm@linux-foundation.org> (raw)
In-Reply-To: <14344f930801231101w3906aeaey88034e0fa8fa3f36@mail.gmail.com>

> On Thu, 24 Jan 2008 03:01:53 +0800 "Wang Nan" <wn.at.lkml@gmail.com> wrote:
> Hi, everyone.
> I have a question regarding to select system call's code. In
> do_select() function, after check each fd in the set, do_select() call
> cond_resched(). That line, according to my view, is to reduce the
> system freeze time when do the busy querying. But before the call,
> when entering into the big loop, do_select call
> set_current_state(TASK_INTERRUPTIBLE). Then, if the reschedule really
> taken up, the current process will not return unless it catch a
> signal, or one of already registered fd send an event.
> I've tried in UML. If I replace the cond_resched() into schedule(),
> when sys_select() called, the process halt just like I've said.
> I don't think there is a bug because this code exist so long time and
> no really bad thing happened. I just want to know that, since no
> schedule() allowed here, can we delete the useless line?

It does look a bit odd.  IIRC, cond_resched() is special, in that if it is
called in state TASK_INTERRUPTIBLE it will _not_ return in state
TASK_RUNNING after having called schedule().

Search for PREEMPT_ACTIVE in kernel/sched.c.  See if you can work out what
this code:


	if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
		if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
				unlikely(signal_pending(prev)))) {
			prev->state = TASK_RUNNING;
		} else {
			deactivate_task(rq, prev, 1);
		}
		switch_count = &prev->nvcsw;
	}

is doing, then send a patch which adds the missing comment :)

      reply	other threads:[~2008-01-27  6:00 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-01-23 19:01 Can any one tell me why cond_resched in do_select? Wang Nan
2008-01-27  6:00 ` Andrew Morton [this message]

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=20080126220006.21bf443c.akpm@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=wn.at.lkml@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox