tag | line | file | source code |
vf | 769 | fs/vfat/namei.c | struct vfat_find_info *vf = (struct vfat_find_info *) buf; |
vf | 775 | fs/vfat/namei.c | vf->name, vf->len, name, name_len); |
vf | 778 | fs/vfat/namei.c | if (vf->len != name_len) { |
vf | 782 | fs/vfat/namei.c | s1 = name; s2 = vf->name; |
vf | 784 | fs/vfat/namei.c | if (vf->new_filename && !vf->posix) { |
vf | 793 | fs/vfat/namei.c | vf->found = 1; |
vf | 794 | fs/vfat/namei.c | vf->is_long = is_long; |
vf | 795 | fs/vfat/namei.c | vf->offset = (offset == 2) ? 0 : offset; |
vf | 796 | fs/vfat/namei.c | vf->short_offset = (short_offset == 2) ? 0 : short_offset; |
vf | 797 | fs/vfat/namei.c | vf->long_slots = long_slots; |
vf | 798 | fs/vfat/namei.c | vf->ino = ino; |
vf | 806 | fs/vfat/namei.c | struct vfat_find_info vf; |
vf | 819 | fs/vfat/namei.c | vf.name = name; |
vf | 820 | fs/vfat/namei.c | vf.len = len; |
vf | 821 | fs/vfat/namei.c | vf.new_filename = new_filename; |
vf | 822 | fs/vfat/namei.c | vf.found = 0; |
vf | 823 | fs/vfat/namei.c | vf.posix = MSDOS_SB(sb)->options.posixfs; |
vf | 824 | fs/vfat/namei.c | res = fat_readdirx(dir,&fil,(void *)&vf,vfat_readdir_cb,NULL,1,find_long,0); |
vf | 827 | fs/vfat/namei.c | if (vf.found) { |
vf | 831 | fs/vfat/namei.c | sinfo_out->longname_offset = vf.offset; |
vf | 832 | fs/vfat/namei.c | sinfo_out->shortname_offset = vf.short_offset; |
vf | 833 | fs/vfat/namei.c | sinfo_out->is_long = vf.is_long; |
vf | 834 | fs/vfat/namei.c | sinfo_out->long_slots = vf.long_slots; |
vf | 835 | fs/vfat/namei.c | sinfo_out->total_slots = vf.long_slots + 1; |
vf | 836 | fs/vfat/namei.c | sinfo_out->ino = vf.ino; |
vf | 843 | fs/vfat/namei.c | if (!vf.found && !new_filename) |