Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't always wake up sleeping schedulers #11325

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 17 additions & 9 deletions src/libgreen/sched.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ pub struct Scheduler {
/// Bookeeping for the number of tasks which are currently running around
/// inside this pool of schedulers
task_state: TaskState,
enqueued_tasks: uint,

// n.b. currently destructors of an object are run in top-to-bottom in order
// of field declaration. Due to its nature, the pausable idle callback
Expand Down Expand Up @@ -164,6 +165,7 @@ impl Scheduler {
yield_check_count: 0,
steal_for_yield: false,
task_state: state,
enqueued_tasks: 0,
};

sched.yield_check_count = reset_yield_check(&mut sched.rng);
Expand Down Expand Up @@ -553,16 +555,22 @@ impl Scheduler {
None => {} // allow enqueuing before the scheduler starts
}

// We've made work available. Notify a
// sleeping scheduler.

match self.sleeper_list.casual_pop() {
Some(handle) => {
let mut handle = handle;
handle.send(Wake)
// We've made work available, so we might want to notify a sleeping
// scheduler. Note that this notification is fairly expensive (involves
// doing a `write()` on a pipe), so we don't attempt to wake up a remote
// scheduler on *all* task enqueues. Testing has shown that 8 is the
// lowest value which achieves a dramatic speedup (8 threads
// incrementing a global counter inside of a mutex).
if self.enqueued_tasks % 8 == 0 {
match self.sleeper_list.casual_pop() {
Some(handle) => {
let mut handle = handle;
handle.send(Wake)
}
None => { (/* pass */) }
}
None => { (/* pass */) }
};
}
self.enqueued_tasks += 1;
}

// * Core Context Switching Functions
Expand Down