On Fri, 16 Feb 2018 17:55:54 +0100 Martin Jansa <[email protected]> wrote:
> $ grep -c "tried to close client 0 (highest is 1)" > update-rc.d/0.7-r5/pseudo/pseudo.log > 579655922 > > All pseudo processes I've seen on various servers which were building > with this change included got stuck until disk space run out.. Oh-hoh! That could be the epoll thing that I wasn't able to reproduce. > commit 26e30fa2e1a0fe4e885d7eea3f55d23cd2c3158f > Author: Seebs <[email protected]> > Date: Fri Feb 16 11:49:49 2018 -0600 > > Allow closing client 0 Added a thing to master. It looks like the failure mode is that a client ended up on fd 0, and for some reason, back in 2010, I thought that would be invalid and did not allow it. So change is to replace "<= 0" with "< 0". -s -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
