public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Can any one tell me why cond_resched in do_select?
@ 2008-01-23 19:01 Wang Nan
  2008-01-27  6:00 ` Andrew Morton
  0 siblings, 1 reply; 2+ messages in thread
From: Wang Nan @ 2008-01-23 19:01 UTC (permalink / raw)
  To: linux-kernel

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?
Thank you.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-01-27  6:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox