diff options
| author | Christoph Hellwig <hch@infradead.org> | 2008-08-13 16:22:09 +1000 | 
|---|---|---|
| committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-08-13 16:22:09 +1000 | 
| commit | df80c933f9eb01a7af3812bbe437e38205386304 (patch) | |
| tree | ea20515f5f77558a63de202dcdb36fd96b91ffbd /fs/xfs/xfs_itable.c | |
| parent | e1cccd917be7364f81b5dc4e33ee3a6e0db21a99 (diff) | |
| download | olio-linux-3.10-df80c933f9eb01a7af3812bbe437e38205386304.tar.xz olio-linux-3.10-df80c933f9eb01a7af3812bbe437e38205386304.zip  | |
[XFS] remove some easy bhv_vnode_t instances
In various places we can just move a VFS_I call into the argument list of
called functions/macros instead of having a local bhv_vnode_t.
SGI-PV: 981498
SGI-Modid: xfs-linux-melb:xfs-kern:31776a
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_itable.c')
| -rw-r--r-- | fs/xfs/xfs_itable.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/xfs/xfs_itable.c b/fs/xfs/xfs_itable.c index 4feda541e71..cf6754a3c5b 100644 --- a/fs/xfs/xfs_itable.c +++ b/fs/xfs/xfs_itable.c @@ -59,7 +59,6 @@ xfs_bulkstat_one_iget(  {  	xfs_icdinode_t	*dic;	/* dinode core info pointer */  	xfs_inode_t	*ip;		/* incore inode pointer */ -	bhv_vnode_t	*vp;  	int		error;  	error = xfs_iget(mp, NULL, ino, @@ -72,7 +71,6 @@ xfs_bulkstat_one_iget(  	ASSERT(ip != NULL);  	ASSERT(ip->i_blkno != (xfs_daddr_t)0); -	vp = VFS_I(ip);  	dic = &ip->i_d;  	/* xfs_iget returns the following without needing @@ -85,7 +83,7 @@ xfs_bulkstat_one_iget(  	buf->bs_uid = dic->di_uid;  	buf->bs_gid = dic->di_gid;  	buf->bs_size = dic->di_size; -	vn_atime_to_bstime(vp, &buf->bs_atime); +	vn_atime_to_bstime(VFS_I(ip), &buf->bs_atime);  	buf->bs_mtime.tv_sec = dic->di_mtime.t_sec;  	buf->bs_mtime.tv_nsec = dic->di_mtime.t_nsec;  	buf->bs_ctime.tv_sec = dic->di_ctime.t_sec;  |