Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 31402
b: refs/heads/master
c: e7b3840
h: refs/heads/master
v: v3
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Jun 30, 2006
1 parent 7c74f4e commit 4f437bf
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 92fe15a3d24fa53e7e961c549c488d0bb642d895
refs/heads/master: e7b384043e27bed4f23b108481b99c518dd01a01
25 changes: 13 additions & 12 deletions trunk/kernel/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -4386,7 +4386,16 @@ asmlinkage long sys_sched_yield(void)
return 0;
}

static inline void __cond_resched(void)
static inline int __resched_legal(void)
{
if (unlikely(preempt_count()))
return 0;
if (unlikely(system_state != SYSTEM_RUNNING))
return 0;
return 1;
}

static void __cond_resched(void)
{
#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
__might_sleep(__FILE__, __LINE__);
Expand All @@ -4396,10 +4405,6 @@ static inline void __cond_resched(void)
* PREEMPT_ACTIVE, which could trigger a second
* cond_resched() call.
*/
if (unlikely(preempt_count()))
return;
if (unlikely(system_state != SYSTEM_RUNNING))
return;
do {
add_preempt_count(PREEMPT_ACTIVE);
schedule();
Expand All @@ -4409,13 +4414,12 @@ static inline void __cond_resched(void)

int __sched cond_resched(void)
{
if (need_resched()) {
if (need_resched() && __resched_legal()) {
__cond_resched();
return 1;
}
return 0;
}

EXPORT_SYMBOL(cond_resched);

/*
Expand All @@ -4436,7 +4440,7 @@ int cond_resched_lock(spinlock_t *lock)
ret = 1;
spin_lock(lock);
}
if (need_resched()) {
if (need_resched() && __resched_legal()) {
_raw_spin_unlock(lock);
preempt_enable_no_resched();
__cond_resched();
Expand All @@ -4445,25 +4449,22 @@ int cond_resched_lock(spinlock_t *lock)
}
return ret;
}

EXPORT_SYMBOL(cond_resched_lock);

int __sched cond_resched_softirq(void)
{
BUG_ON(!in_softirq());

if (need_resched()) {
if (need_resched() && __resched_legal()) {
__local_bh_enable();
__cond_resched();
local_bh_disable();
return 1;
}
return 0;
}

EXPORT_SYMBOL(cond_resched_softirq);


/**
* yield - yield the current processor to other threads.
*
Expand Down

0 comments on commit 4f437bf

Please sign in to comment.