Home | History | Annotate | Download | only in fsck_lfs

Lines Matching defs:vgr

105 	struct vget_reg *vgr;
107 vgr = emalloc(sizeof(*vgr));
108 vgr->vgr_fs = fs;
109 vgr->vgr_func = func;
110 LIST_INSERT_HEAD(&vgrlist, vgr, vgr_list);
116 struct vget_reg *vgr;
118 LIST_FOREACH(vgr, &vgrlist, vgr_list) {
119 if (vgr->vgr_fs == fs)
120 return vgr->vgr_func(fs, ino);