Home
last modified time | relevance | path

Searched refs:mountlist (Results 1 – 7 of 7) sorted by relevance

/dragonfly/usr.bin/showmount/
HDshowmount.c64 struct mountlist { struct
65 struct mountlist *ml_left; argument
66 struct mountlist *ml_right; argument
82 static struct mountlist *mntdump; argument
86 static void print_dump(struct mountlist *);
88 static int xdr_mntdump(XDR *, struct mountlist **);
247 xdr_mntdump(XDR *xdrsp, struct mountlist **mlp) in xdr_mntdump()
249 struct mountlist *mp; in xdr_mntdump()
250 struct mountlist *tp; in xdr_mntdump()
251 struct mountlist **otp = NULL; in xdr_mntdump()
[all …]
/dragonfly/include/rpcsvc/
HDmount.x111 typedef struct mountbody *mountlist; typedef
115 mountlist ml_next;
169 mountlist
227 mountlist
/dragonfly/sys/kern/
HDvfs_mount.c143 struct mntlist mountlist = TAILQ_HEAD_INITIALIZER(mountlist); variable
596 TAILQ_INSERT_HEAD(&mountlist, mp, mnt_list); in mountlist_insert()
598 TAILQ_INSERT_TAIL(&mountlist, mp, mnt_list); in mountlist_insert()
651 return(TAILQ_FIRST(&mountlist)); in mountlist_boot_getfirst()
677 TAILQ_REMOVE(&mountlist, mp, mnt_list); in mountlist_remove()
699 TAILQ_FOREACH(lmp, &mountlist, mnt_list) { in mountlist_exists()
754 info.msi_node = TAILQ_FIRST(&mountlist); in mountlist_scan()
782 info.msi_node = TAILQ_LAST(&mountlist, mntlist); in mountlist_scan()
1241 TAILQ_FOREACH(mp, &mountlist, mnt_list) { in mount_get_by_nc()
/dragonfly/test/debug/
HDREADME14 vnodeinfo.c - Run through the mountlist and scan and display
/dragonfly/usr.sbin/pstat/
HDpstat.c662 struct mntlist mountlist; in kinfo_vnodes() local
676 KGET(NL_MOUNTLIST, mountlist); in kinfo_vnodes()
677 for (num = 0, mp = TAILQ_FIRST(&mountlist); ; mp = mp_next) { in kinfo_vnodes()
693 if (mp == TAILQ_LAST(&mountlist, mntlist)) in kinfo_vnodes()
/dragonfly/sbin/mountd/
HDmountd.c82 struct mountlist { struct
83 struct mountlist *ml_next; argument
201 struct mountlist *mlhead;
982 struct mountlist *mlp; in xdr_mlist()
2378 struct mountlist *mlp, **mlpp; in get_mountlist()
2398 mlp = (struct mountlist *)malloc(sizeof (*mlp)); in get_mountlist()
2449 struct mountlist *mlp, **mlpp; in del_mlist()
2450 struct mountlist *mlp2; in del_mlist()
2485 struct mountlist *mlp, **mlpp; in add_mlist()
2496 mlp = (struct mountlist *)malloc(sizeof (*mlp)); in add_mlist()
/dragonfly/share/misc/
HDgdbinit27 set $mnt = (mountlist->tqh_first)