Lines Matching defs:motbl
2160 mntopt_t *motbl;
2170 motbl = kmem_zalloc((count + extra) * sizeof (mntopt_t), KM_SLEEP);
2171 dmo->mo_list = motbl;
2173 vfs_copyopt(&smo->mo_list[i], &motbl[i]);
2176 motbl[i].mo_flags = MO_EMPTY;
2281 mntopt_t *mop, *motbl;
2296 motbl = kmem_alloc(count * sizeof (mntopt_t), KM_SLEEP);
2298 vfs_copyopt(&omo->mo_list[i], &motbl[i]);
2307 newcanp = vfs_mergecancelopts(mop, &motbl[index]);
2309 vfs_freeopt(&motbl[index]);
2310 vfs_copyopt(&imo->mo_list[i], &motbl[index]);
2312 vfs_freecancelopt(motbl[index].mo_cancel);
2313 motbl[index].mo_cancel = newcanp;
2319 vfs_copyopt(&imo->mo_list[i], &motbl[freeidx++]);
2323 dmo->mo_list = motbl;
2474 mntopt_t *mop, *motbl;
2477 motbl = kmem_zalloc(count * sizeof (mntopt_t), KM_SLEEP);
2481 bcopy(mops->mo_list, motbl, len);
2485 mops->mo_list = motbl;
2486 mop = &motbl[count - 1];