blob: e6c559aee446724cf5e43ca121d74f289e751afe [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"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100019#include "xfs_vnodeops.h"
20#include "xfs_bmap_btree.h"
21#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023uint64_t vn_generation; /* vnode generation number */
24DEFINE_SPINLOCK(vnumber_lock);
25
26/*
27 * Dedicated vnode inactive/reclaim sync semaphores.
28 * Prime number of hash buckets since address is used as the key.
29 */
30#define NVSYNC 37
31#define vptosync(v) (&vsync[((unsigned long)v) % NVSYNC])
David Chinner7989cb82007-02-10 18:34:56 +110032static wait_queue_head_t vsync[NVSYNC];
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034void
35vn_init(void)
36{
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100037 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100039 for (i = 0; i < NVSYNC; i++)
40 init_waitqueue_head(&vsync[i]);
41}
42
43void
44vn_iowait(
Nathan Scott67fcaa72006-06-09 17:00:52 +100045 bhv_vnode_t *vp)
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100046{
47 wait_queue_head_t *wq = vptosync(vp);
48
49 wait_event(*wq, (atomic_read(&vp->v_iocount) == 0));
50}
51
52void
53vn_iowake(
Nathan Scott67fcaa72006-06-09 17:00:52 +100054 bhv_vnode_t *vp)
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100055{
56 if (atomic_dec_and_test(&vp->v_iocount))
57 wake_up(vptosync(vp));
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
Nathan Scott7d04a332006-06-09 14:58:38 +100060/*
61 * Volume managers supporting multiple paths can send back ENODEV when the
62 * final path disappears. In this case continuing to fill the page cache
63 * with dirty data which cannot be written out is evil, so prevent that.
64 */
65void
66vn_ioerror(
Nathan Scott67fcaa72006-06-09 17:00:52 +100067 bhv_vnode_t *vp,
Nathan Scott7d04a332006-06-09 14:58:38 +100068 int error,
69 char *f,
70 int l)
71{
Christoph Hellwig2f6f7b32007-08-29 11:44:18 +100072 bhv_vfs_t *vfsp = vfs_from_sb(vp->v_inode.i_sb);
73
Nathan Scott7d04a332006-06-09 14:58:38 +100074 if (unlikely(error == -ENODEV))
Christoph Hellwig2f6f7b32007-08-29 11:44:18 +100075 bhv_vfs_force_shutdown(vfsp, SHUTDOWN_DEVICE_REQ, f, l);
Nathan Scott7d04a332006-06-09 14:58:38 +100076}
77
Nathan Scott67fcaa72006-06-09 17:00:52 +100078bhv_vnode_t *
Linus Torvalds1da177e2005-04-16 15:20:36 -070079vn_initialize(
80 struct inode *inode)
81{
Nathan Scott67fcaa72006-06-09 17:00:52 +100082 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 XFS_STATS_INC(vn_active);
85 XFS_STATS_INC(vn_alloc);
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 spin_lock(&vnumber_lock);
88 if (!++vn_generation) /* v_number shouldn't be zero */
89 vn_generation++;
90 vp->v_number = vn_generation;
91 spin_unlock(&vnumber_lock);
92
93 ASSERT(VN_CACHED(vp) == 0);
94
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100095 atomic_set(&vp->v_iocount, 0);
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#ifdef XFS_VNODE_TRACE
98 vp->v_trace = ktrace_alloc(VNODE_TRACE_SIZE, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#endif /* XFS_VNODE_TRACE */
100
Nathan Scott220b5282006-03-14 13:33:36 +1100101 vn_trace_exit(vp, __FUNCTION__, (inst_t *)__return_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return vp;
103}
104
105/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * Revalidate the Linux inode from the vattr.
107 * Note: i_size _not_ updated; we must hold the inode
108 * semaphore when doing that - callers responsibility.
109 */
110void
111vn_revalidate_core(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000112 bhv_vnode_t *vp,
Nathan Scott8285fb52006-06-09 17:07:12 +1000113 bhv_vattr_t *vap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Nathan Scottec86dc02006-03-17 17:25:36 +1100115 struct inode *inode = vn_to_inode(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000117 inode->i_mode = vap->va_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 inode->i_nlink = vap->va_nlink;
119 inode->i_uid = vap->va_uid;
120 inode->i_gid = vap->va_gid;
121 inode->i_blocks = vap->va_nblocks;
122 inode->i_mtime = vap->va_mtime;
123 inode->i_ctime = vap->va_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (vap->va_xflags & XFS_XFLAG_IMMUTABLE)
125 inode->i_flags |= S_IMMUTABLE;
126 else
127 inode->i_flags &= ~S_IMMUTABLE;
128 if (vap->va_xflags & XFS_XFLAG_APPEND)
129 inode->i_flags |= S_APPEND;
130 else
131 inode->i_flags &= ~S_APPEND;
132 if (vap->va_xflags & XFS_XFLAG_SYNC)
133 inode->i_flags |= S_SYNC;
134 else
135 inode->i_flags &= ~S_SYNC;
136 if (vap->va_xflags & XFS_XFLAG_NOATIME)
137 inode->i_flags |= S_NOATIME;
138 else
139 inode->i_flags &= ~S_NOATIME;
140}
141
142/*
143 * Revalidate the Linux inode from the vnode.
144 */
145int
Nathan Scott220b5282006-03-14 13:33:36 +1100146__vn_revalidate(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000147 bhv_vnode_t *vp,
Nathan Scott8285fb52006-06-09 17:07:12 +1000148 bhv_vattr_t *vattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 int error;
151
Nathan Scott220b5282006-03-14 13:33:36 +1100152 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
153 vattr->va_mask = XFS_AT_STAT | XFS_AT_XFLAGS;
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000154 error = xfs_getattr(xfs_vtoi(vp), vattr, 0);
Nathan Scott220b5282006-03-14 13:33:36 +1100155 if (likely(!error)) {
156 vn_revalidate_core(vp, vattr);
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000157 xfs_iflags_clear(xfs_vtoi(vp), XFS_IMODIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159 return -error;
160}
161
Nathan Scott220b5282006-03-14 13:33:36 +1100162int
163vn_revalidate(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000164 bhv_vnode_t *vp)
Nathan Scott220b5282006-03-14 13:33:36 +1100165{
Nathan Scott8285fb52006-06-09 17:07:12 +1000166 bhv_vattr_t vattr;
Nathan Scott220b5282006-03-14 13:33:36 +1100167
168 return __vn_revalidate(vp, &vattr);
169}
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 * Add a reference to a referenced vnode.
173 */
Nathan Scott67fcaa72006-06-09 17:00:52 +1000174bhv_vnode_t *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175vn_hold(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000176 bhv_vnode_t *vp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 struct inode *inode;
179
180 XFS_STATS_INC(vn_hold);
181
Nathan Scottec86dc02006-03-17 17:25:36 +1100182 inode = igrab(vn_to_inode(vp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 ASSERT(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 return vp;
186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188#ifdef XFS_VNODE_TRACE
189
190#define KTRACE_ENTER(vp, vk, s, line, ra) \
191 ktrace_enter( (vp)->v_trace, \
192/* 0 */ (void *)(__psint_t)(vk), \
193/* 1 */ (void *)(s), \
194/* 2 */ (void *)(__psint_t) line, \
Christoph Hellwig02de1f02005-06-21 15:33:48 +1000195/* 3 */ (void *)(__psint_t)(vn_count(vp)), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/* 4 */ (void *)(ra), \
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000197/* 5 */ NULL, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/* 6 */ (void *)(__psint_t)current_cpu(), \
199/* 7 */ (void *)(__psint_t)current_pid(), \
200/* 8 */ (void *)__return_address, \
Christoph Hellwig02de1f02005-06-21 15:33:48 +1000201/* 9 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203/*
204 * Vnode tracing code.
205 */
206void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000207vn_trace_entry(bhv_vnode_t *vp, const char *func, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 KTRACE_ENTER(vp, VNODE_KTRACE_ENTRY, func, 0, ra);
210}
211
212void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000213vn_trace_exit(bhv_vnode_t *vp, const char *func, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 KTRACE_ENTER(vp, VNODE_KTRACE_EXIT, func, 0, ra);
216}
217
218void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000219vn_trace_hold(bhv_vnode_t *vp, char *file, int line, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 KTRACE_ENTER(vp, VNODE_KTRACE_HOLD, file, line, ra);
222}
223
224void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000225vn_trace_ref(bhv_vnode_t *vp, char *file, int line, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 KTRACE_ENTER(vp, VNODE_KTRACE_REF, file, line, ra);
228}
229
230void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000231vn_trace_rele(bhv_vnode_t *vp, char *file, int line, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 KTRACE_ENTER(vp, VNODE_KTRACE_RELE, file, line, ra);
234}
235#endif /* XFS_VNODE_TRACE */