[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>
This commit is contained in:

committed by
Tim Shimmin

parent
1543d79c45
commit
2aeaa258c0
@@ -31,8 +31,6 @@
|
||||
#include "xfs_ag.h"
|
||||
#include "xfs_mount.h"
|
||||
|
||||
uint64_t vn_generation; /* vnode generation number */
|
||||
DEFINE_SPINLOCK(vnumber_lock);
|
||||
|
||||
/*
|
||||
* Dedicated vnode inactive/reclaim sync semaphores.
|
||||
@@ -95,12 +93,6 @@ vn_initialize(
|
||||
XFS_STATS_INC(vn_active);
|
||||
XFS_STATS_INC(vn_alloc);
|
||||
|
||||
spin_lock(&vnumber_lock);
|
||||
if (!++vn_generation) /* v_number shouldn't be zero */
|
||||
vn_generation++;
|
||||
vp->v_number = vn_generation;
|
||||
spin_unlock(&vnumber_lock);
|
||||
|
||||
ASSERT(VN_CACHED(vp) == 0);
|
||||
|
||||
return vp;
|
||||
|
@@ -28,7 +28,6 @@ typedef struct dentry bhv_vname_t;
|
||||
typedef __u64 bhv_vnumber_t;
|
||||
|
||||
typedef struct bhv_vnode {
|
||||
bhv_vnumber_t v_number; /* in-core vnode number */
|
||||
struct inode v_inode; /* Linux inode */
|
||||
/* inode MUST be last */
|
||||
} bhv_vnode_t;
|
||||
|
Reference in New Issue
Block a user