Home
last modified time | relevance | path

Searched refs:mop (Results 1 – 17 of 17) sorted by relevance

/titanic_41/usr/src/uts/common/io/
H A Dbufmod.c286 mblk_t *mop; in sbioc() local
334 if ((mop = allocb(sizeof (struct stroptions), in sbioc()
340 mop->b_datap->db_type = M_SETOPTS; in sbioc()
341 mop->b_wptr += sizeof (struct stroptions); in sbioc()
342 sop = (struct stroptions *)mop->b_rptr; in sbioc()
346 qreply(wq, mop); in sbioc()
371 if ((mop = allocb(sizeof (struct stroptions), in sbioc()
378 mop->b_datap->db_type = M_SETOPTS; in sbioc()
379 mop->b_wptr += sizeof (struct stroptions); in sbioc()
380 sop = (struct stroptions *)mop->b_rptr; in sbioc()
[all …]
H A Dzcons.c460 mblk_t *mop; in zc_master_open() local
470 if ((mop = allocb(sizeof (struct stroptions), BPRI_MED)) == NULL) { in zc_master_open()
497 mop->b_datap->db_type = M_SETOPTS; in zc_master_open()
498 mop->b_wptr += sizeof (struct stroptions); in zc_master_open()
499 sop = (struct stroptions *)(void *)mop->b_rptr; in zc_master_open()
506 putnext(rqp, mop); in zc_master_open()
520 mblk_t *mop; in zc_slave_open() local
551 if ((mop = allocb(sizeof (struct stroptions), BPRI_MED)) == NULL) { in zc_slave_open()
575 mop->b_datap->db_type = M_SETOPTS; in zc_slave_open()
576 mop->b_wptr += sizeof (struct stroptions); in zc_slave_open()
[all …]
H A Dptm.c317 mblk_t *mop; /* ptr to a setopts message block */ in ptmopen() local
346 mop = allocb(sizeof (struct stroptions), BPRI_MED); in ptmopen()
347 if (mop == NULL) { in ptmopen()
354 freemsg(mop); in ptmopen()
376 mop->b_datap->db_type = M_SETOPTS; in ptmopen()
377 mop->b_wptr += sizeof (struct stroptions); in ptmopen()
378 sop = (struct stroptions *)mop->b_rptr; in ptmopen()
385 putnext(rqp, mop); in ptmopen()
H A Dpckt.c213 mblk_t *mop; /* ptr to a setopts msg block */ in pcktopen() local
248 while ((mop = allocb(sizeof (struct stroptions), BPRI_MED)) == NULL) { in pcktopen()
265 mop->b_datap->db_type = M_SETOPTS; in pcktopen()
266 mop->b_wptr += sizeof (struct stroptions); in pcktopen()
267 sop = (struct stroptions *)mop->b_rptr; in pcktopen()
275 putnext(q, mop); in pcktopen()
H A Dpts.c296 mblk_t *mop; /* ptr to a setopts message block */ in ptsopen() local
363 if ((mop = allocb(sizeof (struct stroptions), BPRI_MED)) == NULL) { in ptsopen()
378 freemsg(mop); in ptsopen()
408 mop->b_datap->db_type = M_SETOPTS; in ptsopen()
409 mop->b_wptr += sizeof (struct stroptions); in ptsopen()
410 sop = (struct stroptions *)mop->b_rptr; in ptsopen()
414 putnext(rqp, mop); in ptsopen()
H A Dptem.c158 mblk_t *mop; /* an setopts mblk */ in ptemopen() local
194 mop = allocb(sizeof (struct stroptions), BPRI_MED); in ptemopen()
195 if (mop == NULL) { in ptemopen()
200 mop->b_datap->db_type = M_SETOPTS; in ptemopen()
201 mop->b_wptr += sizeof (struct stroptions); in ptemopen()
202 sop = (struct stroptions *)mop->b_rptr; in ptemopen()
241 putnext(q, mop); in ptemopen()
H A Decpp.c1024 mblk_t *mop; in ecpp_open() local
1092 if (!(mop = allocb(sizeof (struct stroptions), BPRI_MED))) { in ecpp_open()
1096 mop->b_datap->db_type = M_SETOPTS; in ecpp_open()
1097 mop->b_wptr += sizeof (struct stroptions); in ecpp_open()
1103 sop = (struct stroptions *)mop->b_rptr; in ecpp_open()
1111 putnext(q, mop); in ecpp_open()
/titanic_41/usr/src/uts/common/fs/
H A Dvfs.c2292 mntopt_t *mop, *motbl; in vfs_mergeopttbl() local
2314 if ((mop = vfs_hasopt(omo, imo->mo_list[i].mo_name)) != NULL) { in vfs_mergeopttbl()
2316 uint_t index = mop - omo->mo_list; in vfs_mergeopttbl()
2318 newcanp = vfs_mergecancelopts(mop, &motbl[index]); in vfs_mergeopttbl()
2350 struct mntopt *mop; in vfs_clearmntopt_nolock() local
2357 mop = &mops->mo_list[i]; in vfs_clearmntopt_nolock()
2359 if (mop->mo_flags & MO_EMPTY) in vfs_clearmntopt_nolock()
2361 if (strcmp(opt, mop->mo_name)) in vfs_clearmntopt_nolock()
2363 mop->mo_flags &= ~MO_SET; in vfs_clearmntopt_nolock()
2364 if (mop->mo_arg != NULL) { in vfs_clearmntopt_nolock()
[all …]
/titanic_41/usr/src/uts/common/fs/mntfs/
H A Dmntvnops.c163 mntopt_t *mop; in mntfs_optsize() local
166 mop = &vfsp->vfs_mntopts.mo_list[i]; in mntfs_optsize()
167 if (mop->mo_flags & MO_NODISPLAY) in mntfs_optsize()
169 if (mop->mo_flags & MO_SET) { in mntfs_optsize()
172 size += strlen(mop->mo_name); in mntfs_optsize()
176 if (mop->mo_arg != NULL) { in mntfs_optsize()
177 size += strlen(mop->mo_arg) + 1; in mntfs_optsize()
204 mntopt_t *mop; in mntfs_optprint() local
208 mop = &vfsp->vfs_mntopts.mo_list[i]; in mntfs_optprint()
209 if (mop->mo_flags & MO_NODISPLAY) in mntfs_optprint()
[all …]
/titanic_41/usr/src/uts/common/io/ppp/spppcomp/
H A Ddeflate.c767 z_decompress(void *arg, mblk_t **mop) in z_decompress() argument
770 mblk_t *mi = *mop, *mnext; in z_decompress()
789 *mop = NULL; in z_decompress()
992 *mop = mo_head; in z_decompress()
/titanic_41/usr/src/lib/lvm/libmeta/common/
H A Dmeta_mn_handlers.c1675 mddb_optrec_parm_t mop; in mdmn_do_mddb_optrecerr() local
1686 (void) memset(&mop, 0, sizeof (mop)); in mdmn_do_mddb_optrecerr()
1687 mop.c_setno = msg->msg_setno; in mdmn_do_mddb_optrecerr()
1689 mop.c_recerr[i] = d->msg_recerr[i]; in mdmn_do_mddb_optrecerr()
1691 ret = metaioctl(MD_MN_MDDB_OPTRECFIX, &mop, &mop.c_mde, NULL); in mdmn_do_mddb_optrecerr()
1693 (void) mdstealerror(&(resp->mmr_ep), &mop.c_mde); in mdmn_do_mddb_optrecerr()
/titanic_41/usr/src/uts/common/sys/lvm/
H A Dmdvar.h836 extern int mddb_optrecfix(mddb_optrec_parm_t *mop);
/titanic_41/usr/src/uts/common/fs/nfs/
H A Dnfs4_stub_vnops.c3261 struct mntopt *mop = &optproto->mo_list[i]; in nfs4_trigger_create_mntopts() local
3263 if (mop->mo_flags & MO_EMPTY) in nfs4_trigger_create_mntopts()
3266 if (nfs4_trigger_add_mntopt(mntopts, mop->mo_name, vfsp)) { in nfs4_trigger_create_mntopts()
/titanic_41/usr/src/uts/common/io/lvm/md/
H A Dmd_mddb.c11575 mddb_optrecfix(mddb_optrec_parm_t *mop) in mddb_optrecfix() argument
11587 md_error_t *ep = &mop->c_mde; in mddb_optrecfix()
11592 setno = mop->c_setno; in mddb_optrecfix()
11593 if (mop->c_setno >= md_nsets) in mddb_optrecfix()
11599 if ((s = mddb_setenter(mop->c_setno, MDDB_MUSTEXIST, &err)) == NULL) { in mddb_optrecfix()
11600 return (mddbstatus2error(ep, err, NODEV32, mop->c_setno)); in mddb_optrecfix()
11603 if (!(MD_MNSET_SETNO(mop->c_setno))) { in mddb_optrecfix()
11618 recerr = &mop->c_recerr[i]; in mddb_optrecfix()
/titanic_41/usr/src/lib/libsldap/common/
H A Dns_writes.c162 int mop, in init_bval_mod() argument
203 mod->mod_op = mop | LDAP_MOD_BVALUES; in init_bval_mod()
/titanic_41/usr/src/cmd/look/
H A Dwords15126 mop
/titanic_41/usr/src/cmd/spell/
H A Dlist15124 mop