• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/ntfs/

Lines Matching defs:base_vi

150 static int ntfs_read_locked_attr_inode(struct inode *base_vi, struct inode *vi);
151 static int ntfs_read_locked_index_inode(struct inode *base_vi,
206 * @base_vi: vfs base inode containing the attribute
213 * specified by the vfs inode @base_vi.
227 struct inode *ntfs_attr_iget(struct inode *base_vi, ATTR_TYPE type,
237 na.mft_no = base_vi->i_ino;
242 vi = iget5_locked(base_vi->i_sb, na.mft_no, (test_t)ntfs_test_inode,
251 err = ntfs_read_locked_attr_inode(base_vi, vi);
268 * @base_vi: vfs base inode containing the index related attributes
274 * inode @base_vi.
285 struct inode *ntfs_index_iget(struct inode *base_vi, ntfschar *name,
292 na.mft_no = base_vi->i_ino;
297 vi = iget5_locked(base_vi->i_sb, na.mft_no, (test_t)ntfs_test_inode,
306 err = ntfs_read_locked_index_inode(base_vi, vi);
1180 * @base_vi: base inode
1200 static int ntfs_read_locked_attr_inode(struct inode *base_vi, struct inode *vi)
1214 base_ni = NTFS_I(base_vi);
1217 vi->i_version = base_vi->i_version;
1218 vi->i_uid = base_vi->i_uid;
1219 vi->i_gid = base_vi->i_gid;
1220 vi->i_nlink = base_vi->i_nlink;
1221 vi->i_mtime = base_vi->i_mtime;
1222 vi->i_ctime = base_vi->i_ctime;
1223 vi->i_atime = base_vi->i_atime;
1227 vi->i_mode = base_vi->i_mode & ~S_IFMT;
1407 igrab(base_vi);
1428 base_vi->i_ino);
1437 * @base_vi: base inode
1468 static int ntfs_read_locked_index_inode(struct inode *base_vi, struct inode *vi)
1484 base_ni = NTFS_I(base_vi);
1486 vi->i_version = base_vi->i_version;
1487 vi->i_uid = base_vi->i_uid;
1488 vi->i_gid = base_vi->i_gid;
1489 vi->i_nlink = base_vi->i_nlink;
1490 vi->i_mtime = base_vi->i_mtime;
1491 vi->i_ctime = base_vi->i_ctime;
1492 vi->i_atime = base_vi->i_atime;
1495 vi->i_mode = base_vi->i_mode & ~S_IFMT;
1661 bvi = ntfs_attr_iget(base_vi, AT_BITMAP, ni->name, ni->name_len);
1693 igrab(base_vi);