blob: ada24baf88de47dd6b8c150191ab6f2408589810 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020uint64_t vn_generation; /* vnode generation number */
21DEFINE_SPINLOCK(vnumber_lock);
22
23/*
24 * Dedicated vnode inactive/reclaim sync semaphores.
25 * Prime number of hash buckets since address is used as the key.
26 */
27#define NVSYNC 37
28#define vptosync(v) (&vsync[((unsigned long)v) % NVSYNC])
David Chinner7989cb82007-02-10 18:34:56 +110029static wait_queue_head_t vsync[NVSYNC];
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031void
32vn_init(void)
33{
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100034 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100036 for (i = 0; i < NVSYNC; i++)
37 init_waitqueue_head(&vsync[i]);
38}
39
40void
41vn_iowait(
Nathan Scott67fcaa72006-06-09 17:00:52 +100042 bhv_vnode_t *vp)
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100043{
44 wait_queue_head_t *wq = vptosync(vp);
45
46 wait_event(*wq, (atomic_read(&vp->v_iocount) == 0));
47}
48
49void
50vn_iowake(
Nathan Scott67fcaa72006-06-09 17:00:52 +100051 bhv_vnode_t *vp)
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100052{
53 if (atomic_dec_and_test(&vp->v_iocount))
54 wake_up(vptosync(vp));
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
Nathan Scott7d04a332006-06-09 14:58:38 +100057/*
58 * Volume managers supporting multiple paths can send back ENODEV when the
59 * final path disappears. In this case continuing to fill the page cache
60 * with dirty data which cannot be written out is evil, so prevent that.
61 */
62void
63vn_ioerror(
Nathan Scott67fcaa72006-06-09 17:00:52 +100064 bhv_vnode_t *vp,
Nathan Scott7d04a332006-06-09 14:58:38 +100065 int error,
66 char *f,
67 int l)
68{
69 if (unlikely(error == -ENODEV))
Nathan Scottb83bd132006-06-09 16:48:30 +100070 bhv_vfs_force_shutdown(vp->v_vfsp, SHUTDOWN_DEVICE_REQ, f, l);
Nathan Scott7d04a332006-06-09 14:58:38 +100071}
72
Nathan Scott67fcaa72006-06-09 17:00:52 +100073bhv_vnode_t *
Linus Torvalds1da177e2005-04-16 15:20:36 -070074vn_initialize(
75 struct inode *inode)
76{
Nathan Scott67fcaa72006-06-09 17:00:52 +100077 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 XFS_STATS_INC(vn_active);
80 XFS_STATS_INC(vn_alloc);
81
82 vp->v_flag = VMODIFIED;
83 spinlock_init(&vp->v_lock, "v_lock");
84
85 spin_lock(&vnumber_lock);
86 if (!++vn_generation) /* v_number shouldn't be zero */
87 vn_generation++;
88 vp->v_number = vn_generation;
89 spin_unlock(&vnumber_lock);
90
91 ASSERT(VN_CACHED(vp) == 0);
92
93 /* Initialize the first behavior and the behavior chain head. */
94 vn_bhv_head_init(VN_BHV_HEAD(vp), "vnode");
95
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100096 atomic_set(&vp->v_iocount, 0);
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#ifdef XFS_VNODE_TRACE
99 vp->v_trace = ktrace_alloc(VNODE_TRACE_SIZE, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#endif /* XFS_VNODE_TRACE */
101
Nathan Scott220b5282006-03-14 13:33:36 +1100102 vn_trace_exit(vp, __FUNCTION__, (inst_t *)__return_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return vp;
104}
105
106/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * Revalidate the Linux inode from the vattr.
108 * Note: i_size _not_ updated; we must hold the inode
109 * semaphore when doing that - callers responsibility.
110 */
111void
112vn_revalidate_core(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000113 bhv_vnode_t *vp,
Nathan Scott8285fb52006-06-09 17:07:12 +1000114 bhv_vattr_t *vap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Nathan Scottec86dc02006-03-17 17:25:36 +1100116 struct inode *inode = vn_to_inode(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000118 inode->i_mode = vap->va_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 inode->i_nlink = vap->va_nlink;
120 inode->i_uid = vap->va_uid;
121 inode->i_gid = vap->va_gid;
122 inode->i_blocks = vap->va_nblocks;
123 inode->i_mtime = vap->va_mtime;
124 inode->i_ctime = vap->va_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (vap->va_xflags & XFS_XFLAG_IMMUTABLE)
126 inode->i_flags |= S_IMMUTABLE;
127 else
128 inode->i_flags &= ~S_IMMUTABLE;
129 if (vap->va_xflags & XFS_XFLAG_APPEND)
130 inode->i_flags |= S_APPEND;
131 else
132 inode->i_flags &= ~S_APPEND;
133 if (vap->va_xflags & XFS_XFLAG_SYNC)
134 inode->i_flags |= S_SYNC;
135 else
136 inode->i_flags &= ~S_SYNC;
137 if (vap->va_xflags & XFS_XFLAG_NOATIME)
138 inode->i_flags |= S_NOATIME;
139 else
140 inode->i_flags &= ~S_NOATIME;
141}
142
143/*
144 * Revalidate the Linux inode from the vnode.
145 */
146int
Nathan Scott220b5282006-03-14 13:33:36 +1100147__vn_revalidate(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000148 bhv_vnode_t *vp,
Nathan Scott8285fb52006-06-09 17:07:12 +1000149 bhv_vattr_t *vattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 int error;
152
Nathan Scott220b5282006-03-14 13:33:36 +1100153 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
154 vattr->va_mask = XFS_AT_STAT | XFS_AT_XFLAGS;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000155 error = bhv_vop_getattr(vp, vattr, 0, NULL);
Nathan Scott220b5282006-03-14 13:33:36 +1100156 if (likely(!error)) {
157 vn_revalidate_core(vp, vattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 VUNMODIFY(vp);
159 }
160 return -error;
161}
162
Nathan Scott220b5282006-03-14 13:33:36 +1100163int
164vn_revalidate(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000165 bhv_vnode_t *vp)
Nathan Scott220b5282006-03-14 13:33:36 +1100166{
Nathan Scott8285fb52006-06-09 17:07:12 +1000167 bhv_vattr_t vattr;
Nathan Scott220b5282006-03-14 13:33:36 +1100168
169 return __vn_revalidate(vp, &vattr);
170}
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 * Add a reference to a referenced vnode.
174 */
Nathan Scott67fcaa72006-06-09 17:00:52 +1000175bhv_vnode_t *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176vn_hold(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000177 bhv_vnode_t *vp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 struct inode *inode;
180
181 XFS_STATS_INC(vn_hold);
182
183 VN_LOCK(vp);
Nathan Scottec86dc02006-03-17 17:25:36 +1100184 inode = igrab(vn_to_inode(vp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 ASSERT(inode);
186 VN_UNLOCK(vp, 0);
187
188 return vp;
189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#ifdef XFS_VNODE_TRACE
192
193#define KTRACE_ENTER(vp, vk, s, line, ra) \
194 ktrace_enter( (vp)->v_trace, \
195/* 0 */ (void *)(__psint_t)(vk), \
196/* 1 */ (void *)(s), \
197/* 2 */ (void *)(__psint_t) line, \
Christoph Hellwig02de1f02005-06-21 15:33:48 +1000198/* 3 */ (void *)(__psint_t)(vn_count(vp)), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/* 4 */ (void *)(ra), \
200/* 5 */ (void *)(__psunsigned_t)(vp)->v_flag, \
201/* 6 */ (void *)(__psint_t)current_cpu(), \
202/* 7 */ (void *)(__psint_t)current_pid(), \
203/* 8 */ (void *)__return_address, \
Christoph Hellwig02de1f02005-06-21 15:33:48 +1000204/* 9 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206/*
207 * Vnode tracing code.
208 */
209void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000210vn_trace_entry(bhv_vnode_t *vp, const char *func, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 KTRACE_ENTER(vp, VNODE_KTRACE_ENTRY, func, 0, ra);
213}
214
215void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000216vn_trace_exit(bhv_vnode_t *vp, const char *func, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 KTRACE_ENTER(vp, VNODE_KTRACE_EXIT, func, 0, ra);
219}
220
221void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000222vn_trace_hold(bhv_vnode_t *vp, char *file, int line, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 KTRACE_ENTER(vp, VNODE_KTRACE_HOLD, file, line, ra);
225}
226
227void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000228vn_trace_ref(bhv_vnode_t *vp, char *file, int line, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 KTRACE_ENTER(vp, VNODE_KTRACE_REF, file, line, ra);
231}
232
233void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000234vn_trace_rele(bhv_vnode_t *vp, char *file, int line, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 KTRACE_ENTER(vp, VNODE_KTRACE_RELE, file, line, ra);
237}
238#endif /* XFS_VNODE_TRACE */