Searched refs:pso (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsockcommon_subr.c1267 socket_init_common(struct sonode *so, struct sonode *pso, int flags, cred_t *cr) argument
1271 if (pso != NULL) {
1279 mutex_enter(&pso->so_lock);
1281 so->so_state |= SS_ISCONNECTED | (pso->so_state & SS_ASYNC);
1282 so->so_pgrp = pso->so_pgrp;
1283 so->so_rcvtimeo = pso->so_rcvtimeo;
1284 so->so_sndtimeo = pso->so_sndtimeo;
1285 so->so_xpg_rcvbuf = pso->so_xpg_rcvbuf;
1292 so->so_options = pso->so_options & (SO_DEBUG|SO_REUSEADDR|
1295 so->so_proto_props = pso
[all...]
H A Dsockfilter.c401 * The socket `so' wants to inherit the filter stack from `pso'.
405 sof_sonode_inherit_filters(struct sonode *so, struct sonode *pso) argument
448 for (pinst = pso->so_filter_bottom;
1522 struct sonode *pso = so->so_listener; local
1554 mutex_enter(&pso->so_acceptq_lock);
1556 mutex_exit(&pso->so_acceptq_lock);
1559 list_remove(&pso->so_acceptq_defer, so);
1560 list_insert_tail(&pso->so_acceptq_list, so);
1561 cv_signal(&pso->so_acceptq_cv);
1562 mutex_exit(&pso
[all...]
H A Dsockcommon_sops.c120 so_init(struct sonode *so, struct sonode *pso, struct cred *cr, int flags) argument
122 return (socket_init_common(so, pso, flags, cr));
/illumos-gate/usr/src/uts/common/inet/sockmods/
H A Dsocksdp.c132 sosdp_init(struct sonode *so, struct sonode *pso, struct cred *cr, int flags) argument
138 if (pso != NULL) {
144 (pso->so_state & SS_ASYNC));
145 sosdp_so_inherit(pso, so);
146 so->so_proto_props = pso->so_proto_props;
H A Dsocksctp.c176 sosctp_init(struct sonode *so, struct sonode *pso, struct cred *cr, int flags) argument
185 if (pso != NULL) {
192 pss = SOTOSSO(pso);
194 mutex_enter(&pso->so_lock);
196 (pso->so_state & SS_ASYNC));
198 so->so_proto_props = pso->so_proto_props;
199 so->so_mode = pso->so_mode;
200 mutex_exit(&pso->so_lock);

Completed in 80 milliseconds