aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2007-08-28 21:46:57 -0400
committerTim Shimmin <tes@chook.melbourne.sgi.com>2007-10-15 21:39:42 -0400
commit2aeaa258c0527026228c43148ec6dffdc56bea1c (patch)
tree1febdf1533ec42a61e90d7a0dedc82c7aa0367af /fs/xfs/linux-2.6
parent1543d79c45a374f934f95ca34d87e2eeeb2039b4 (diff)
[XFS] kill the v_number member in struct bhv_vnode
It's entirely unused except for ignored arguments in the mrlock initialization, so remove it. SGI-PV: 969608 SGI-Modid: xfs-linux-melb:xfs-kern:29499a Signed-off-by: Christoph Hellwig <hch@infradead.org> Signed-off-by: David Chinner <dgc@sgi.com> Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6')
-rw-r--r--fs/xfs/linux-2.6/xfs_vnode.c8
-rw-r--r--fs/xfs/linux-2.6/xfs_vnode.h1
2 files changed, 0 insertions, 9 deletions
diff --git a/fs/xfs/linux-2.6/xfs_vnode.c b/fs/xfs/linux-2.6/xfs_vnode.c
index 9d9464cf8de4..b7ff26780a0c 100644
--- a/fs/xfs/linux-2.6/xfs_vnode.c
+++ b/fs/xfs/linux-2.6/xfs_vnode.c
@@ -31,8 +31,6 @@
31#include "xfs_ag.h" 31#include "xfs_ag.h"
32#include "xfs_mount.h" 32#include "xfs_mount.h"
33 33
34uint64_t vn_generation; /* vnode generation number */
35DEFINE_SPINLOCK(vnumber_lock);
36 34
37/* 35/*
38 * Dedicated vnode inactive/reclaim sync semaphores. 36 * Dedicated vnode inactive/reclaim sync semaphores.
@@ -95,12 +93,6 @@ vn_initialize(
95 XFS_STATS_INC(vn_active); 93 XFS_STATS_INC(vn_active);
96 XFS_STATS_INC(vn_alloc); 94 XFS_STATS_INC(vn_alloc);
97 95
98 spin_lock(&vnumber_lock);
99 if (!++vn_generation) /* v_number shouldn't be zero */
100 vn_generation++;
101 vp->v_number = vn_generation;
102 spin_unlock(&vnumber_lock);
103
104 ASSERT(VN_CACHED(vp) == 0); 96 ASSERT(VN_CACHED(vp) == 0);
105 97
106 return vp; 98 return vp;
diff --git a/fs/xfs/linux-2.6/xfs_vnode.h b/fs/xfs/linux-2.6/xfs_vnode.h
index 2b161361c1a0..a5c14a8d546a 100644
--- a/fs/xfs/linux-2.6/xfs_vnode.h
+++ b/fs/xfs/linux-2.6/xfs_vnode.h
@@ -28,7 +28,6 @@ typedef struct dentry bhv_vname_t;
28typedef __u64 bhv_vnumber_t; 28typedef __u64 bhv_vnumber_t;
29 29
30typedef struct bhv_vnode { 30typedef struct bhv_vnode {
31 bhv_vnumber_t v_number; /* in-core vnode number */
32 struct inode v_inode; /* Linux inode */ 31 struct inode v_inode; /* Linux inode */
33 /* inode MUST be last */ 32 /* inode MUST be last */
34} bhv_vnode_t; 33} bhv_vnode_t;