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

Correctly reset steals when hitting MAX_STEALS #12302

Merged
merged 2 commits into from
Feb 16, 2014
Merged
Show file tree
Hide file tree
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
10 changes: 9 additions & 1 deletion src/libstd/comm/shared.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
/// module. You'll also note that the implementation of the shared and stream
/// channels are quite similar, and this is no coincidence!

use cmp;
use int;
use iter::Iterator;
use kinds::Send;
Expand All @@ -35,6 +36,9 @@ use mpsc = sync::mpsc_queue;

static DISCONNECTED: int = int::MIN;
static FUDGE: int = 1024;
#[cfg(test)]
static MAX_STEALS: int = 5;
#[cfg(not(test))]
static MAX_STEALS: int = 1 << 20;

pub struct Packet<T> {
Expand Down Expand Up @@ -307,7 +311,11 @@ impl<T: Send> Packet<T> {
DISCONNECTED => {
self.cnt.store(DISCONNECTED, atomics::SeqCst);
}
n => { self.steals -= n; }
n => {
let m = cmp::min(n, self.steals);
self.steals -= m;
self.cnt.fetch_add(n - m, atomics::SeqCst);
}
}
assert!(self.steals >= 0);
}
Expand Down
25 changes: 19 additions & 6 deletions src/libstd/comm/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
/// High level implementation details can be found in the comment of the parent
/// module.

use cmp;
use comm::Port;
use int;
use iter::Iterator;
Expand All @@ -32,6 +33,9 @@ use sync::atomics;
use vec::OwnedVector;

static DISCONNECTED: int = int::MIN;
#[cfg(test)]
static MAX_STEALS: int = 5;
#[cfg(not(test))]
static MAX_STEALS: int = 1 << 20;

pub struct Packet<T> {
Expand Down Expand Up @@ -198,19 +202,28 @@ impl<T: Send> Packet<T> {
pub fn try_recv(&mut self) -> Result<T, Failure<T>> {
match self.queue.pop() {
// If we stole some data, record to that effect (this will be
// factored into cnt later on). Note that we don't allow steals to
// grow without bound in order to prevent eventual overflow of
// either steals or cnt as an overflow would have catastrophic
// results. Also note that we don't unconditionally set steals to 0
// because it can be true that steals > cnt.
// factored into cnt later on).
//
// Note that we don't allow steals to grow without bound in order to
// prevent eventual overflow of either steals or cnt as an overflow
// would have catastrophic results. Sometimes, steals > cnt, but
// other times cnt > steals, so we don't know the relation between
// steals and cnt. This code path is executed only rarely, so we do
// a pretty slow operation, of swapping 0 into cnt, taking steals
// down as much as possible (without going negative), and then
// adding back in whatever we couldn't factor into steals.
Some(data) => {
self.steals += 1;
if self.steals > MAX_STEALS {
match self.cnt.swap(0, atomics::SeqCst) {
DISCONNECTED => {
self.cnt.store(DISCONNECTED, atomics::SeqCst);
}
n => { self.steals -= n; }
n => {
let m = cmp::min(n, self.steals);
self.steals -= m;
self.cnt.fetch_add(n - m, atomics::SeqCst);
}
}
assert!(self.steals >= 0);
}
Expand Down
1 change: 0 additions & 1 deletion src/libstd/num/f32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,6 @@ impl num::FromStrRadix for f32 {
#[cfg(test)]
mod tests {
use f32::*;
use prelude::*;

use num::*;
use num;
Expand Down
1 change: 0 additions & 1 deletion src/libstd/num/f64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,6 @@ impl num::FromStrRadix for f64 {
#[cfg(test)]
mod tests {
use f64::*;
use prelude::*;

use num::*;
use num;
Expand Down
1 change: 0 additions & 1 deletion src/libstd/task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ use rt::task::Task;
use str::{Str, SendStr, IntoMaybeOwned};

#[cfg(test)] use any::{AnyOwnExt, AnyRefExt};
#[cfg(test)] use ptr;
#[cfg(test)] use result;

/// Indicates the manner in which a task exited.
Expand Down