Lines Matching refs:f_sys_info
49 struct f_sys_info {
52 struct f_sys_info *next;
61 static struct f_sys_info *filesys_info = NULL; //fstab entry list
87 static struct f_sys_info* create_db(struct mntent *f_info)
89 struct f_sys_info *temp = filesys_info;
92 temp->next = xzalloc(sizeof(struct f_sys_info));
94 } else filesys_info = temp = xzalloc(sizeof(struct f_sys_info));
164 static int to_be_ignored(struct f_sys_info *finfo)
188 static void do_fsck(struct f_sys_info *finfo)
303 struct f_sys_info *finfo = filesys_info;
366 struct f_sys_info *finfo;
419 struct f_sys_info *finfo, *temp;