Lines Matching refs:sinfo
238 struct fat_slot_info sinfo; in vfat_find_form() local
239 int err = fat_scan(dir, name, &sinfo); in vfat_find_form()
242 brelse(sinfo.bh); in vfat_find_form()
658 struct fat_slot_info *sinfo) in vfat_add_entry() argument
677 err = fat_add_entries(dir, slots, nr_slots, sinfo); in vfat_add_entry()
693 struct fat_slot_info *sinfo) in vfat_find() argument
698 return fat_search_long(dir, qname->name, len, sinfo); in vfat_find()
705 struct fat_slot_info sinfo; in vfat_lookup() local
712 err = vfat_find(dir, &dentry->d_name, &sinfo); in vfat_lookup()
721 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos); in vfat_lookup()
722 brelse(sinfo.bh); in vfat_lookup()
764 struct fat_slot_info sinfo; in vfat_create() local
771 err = vfat_add_entry(dir, &dentry->d_name, 0, 0, &ts, &sinfo); in vfat_create()
776 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos); in vfat_create()
777 brelse(sinfo.bh); in vfat_create()
796 struct fat_slot_info sinfo; in vfat_rmdir() local
804 err = vfat_find(dir, &dentry->d_name, &sinfo); in vfat_rmdir()
808 err = fat_remove_entries(dir, &sinfo); /* and releases bh */ in vfat_rmdir()
827 struct fat_slot_info sinfo; in vfat_unlink() local
832 err = vfat_find(dir, &dentry->d_name, &sinfo); in vfat_unlink()
836 err = fat_remove_entries(dir, &sinfo); /* and releases bh */ in vfat_unlink()
854 struct fat_slot_info sinfo; in vfat_mkdir() local
866 err = vfat_add_entry(dir, &dentry->d_name, 1, cluster, &ts, &sinfo); in vfat_mkdir()
872 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos); in vfat_mkdir()
873 brelse(sinfo.bh); in vfat_mkdir()
903 struct fat_slot_info old_sinfo, sinfo; in vfat_rename() local
912 old_sinfo.bh = sinfo.bh = dotdot_bh = NULL; in vfat_rename()
940 &ts, &sinfo); in vfat_rename()
943 new_i_pos = sinfo.i_pos; in vfat_rename()
987 brelse(sinfo.bh); in vfat_rename()
1015 int err2 = fat_remove_entries(new_dir, &sinfo); in vfat_rename()
1018 sinfo.bh = NULL; in vfat_rename()
1023 __func__, sinfo.i_pos); in vfat_rename()