https://issues.apache.org/bugzilla/show_bug.cgi?id=54993
Bug ID: 54993
Summary: Critical error: File descriptor in bad state:
apr_pollset_poll failed.
Product: Apache httpd-2
Version: 2.4.4
Hardware: PC
OS: other
Status: NEW
Severity: normal
Priority: P2
Component: mpm_event
Assignee: [email protected]
Reporter: [email protected]
Classification: Unclassified
We are getting lots of strange error messages from Apache 2.4 with the event
mpm under load.
[mpm_event:crit] [pid 9685:tid 28] (81)File descriptor in bad state:
apr_pollset_poll failed. Attempting to shutdown process gracefully
It appears to come from these lines in
/httpd/tags/2.4.4/server/mpm/event/event.c
1455 rc = apr_pollset_poll(event_pollset, timeout_interval, &num,
&out_pfd);
1456 if (rc != APR_SUCCESS) {
1457 if (APR_STATUS_IS_EINTR(rc)) {
1458 continue;
1459 }
1460 if (!APR_STATUS_IS_TIMEUP(rc)) {
1461 ap_log_error(APLOG_MARK, APLOG_CRIT, rc, ap_server_conf,
1462 "apr_pollset_poll failed. Attempting to "
1463 "shutdown process gracefully");
1464 signal_threads(ST_GRACEFUL);
1465 }
1466 }
1467
If I understand correctly, apr_pollset_poll() is returning EBADFD in this code
(specific to pollsets using solaris event ports):
/apr/tags/1.4.6/poll/unix/port.c
372 ret = port_associate(pollset->p->port_fd, PORT_SOURCE_FD,
373 fd, get_event(ep->pfd.reqevents), ep);
374 if (ret < 0) {
375 rv = apr_get_netos_error();
376 APR_RING_INSERT_TAIL(&(pollset->p->free_ring), ep, pfd_elem_t, link);
377 break;
378 }
According to the man page for port_associate:
EBADFD The source argument is of type PORT_SOURCE_FD and the object argument is
not a valid file descriptor.
We are running SmartOS, a variant of OpenSolaris/Illumos
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]