8029073: (corba) New connection reclaimed when number of connection is greater than highwatermark

Reviewed-by: coffeys
This commit is contained in:
Aleksei Efimov 2014-04-04 14:58:04 +04:00
parent 811be0cb68
commit 213f53d60d

View File

@ -253,6 +253,13 @@ public class SocketOrChannelAcceptorImpl
// registered with the selector. Otherwise if the bytes
// are read on the connection it will attempt a time stamp
// but the cache will be null, resulting in NPE.
// A connection needs to be timestamped before putting to the cache.
// Otherwise the newly created connection (with 0 timestamp) could be
// incorrectly reclaimed by concurrent reclaim() call OR if there
// will be no events on this connection then it could be reclaimed
// by upcoming reclaim() call.
getConnectionCache().stampTime(connection);
getConnectionCache().put(this, connection);
if (connection.shouldRegisterServerReadEvent()) {