Lines Matching refs:sinfo
237 struct fat_slot_info sinfo; in vfat_find_form() local
238 int err = fat_scan(dir, name, &sinfo); in vfat_find_form()
241 brelse(sinfo.bh); in vfat_find_form()
657 struct fat_slot_info *sinfo) in vfat_add_entry() argument
676 err = fat_add_entries(dir, slots, nr_slots, sinfo); in vfat_add_entry()
692 struct fat_slot_info *sinfo) in vfat_find() argument
697 return fat_search_long(dir, qname->name, len, sinfo); in vfat_find()
704 struct fat_slot_info sinfo; in vfat_lookup() local
711 err = vfat_find(dir, &dentry->d_name, &sinfo); in vfat_lookup()
720 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos); in vfat_lookup()
721 brelse(sinfo.bh); in vfat_lookup()
763 struct fat_slot_info sinfo; in vfat_create() local
770 err = vfat_add_entry(dir, &dentry->d_name, 0, 0, &ts, &sinfo); in vfat_create()
775 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos); in vfat_create()
776 brelse(sinfo.bh); in vfat_create()
795 struct fat_slot_info sinfo; in vfat_rmdir() local
803 err = vfat_find(dir, &dentry->d_name, &sinfo); in vfat_rmdir()
807 err = fat_remove_entries(dir, &sinfo); /* and releases bh */ in vfat_rmdir()
826 struct fat_slot_info sinfo; in vfat_unlink() local
831 err = vfat_find(dir, &dentry->d_name, &sinfo); in vfat_unlink()
835 err = fat_remove_entries(dir, &sinfo); /* and releases bh */ in vfat_unlink()
852 struct fat_slot_info sinfo; in vfat_mkdir() local
864 err = vfat_add_entry(dir, &dentry->d_name, 1, cluster, &ts, &sinfo); in vfat_mkdir()
870 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos); in vfat_mkdir()
871 brelse(sinfo.bh); in vfat_mkdir()
901 struct fat_slot_info old_sinfo, sinfo; in vfat_rename() local
910 old_sinfo.bh = sinfo.bh = dotdot_bh = NULL; in vfat_rename()
938 &ts, &sinfo); in vfat_rename()
941 new_i_pos = sinfo.i_pos; in vfat_rename()
985 brelse(sinfo.bh); in vfat_rename()
1013 int err2 = fat_remove_entries(new_dir, &sinfo); in vfat_rename()
1016 sinfo.bh = NULL; in vfat_rename()
1021 __func__, sinfo.i_pos); in vfat_rename()