aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_vnode.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_vnode.c')
-rw-r--r--fs/xfs/linux-2.6/xfs_vnode.c8
1 files changed, 0 insertions, 8 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;