Lines Matching defs:s
80 * listener's serializer and the rest of T_CONN_REQ processing is done on the
132 * instead moves acceptor to listener's serializer.
289 * is the same as Y's address and if it is there is no need to lookup Y. If the
1246 tl_serializer_t *s = kmem_alloc(sizeof (tl_serializer_t), flags);
1249 if (s == NULL)
1255 kmem_free(s, sizeof (tl_serializer_t));
1259 s->ts_refcnt = 1;
1260 s->ts_serializer = ser;
1261 return (s);
1265 tl_serializer_refhold(tl_serializer_t *s)
1267 atomic_inc_32(&s->ts_refcnt);
1271 tl_serializer_refrele(tl_serializer_t *s)
1273 if (atomic_dec_32_nv(&s->ts_refcnt) == 0) {
1274 serializer_destroy(s->ts_serializer);
1275 kmem_free(s, sizeof (tl_serializer_t));
3318 * Switch eager serializer to acceptor's.
3519 * If the client is present it is switched from listener's to acceptor's
3532 * proceeding asynchronously on the listener's serializer, so we're
3533 * forced to change the acceptor to use the listener's serializer to
3535 * respect to the close that's in-progress.
3548 * switch to client's serializer which is used by client
3764 * serializer to acceptor's.
3780 * Move client to the acceptor's serializer.
3790 * It is not possible to switch client to use acceptor's.
3791 * Move acceptor to client's serializer (which is the same as
3792 * listener's).
4148 * Messages may be queued on peer's write queue
4151 * structure is set to NULL, qenable the peer's write
5087 /* Options not supported unless it's a socket */