Skip to content

Commit d374a1e

Browse files
committed
Merge #805
805: Fix epoll bug in release mode on Rust 1.20+ r=Susurrus a=Susurrus Seems to have occurred within a Rust release after 1.13, so let's test all of them since then!
2 parents edf1bac + 54313a7 commit d374a1e

File tree

2 files changed

+12
-22
lines changed

2 files changed

+12
-22
lines changed

.travis.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,9 @@ matrix:
9393
rust: 1.13.0
9494
os: osx
9595

96-
# Testing beta on main targets
96+
# Make sure stable is always working too
9797
- env: TARGET=x86_64-unknown-linux-gnu
98-
rust: beta
99-
100-
allow_failures:
101-
# We allow beta to fail here because a bug might crop up in rust that causes it. We will
102-
# however be on the lookout for this and file those bugs with upstream.
103-
- env: TARGET=x86_64-unknown-linux-gnu
104-
rust: beta
98+
rust: stable
10599

106100
before_install: set -e
107101

src/sys/epoll.rs

+10-14
Original file line numberDiff line numberDiff line change
@@ -65,16 +65,6 @@ impl EpollEvent {
6565
}
6666
}
6767

68-
impl<'a> Into<&'a mut EpollEvent> for Option<&'a mut EpollEvent> {
69-
#[inline]
70-
fn into(self) -> &'a mut EpollEvent {
71-
match self {
72-
Some(epoll_event) => epoll_event,
73-
None => unsafe { &mut *ptr::null_mut::<EpollEvent>() }
74-
}
75-
}
76-
}
77-
7868
#[inline]
7969
pub fn epoll_create() -> Result<RawFd> {
8070
let res = unsafe { libc::epoll_create(1024) };
@@ -91,13 +81,19 @@ pub fn epoll_create1(flags: EpollCreateFlags) -> Result<RawFd> {
9181

9282
#[inline]
9383
pub fn epoll_ctl<'a, T>(epfd: RawFd, op: EpollOp, fd: RawFd, event: T) -> Result<()>
94-
where T: Into<&'a mut EpollEvent>
84+
where T: Into<Option<&'a mut EpollEvent>>
9585
{
96-
let event: &mut EpollEvent = event.into();
97-
if event as *const EpollEvent == ptr::null() && op != EpollOp::EpollCtlDel {
86+
let mut event: Option<&mut EpollEvent> = event.into();
87+
if event.is_none() && op != EpollOp::EpollCtlDel {
9888
Err(Error::Sys(Errno::EINVAL))
9989
} else {
100-
let res = unsafe { libc::epoll_ctl(epfd, op as c_int, fd, &mut event.event) };
90+
let res = unsafe {
91+
if let Some(ref mut event) = event {
92+
libc::epoll_ctl(epfd, op as c_int, fd, &mut event.event)
93+
} else {
94+
libc::epoll_ctl(epfd, op as c_int, fd, ptr::null_mut())
95+
}
96+
};
10197
Errno::result(res).map(drop)
10298
}
10399
}

0 commit comments

Comments
 (0)