Home | History | Annotate | Download | only in pstat

Lines Matching defs:mt

642 	struct mtab *mt;
645 for (mt = mhead; mt != NULL; mt = mt->next)
646 if (maddr == mt->maddr)
647 return (&mt->mount);
649 if ((mt = malloc(sizeof(struct mtab))) == NULL)
651 mt->mount = mb;
652 mt->maddr = maddr;
653 mt->next = mhead;
654 mhead = mt;
655 return (&mt->mount);