mirror of
https://github.com/nginx/nginx.git
synced 2025-06-07 17:52:38 +08:00
Fixed AIO on Linux, broken in r4306.
Events from eventfd do not have c->write set, and the stale event check added in r4306 causes null pointer dereference.
This commit is contained in:
parent
b99492595c
commit
c09d65b179
@ -681,20 +681,20 @@ ngx_epoll_process_events(ngx_cycle_t *cycle, ngx_msec_t timer, ngx_uint_t flags)
|
|||||||
|
|
||||||
wev = c->write;
|
wev = c->write;
|
||||||
|
|
||||||
if (c->fd == -1 || wev->instance != instance) {
|
|
||||||
|
|
||||||
/*
|
|
||||||
* the stale event from a file descriptor
|
|
||||||
* that was just closed in this iteration
|
|
||||||
*/
|
|
||||||
|
|
||||||
ngx_log_debug1(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
|
|
||||||
"epoll: stale event %p", c);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((revents & EPOLLOUT) && wev->active) {
|
if ((revents & EPOLLOUT) && wev->active) {
|
||||||
|
|
||||||
|
if (c->fd == -1 || wev->instance != instance) {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* the stale event from a file descriptor
|
||||||
|
* that was just closed in this iteration
|
||||||
|
*/
|
||||||
|
|
||||||
|
ngx_log_debug1(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
|
||||||
|
"epoll: stale event %p", c);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (flags & NGX_POST_THREAD_EVENTS) {
|
if (flags & NGX_POST_THREAD_EVENTS) {
|
||||||
wev->posted_ready = 1;
|
wev->posted_ready = 1;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user