blob: bde8d2e7f559d5caf087c97c44b4c296b9874209 [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
Christoph Hellwigb677c212007-08-29 11:46:28 +100023/*
24 * And this gunk is needed for xfs_mount.h"
25 */
26#include "xfs_log.h"
27#include "xfs_trans.h"
28#include "xfs_sb.h"
29#include "xfs_dmapi.h"
30#include "xfs_inum.h"
31#include "xfs_ag.h"
32#include "xfs_mount.h"
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034uint64_t vn_generation; /* vnode generation number */
35DEFINE_SPINLOCK(vnumber_lock);
36
37/*
38 * Dedicated vnode inactive/reclaim sync semaphores.
39 * Prime number of hash buckets since address is used as the key.
40 */
41#define NVSYNC 37
42#define vptosync(v) (&vsync[((unsigned long)v) % NVSYNC])
David Chinner7989cb82007-02-10 18:34:56 +110043static wait_queue_head_t vsync[NVSYNC];
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045void
46vn_init(void)
47{
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100048 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100050 for (i = 0; i < NVSYNC; i++)
51 init_waitqueue_head(&vsync[i]);
52}
53
54void
55vn_iowait(
Christoph Hellwigb677c212007-08-29 11:46:28 +100056 xfs_inode_t *ip)
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100057{
Christoph Hellwigb677c212007-08-29 11:46:28 +100058 wait_queue_head_t *wq = vptosync(ip);
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100059
Christoph Hellwigb677c212007-08-29 11:46:28 +100060 wait_event(*wq, (atomic_read(&ip->i_iocount) == 0));
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100061}
62
63void
64vn_iowake(
Christoph Hellwigb677c212007-08-29 11:46:28 +100065 xfs_inode_t *ip)
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100066{
Christoph Hellwigb677c212007-08-29 11:46:28 +100067 if (atomic_dec_and_test(&ip->i_iocount))
68 wake_up(vptosync(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
Nathan Scott7d04a332006-06-09 14:58:38 +100071/*
72 * Volume managers supporting multiple paths can send back ENODEV when the
73 * final path disappears. In this case continuing to fill the page cache
74 * with dirty data which cannot be written out is evil, so prevent that.
75 */
76void
77vn_ioerror(
Christoph Hellwigb677c212007-08-29 11:46:28 +100078 xfs_inode_t *ip,
Nathan Scott7d04a332006-06-09 14:58:38 +100079 int error,
80 char *f,
81 int l)
82{
Christoph Hellwigb677c212007-08-29 11:46:28 +100083 bhv_vfs_t *vfsp = XFS_MTOVFS(ip->i_mount);
Christoph Hellwig2f6f7b32007-08-29 11:44:18 +100084
Nathan Scott7d04a332006-06-09 14:58:38 +100085 if (unlikely(error == -ENODEV))
Christoph Hellwig2f6f7b32007-08-29 11:44:18 +100086 bhv_vfs_force_shutdown(vfsp, SHUTDOWN_DEVICE_REQ, f, l);
Nathan Scott7d04a332006-06-09 14:58:38 +100087}
88
Nathan Scott67fcaa72006-06-09 17:00:52 +100089bhv_vnode_t *
Linus Torvalds1da177e2005-04-16 15:20:36 -070090vn_initialize(
91 struct inode *inode)
92{
Nathan Scott67fcaa72006-06-09 17:00:52 +100093 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 XFS_STATS_INC(vn_active);
96 XFS_STATS_INC(vn_alloc);
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 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);
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#ifdef XFS_VNODE_TRACE
107 vp->v_trace = ktrace_alloc(VNODE_TRACE_SIZE, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#endif /* XFS_VNODE_TRACE */
109
Nathan Scott220b5282006-03-14 13:33:36 +1100110 vn_trace_exit(vp, __FUNCTION__, (inst_t *)__return_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return vp;
112}
113
114/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * Revalidate the Linux inode from the vattr.
116 * Note: i_size _not_ updated; we must hold the inode
117 * semaphore when doing that - callers responsibility.
118 */
119void
120vn_revalidate_core(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000121 bhv_vnode_t *vp,
Nathan Scott8285fb52006-06-09 17:07:12 +1000122 bhv_vattr_t *vap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Nathan Scottec86dc02006-03-17 17:25:36 +1100124 struct inode *inode = vn_to_inode(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000126 inode->i_mode = vap->va_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 inode->i_nlink = vap->va_nlink;
128 inode->i_uid = vap->va_uid;
129 inode->i_gid = vap->va_gid;
130 inode->i_blocks = vap->va_nblocks;
131 inode->i_mtime = vap->va_mtime;
132 inode->i_ctime = vap->va_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (vap->va_xflags & XFS_XFLAG_IMMUTABLE)
134 inode->i_flags |= S_IMMUTABLE;
135 else
136 inode->i_flags &= ~S_IMMUTABLE;
137 if (vap->va_xflags & XFS_XFLAG_APPEND)
138 inode->i_flags |= S_APPEND;
139 else
140 inode->i_flags &= ~S_APPEND;
141 if (vap->va_xflags & XFS_XFLAG_SYNC)
142 inode->i_flags |= S_SYNC;
143 else
144 inode->i_flags &= ~S_SYNC;
145 if (vap->va_xflags & XFS_XFLAG_NOATIME)
146 inode->i_flags |= S_NOATIME;
147 else
148 inode->i_flags &= ~S_NOATIME;
149}
150
151/*
152 * Revalidate the Linux inode from the vnode.
153 */
154int
Nathan Scott220b5282006-03-14 13:33:36 +1100155__vn_revalidate(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000156 bhv_vnode_t *vp,
Nathan Scott8285fb52006-06-09 17:07:12 +1000157 bhv_vattr_t *vattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 int error;
160
Nathan Scott220b5282006-03-14 13:33:36 +1100161 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
162 vattr->va_mask = XFS_AT_STAT | XFS_AT_XFLAGS;
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000163 error = xfs_getattr(xfs_vtoi(vp), vattr, 0);
Nathan Scott220b5282006-03-14 13:33:36 +1100164 if (likely(!error)) {
165 vn_revalidate_core(vp, vattr);
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000166 xfs_iflags_clear(xfs_vtoi(vp), XFS_IMODIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
168 return -error;
169}
170
Nathan Scott220b5282006-03-14 13:33:36 +1100171int
172vn_revalidate(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000173 bhv_vnode_t *vp)
Nathan Scott220b5282006-03-14 13:33:36 +1100174{
Nathan Scott8285fb52006-06-09 17:07:12 +1000175 bhv_vattr_t vattr;
Nathan Scott220b5282006-03-14 13:33:36 +1100176
177 return __vn_revalidate(vp, &vattr);
178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * Add a reference to a referenced vnode.
182 */
Nathan Scott67fcaa72006-06-09 17:00:52 +1000183bhv_vnode_t *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184vn_hold(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000185 bhv_vnode_t *vp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 struct inode *inode;
188
189 XFS_STATS_INC(vn_hold);
190
Nathan Scottec86dc02006-03-17 17:25:36 +1100191 inode = igrab(vn_to_inode(vp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 ASSERT(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 return vp;
195}
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#ifdef XFS_VNODE_TRACE
198
199#define KTRACE_ENTER(vp, vk, s, line, ra) \
200 ktrace_enter( (vp)->v_trace, \
201/* 0 */ (void *)(__psint_t)(vk), \
202/* 1 */ (void *)(s), \
203/* 2 */ (void *)(__psint_t) line, \
Christoph Hellwig02de1f02005-06-21 15:33:48 +1000204/* 3 */ (void *)(__psint_t)(vn_count(vp)), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/* 4 */ (void *)(ra), \
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000206/* 5 */ NULL, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/* 6 */ (void *)(__psint_t)current_cpu(), \
208/* 7 */ (void *)(__psint_t)current_pid(), \
209/* 8 */ (void *)__return_address, \
Christoph Hellwig02de1f02005-06-21 15:33:48 +1000210/* 9 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212/*
213 * Vnode tracing code.
214 */
215void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000216vn_trace_entry(bhv_vnode_t *vp, const char *func, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 KTRACE_ENTER(vp, VNODE_KTRACE_ENTRY, func, 0, ra);
219}
220
221void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000222vn_trace_exit(bhv_vnode_t *vp, const char *func, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 KTRACE_ENTER(vp, VNODE_KTRACE_EXIT, func, 0, ra);
225}
226
227void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000228vn_trace_hold(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_HOLD, file, line, ra);
231}
232
233void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000234vn_trace_ref(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_REF, file, line, ra);
237}
238
239void
Nathan Scott67fcaa72006-06-09 17:00:52 +1000240vn_trace_rele(bhv_vnode_t *vp, char *file, int line, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 KTRACE_ENTER(vp, VNODE_KTRACE_RELE, file, line, ra);
243}
244#endif /* XFS_VNODE_TRACE */