2 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 uint64_t vn_generation; /* vnode generation number */
21 DEFINE_SPINLOCK(vnumber_lock);
24 * Dedicated vnode inactive/reclaim sync semaphores.
25 * Prime number of hash buckets since address is used as the key.
28 #define vptosync(v) (&vsync[((unsigned long)v) % NVSYNC])
29 STATIC wait_queue_head_t vsync[NVSYNC];
36 for (i = 0; i < NVSYNC; i++)
37 init_waitqueue_head(&vsync[i]);
44 wait_queue_head_t *wq = vptosync(vp);
46 wait_event(*wq, (atomic_read(&vp->v_iocount) == 0));
53 if (atomic_dec_and_test(&vp->v_iocount))
54 wake_up(vptosync(vp));
61 struct vnode *vp = vn_from_inode(inode);
63 XFS_STATS_INC(vn_active);
64 XFS_STATS_INC(vn_alloc);
66 vp->v_flag = VMODIFIED;
67 spinlock_init(&vp->v_lock, "v_lock");
69 spin_lock(&vnumber_lock);
70 if (!++vn_generation) /* v_number shouldn't be zero */
72 vp->v_number = vn_generation;
73 spin_unlock(&vnumber_lock);
75 ASSERT(VN_CACHED(vp) == 0);
77 /* Initialize the first behavior and the behavior chain head. */
78 vn_bhv_head_init(VN_BHV_HEAD(vp), "vnode");
80 atomic_set(&vp->v_iocount, 0);
82 #ifdef XFS_VNODE_TRACE
83 vp->v_trace = ktrace_alloc(VNODE_TRACE_SIZE, KM_SLEEP);
84 #endif /* XFS_VNODE_TRACE */
86 vn_trace_exit(vp, __FUNCTION__, (inst_t *)__return_address);
91 * Revalidate the Linux inode from the vattr.
92 * Note: i_size _not_ updated; we must hold the inode
93 * semaphore when doing that - callers responsibility.
100 struct inode *inode = vn_to_inode(vp);
102 inode->i_mode = vap->va_mode;
103 inode->i_nlink = vap->va_nlink;
104 inode->i_uid = vap->va_uid;
105 inode->i_gid = vap->va_gid;
106 inode->i_blocks = vap->va_nblocks;
107 inode->i_mtime = vap->va_mtime;
108 inode->i_ctime = vap->va_ctime;
109 inode->i_blksize = vap->va_blocksize;
110 if (vap->va_xflags & XFS_XFLAG_IMMUTABLE)
111 inode->i_flags |= S_IMMUTABLE;
113 inode->i_flags &= ~S_IMMUTABLE;
114 if (vap->va_xflags & XFS_XFLAG_APPEND)
115 inode->i_flags |= S_APPEND;
117 inode->i_flags &= ~S_APPEND;
118 if (vap->va_xflags & XFS_XFLAG_SYNC)
119 inode->i_flags |= S_SYNC;
121 inode->i_flags &= ~S_SYNC;
122 if (vap->va_xflags & XFS_XFLAG_NOATIME)
123 inode->i_flags |= S_NOATIME;
125 inode->i_flags &= ~S_NOATIME;
129 * Revalidate the Linux inode from the vnode.
138 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
139 vattr->va_mask = XFS_AT_STAT | XFS_AT_XFLAGS;
140 VOP_GETATTR(vp, vattr, 0, NULL, error);
141 if (likely(!error)) {
142 vn_revalidate_core(vp, vattr);
154 return __vn_revalidate(vp, &vattr);
158 * Add a reference to a referenced vnode.
166 XFS_STATS_INC(vn_hold);
169 inode = igrab(vn_to_inode(vp));
176 #ifdef XFS_VNODE_TRACE
178 #define KTRACE_ENTER(vp, vk, s, line, ra) \
179 ktrace_enter( (vp)->v_trace, \
180 /* 0 */ (void *)(__psint_t)(vk), \
181 /* 1 */ (void *)(s), \
182 /* 2 */ (void *)(__psint_t) line, \
183 /* 3 */ (void *)(__psint_t)(vn_count(vp)), \
184 /* 4 */ (void *)(ra), \
185 /* 5 */ (void *)(__psunsigned_t)(vp)->v_flag, \
186 /* 6 */ (void *)(__psint_t)current_cpu(), \
187 /* 7 */ (void *)(__psint_t)current_pid(), \
188 /* 8 */ (void *)__return_address, \
189 /* 9 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL)
192 * Vnode tracing code.
195 vn_trace_entry(vnode_t *vp, const char *func, inst_t *ra)
197 KTRACE_ENTER(vp, VNODE_KTRACE_ENTRY, func, 0, ra);
201 vn_trace_exit(vnode_t *vp, const char *func, inst_t *ra)
203 KTRACE_ENTER(vp, VNODE_KTRACE_EXIT, func, 0, ra);
207 vn_trace_hold(vnode_t *vp, char *file, int line, inst_t *ra)
209 KTRACE_ENTER(vp, VNODE_KTRACE_HOLD, file, line, ra);
213 vn_trace_ref(vnode_t *vp, char *file, int line, inst_t *ra)
215 KTRACE_ENTER(vp, VNODE_KTRACE_REF, file, line, ra);
219 vn_trace_rele(vnode_t *vp, char *file, int line, inst_t *ra)
221 KTRACE_ENTER(vp, VNODE_KTRACE_RELE, file, line, ra);
223 #endif /* XFS_VNODE_TRACE */