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