cifs: fix another memleak, in cifs_root_iget
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / xfs / xfs_iget.c
blob16b6a3326c92016d31a4091f5d98b35289d0dd19
1 /*
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
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
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_types.h"
21 #include "xfs_acl.h"
22 #include "xfs_bit.h"
23 #include "xfs_log.h"
24 #include "xfs_inum.h"
25 #include "xfs_trans.h"
26 #include "xfs_sb.h"
27 #include "xfs_ag.h"
28 #include "xfs_dir2.h"
29 #include "xfs_dmapi.h"
30 #include "xfs_mount.h"
31 #include "xfs_bmap_btree.h"
32 #include "xfs_alloc_btree.h"
33 #include "xfs_ialloc_btree.h"
34 #include "xfs_dir2_sf.h"
35 #include "xfs_attr_sf.h"
36 #include "xfs_dinode.h"
37 #include "xfs_inode.h"
38 #include "xfs_btree.h"
39 #include "xfs_ialloc.h"
40 #include "xfs_quota.h"
41 #include "xfs_utils.h"
42 #include "xfs_trans_priv.h"
43 #include "xfs_inode_item.h"
44 #include "xfs_bmap.h"
45 #include "xfs_btree_trace.h"
46 #include "xfs_dir2_trace.h"
50 * Allocate and initialise an xfs_inode.
52 STATIC struct xfs_inode *
53 xfs_inode_alloc(
54 struct xfs_mount *mp,
55 xfs_ino_t ino)
57 struct xfs_inode *ip;
60 * if this didn't occur in transactions, we could use
61 * KM_MAYFAIL and return NULL here on ENOMEM. Set the
62 * code up to do this anyway.
64 ip = kmem_zone_alloc(xfs_inode_zone, KM_SLEEP);
65 if (!ip)
66 return NULL;
67 if (inode_init_always(mp->m_super, VFS_I(ip))) {
68 kmem_zone_free(xfs_inode_zone, ip);
69 return NULL;
72 ASSERT(atomic_read(&ip->i_iocount) == 0);
73 ASSERT(atomic_read(&ip->i_pincount) == 0);
74 ASSERT(!spin_is_locked(&ip->i_flags_lock));
75 ASSERT(completion_done(&ip->i_flush));
77 /* initialise the xfs inode */
78 ip->i_ino = ino;
79 ip->i_mount = mp;
80 memset(&ip->i_imap, 0, sizeof(struct xfs_imap));
81 ip->i_afp = NULL;
82 memset(&ip->i_df, 0, sizeof(xfs_ifork_t));
83 ip->i_flags = 0;
84 ip->i_update_core = 0;
85 ip->i_delayed_blks = 0;
86 memset(&ip->i_d, 0, sizeof(xfs_icdinode_t));
87 ip->i_size = 0;
88 ip->i_new_size = 0;
91 * Initialize inode's trace buffers.
93 #ifdef XFS_INODE_TRACE
94 ip->i_trace = ktrace_alloc(INODE_TRACE_SIZE, KM_NOFS);
95 #endif
96 #ifdef XFS_BMAP_TRACE
97 ip->i_xtrace = ktrace_alloc(XFS_BMAP_KTRACE_SIZE, KM_NOFS);
98 #endif
99 #ifdef XFS_BTREE_TRACE
100 ip->i_btrace = ktrace_alloc(XFS_BMBT_KTRACE_SIZE, KM_NOFS);
101 #endif
102 #ifdef XFS_RW_TRACE
103 ip->i_rwtrace = ktrace_alloc(XFS_RW_KTRACE_SIZE, KM_NOFS);
104 #endif
105 #ifdef XFS_ILOCK_TRACE
106 ip->i_lock_trace = ktrace_alloc(XFS_ILOCK_KTRACE_SIZE, KM_NOFS);
107 #endif
108 #ifdef XFS_DIR2_TRACE
109 ip->i_dir_trace = ktrace_alloc(XFS_DIR2_KTRACE_SIZE, KM_NOFS);
110 #endif
112 /* prevent anyone from using this yet */
113 VFS_I(ip)->i_state = I_NEW|I_LOCK;
115 return ip;
118 STATIC void
119 xfs_inode_free(
120 struct xfs_inode *ip)
122 switch (ip->i_d.di_mode & S_IFMT) {
123 case S_IFREG:
124 case S_IFDIR:
125 case S_IFLNK:
126 xfs_idestroy_fork(ip, XFS_DATA_FORK);
127 break;
130 if (ip->i_afp)
131 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
133 #ifdef XFS_INODE_TRACE
134 ktrace_free(ip->i_trace);
135 #endif
136 #ifdef XFS_BMAP_TRACE
137 ktrace_free(ip->i_xtrace);
138 #endif
139 #ifdef XFS_BTREE_TRACE
140 ktrace_free(ip->i_btrace);
141 #endif
142 #ifdef XFS_RW_TRACE
143 ktrace_free(ip->i_rwtrace);
144 #endif
145 #ifdef XFS_ILOCK_TRACE
146 ktrace_free(ip->i_lock_trace);
147 #endif
148 #ifdef XFS_DIR2_TRACE
149 ktrace_free(ip->i_dir_trace);
150 #endif
152 if (ip->i_itemp) {
154 * Only if we are shutting down the fs will we see an
155 * inode still in the AIL. If it is there, we should remove
156 * it to prevent a use-after-free from occurring.
158 xfs_log_item_t *lip = &ip->i_itemp->ili_item;
159 struct xfs_ail *ailp = lip->li_ailp;
161 ASSERT(((lip->li_flags & XFS_LI_IN_AIL) == 0) ||
162 XFS_FORCED_SHUTDOWN(ip->i_mount));
163 if (lip->li_flags & XFS_LI_IN_AIL) {
164 spin_lock(&ailp->xa_lock);
165 if (lip->li_flags & XFS_LI_IN_AIL)
166 xfs_trans_ail_delete(ailp, lip);
167 else
168 spin_unlock(&ailp->xa_lock);
170 xfs_inode_item_destroy(ip);
171 ip->i_itemp = NULL;
174 /* asserts to verify all state is correct here */
175 ASSERT(atomic_read(&ip->i_iocount) == 0);
176 ASSERT(atomic_read(&ip->i_pincount) == 0);
177 ASSERT(!spin_is_locked(&ip->i_flags_lock));
178 ASSERT(completion_done(&ip->i_flush));
180 kmem_zone_free(xfs_inode_zone, ip);
184 * Check the validity of the inode we just found it the cache
186 static int
187 xfs_iget_cache_hit(
188 struct xfs_perag *pag,
189 struct xfs_inode *ip,
190 int flags,
191 int lock_flags) __releases(pag->pag_ici_lock)
193 struct inode *inode = VFS_I(ip);
194 struct xfs_mount *mp = ip->i_mount;
195 int error;
197 spin_lock(&ip->i_flags_lock);
200 * If we are racing with another cache hit that is currently
201 * instantiating this inode or currently recycling it out of
202 * reclaimabe state, wait for the initialisation to complete
203 * before continuing.
205 * XXX(hch): eventually we should do something equivalent to
206 * wait_on_inode to wait for these flags to be cleared
207 * instead of polling for it.
209 if (ip->i_flags & (XFS_INEW|XFS_IRECLAIM)) {
210 XFS_STATS_INC(xs_ig_frecycle);
211 error = EAGAIN;
212 goto out_error;
216 * If lookup is racing with unlink return an error immediately.
218 if (ip->i_d.di_mode == 0 && !(flags & XFS_IGET_CREATE)) {
219 error = ENOENT;
220 goto out_error;
224 * If IRECLAIMABLE is set, we've torn down the VFS inode already.
225 * Need to carefully get it back into useable state.
227 if (ip->i_flags & XFS_IRECLAIMABLE) {
228 xfs_itrace_exit_tag(ip, "xfs_iget.alloc");
231 * We need to set XFS_IRECLAIM to prevent xfs_reclaim_inode
232 * from stomping over us while we recycle the inode. We can't
233 * clear the radix tree reclaimable tag yet as it requires
234 * pag_ici_lock to be held exclusive.
236 ip->i_flags |= XFS_IRECLAIM;
238 spin_unlock(&ip->i_flags_lock);
239 read_unlock(&pag->pag_ici_lock);
241 error = -inode_init_always(mp->m_super, inode);
242 if (error) {
244 * Re-initializing the inode failed, and we are in deep
245 * trouble. Try to re-add it to the reclaim list.
247 read_lock(&pag->pag_ici_lock);
248 spin_lock(&ip->i_flags_lock);
250 ip->i_flags &= ~XFS_INEW;
251 ip->i_flags |= XFS_IRECLAIMABLE;
252 __xfs_inode_set_reclaim_tag(pag, ip);
253 goto out_error;
256 write_lock(&pag->pag_ici_lock);
257 spin_lock(&ip->i_flags_lock);
258 ip->i_flags &= ~(XFS_IRECLAIMABLE | XFS_IRECLAIM);
259 ip->i_flags |= XFS_INEW;
260 __xfs_inode_clear_reclaim_tag(mp, pag, ip);
261 inode->i_state = I_LOCK|I_NEW;
262 spin_unlock(&ip->i_flags_lock);
263 write_unlock(&pag->pag_ici_lock);
264 } else {
265 /* If the VFS inode is being torn down, pause and try again. */
266 if (!igrab(inode)) {
267 error = EAGAIN;
268 goto out_error;
271 /* We've got a live one. */
272 spin_unlock(&ip->i_flags_lock);
273 read_unlock(&pag->pag_ici_lock);
276 if (lock_flags != 0)
277 xfs_ilock(ip, lock_flags);
279 xfs_iflags_clear(ip, XFS_ISTALE);
280 xfs_itrace_exit_tag(ip, "xfs_iget.found");
281 XFS_STATS_INC(xs_ig_found);
282 return 0;
284 out_error:
285 spin_unlock(&ip->i_flags_lock);
286 read_unlock(&pag->pag_ici_lock);
287 return error;
291 static int
292 xfs_iget_cache_miss(
293 struct xfs_mount *mp,
294 struct xfs_perag *pag,
295 xfs_trans_t *tp,
296 xfs_ino_t ino,
297 struct xfs_inode **ipp,
298 int flags,
299 int lock_flags) __releases(pag->pag_ici_lock)
301 struct xfs_inode *ip;
302 int error;
303 unsigned long first_index, mask;
304 xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ino);
306 ip = xfs_inode_alloc(mp, ino);
307 if (!ip)
308 return ENOMEM;
310 error = xfs_iread(mp, tp, ip, flags);
311 if (error)
312 goto out_destroy;
314 xfs_itrace_exit_tag(ip, "xfs_iget.alloc");
316 if ((ip->i_d.di_mode == 0) && !(flags & XFS_IGET_CREATE)) {
317 error = ENOENT;
318 goto out_destroy;
322 * Preload the radix tree so we can insert safely under the
323 * write spinlock. Note that we cannot sleep inside the preload
324 * region.
326 if (radix_tree_preload(GFP_KERNEL)) {
327 error = EAGAIN;
328 goto out_destroy;
332 * Because the inode hasn't been added to the radix-tree yet it can't
333 * be found by another thread, so we can do the non-sleeping lock here.
335 if (lock_flags) {
336 if (!xfs_ilock_nowait(ip, lock_flags))
337 BUG();
340 mask = ~(((XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog)) - 1);
341 first_index = agino & mask;
342 write_lock(&pag->pag_ici_lock);
344 /* insert the new inode */
345 error = radix_tree_insert(&pag->pag_ici_root, agino, ip);
346 if (unlikely(error)) {
347 WARN_ON(error != -EEXIST);
348 XFS_STATS_INC(xs_ig_dup);
349 error = EAGAIN;
350 goto out_preload_end;
353 /* These values _must_ be set before releasing the radix tree lock! */
354 ip->i_udquot = ip->i_gdquot = NULL;
355 xfs_iflags_set(ip, XFS_INEW);
357 write_unlock(&pag->pag_ici_lock);
358 radix_tree_preload_end();
359 *ipp = ip;
360 return 0;
362 out_preload_end:
363 write_unlock(&pag->pag_ici_lock);
364 radix_tree_preload_end();
365 if (lock_flags)
366 xfs_iunlock(ip, lock_flags);
367 out_destroy:
368 __destroy_inode(VFS_I(ip));
369 xfs_inode_free(ip);
370 return error;
374 * Look up an inode by number in the given file system.
375 * The inode is looked up in the cache held in each AG.
376 * If the inode is found in the cache, initialise the vfs inode
377 * if necessary.
379 * If it is not in core, read it in from the file system's device,
380 * add it to the cache and initialise the vfs inode.
382 * The inode is locked according to the value of the lock_flags parameter.
383 * This flag parameter indicates how and if the inode's IO lock and inode lock
384 * should be taken.
386 * mp -- the mount point structure for the current file system. It points
387 * to the inode hash table.
388 * tp -- a pointer to the current transaction if there is one. This is
389 * simply passed through to the xfs_iread() call.
390 * ino -- the number of the inode desired. This is the unique identifier
391 * within the file system for the inode being requested.
392 * lock_flags -- flags indicating how to lock the inode. See the comment
393 * for xfs_ilock() for a list of valid values.
396 xfs_iget(
397 xfs_mount_t *mp,
398 xfs_trans_t *tp,
399 xfs_ino_t ino,
400 uint flags,
401 uint lock_flags,
402 xfs_inode_t **ipp)
404 xfs_inode_t *ip;
405 int error;
406 xfs_perag_t *pag;
407 xfs_agino_t agino;
409 /* the radix tree exists only in inode capable AGs */
410 if (XFS_INO_TO_AGNO(mp, ino) >= mp->m_maxagi)
411 return EINVAL;
413 /* get the perag structure and ensure that it's inode capable */
414 pag = xfs_get_perag(mp, ino);
415 if (!pag->pagi_inodeok)
416 return EINVAL;
417 ASSERT(pag->pag_ici_init);
418 agino = XFS_INO_TO_AGINO(mp, ino);
420 again:
421 error = 0;
422 read_lock(&pag->pag_ici_lock);
423 ip = radix_tree_lookup(&pag->pag_ici_root, agino);
425 if (ip) {
426 error = xfs_iget_cache_hit(pag, ip, flags, lock_flags);
427 if (error)
428 goto out_error_or_again;
429 } else {
430 read_unlock(&pag->pag_ici_lock);
431 XFS_STATS_INC(xs_ig_missed);
433 error = xfs_iget_cache_miss(mp, pag, tp, ino, &ip,
434 flags, lock_flags);
435 if (error)
436 goto out_error_or_again;
438 xfs_put_perag(mp, pag);
440 *ipp = ip;
442 ASSERT(ip->i_df.if_ext_max ==
443 XFS_IFORK_DSIZE(ip) / sizeof(xfs_bmbt_rec_t));
445 * If we have a real type for an on-disk inode, we can set ops(&unlock)
446 * now. If it's a new inode being created, xfs_ialloc will handle it.
448 if (xfs_iflags_test(ip, XFS_INEW) && ip->i_d.di_mode != 0)
449 xfs_setup_inode(ip);
450 return 0;
452 out_error_or_again:
453 if (error == EAGAIN) {
454 delay(1);
455 goto again;
457 xfs_put_perag(mp, pag);
458 return error;
462 * Decrement reference count of an inode structure and unlock it.
464 * ip -- the inode being released
465 * lock_flags -- this parameter indicates the inode's locks to be
466 * to be released. See the comment on xfs_iunlock() for a list
467 * of valid values.
469 void
470 xfs_iput(xfs_inode_t *ip,
471 uint lock_flags)
473 xfs_itrace_entry(ip);
474 xfs_iunlock(ip, lock_flags);
475 IRELE(ip);
479 * Special iput for brand-new inodes that are still locked
481 void
482 xfs_iput_new(
483 xfs_inode_t *ip,
484 uint lock_flags)
486 struct inode *inode = VFS_I(ip);
488 xfs_itrace_entry(ip);
490 if ((ip->i_d.di_mode == 0)) {
491 ASSERT(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
492 make_bad_inode(inode);
494 if (inode->i_state & I_NEW)
495 unlock_new_inode(inode);
496 if (lock_flags)
497 xfs_iunlock(ip, lock_flags);
498 IRELE(ip);
502 * This is called free all the memory associated with an inode.
503 * It must free the inode itself and any buffers allocated for
504 * if_extents/if_data and if_broot. It must also free the lock
505 * associated with the inode.
507 * Note: because we don't initialise everything on reallocation out
508 * of the zone, we must ensure we nullify everything correctly before
509 * freeing the structure.
511 void
512 xfs_ireclaim(
513 struct xfs_inode *ip)
515 struct xfs_mount *mp = ip->i_mount;
516 struct xfs_perag *pag;
517 xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
519 XFS_STATS_INC(xs_ig_reclaims);
522 * Remove the inode from the per-AG radix tree.
524 * Because radix_tree_delete won't complain even if the item was never
525 * added to the tree assert that it's been there before to catch
526 * problems with the inode life time early on.
528 pag = xfs_get_perag(mp, ip->i_ino);
529 write_lock(&pag->pag_ici_lock);
530 if (!radix_tree_delete(&pag->pag_ici_root, agino))
531 ASSERT(0);
532 write_unlock(&pag->pag_ici_lock);
533 xfs_put_perag(mp, pag);
536 * Here we do an (almost) spurious inode lock in order to coordinate
537 * with inode cache radix tree lookups. This is because the lookup
538 * can reference the inodes in the cache without taking references.
540 * We make that OK here by ensuring that we wait until the inode is
541 * unlocked after the lookup before we go ahead and free it. We get
542 * both the ilock and the iolock because the code may need to drop the
543 * ilock one but will still hold the iolock.
545 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
546 xfs_qm_dqdetach(ip);
547 xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
549 xfs_inode_free(ip);
553 * This is a wrapper routine around the xfs_ilock() routine
554 * used to centralize some grungy code. It is used in places
555 * that wish to lock the inode solely for reading the extents.
556 * The reason these places can't just call xfs_ilock(SHARED)
557 * is that the inode lock also guards to bringing in of the
558 * extents from disk for a file in b-tree format. If the inode
559 * is in b-tree format, then we need to lock the inode exclusively
560 * until the extents are read in. Locking it exclusively all
561 * the time would limit our parallelism unnecessarily, though.
562 * What we do instead is check to see if the extents have been
563 * read in yet, and only lock the inode exclusively if they
564 * have not.
566 * The function returns a value which should be given to the
567 * corresponding xfs_iunlock_map_shared(). This value is
568 * the mode in which the lock was actually taken.
570 uint
571 xfs_ilock_map_shared(
572 xfs_inode_t *ip)
574 uint lock_mode;
576 if ((ip->i_d.di_format == XFS_DINODE_FMT_BTREE) &&
577 ((ip->i_df.if_flags & XFS_IFEXTENTS) == 0)) {
578 lock_mode = XFS_ILOCK_EXCL;
579 } else {
580 lock_mode = XFS_ILOCK_SHARED;
583 xfs_ilock(ip, lock_mode);
585 return lock_mode;
589 * This is simply the unlock routine to go with xfs_ilock_map_shared().
590 * All it does is call xfs_iunlock() with the given lock_mode.
592 void
593 xfs_iunlock_map_shared(
594 xfs_inode_t *ip,
595 unsigned int lock_mode)
597 xfs_iunlock(ip, lock_mode);
601 * The xfs inode contains 2 locks: a multi-reader lock called the
602 * i_iolock and a multi-reader lock called the i_lock. This routine
603 * allows either or both of the locks to be obtained.
605 * The 2 locks should always be ordered so that the IO lock is
606 * obtained first in order to prevent deadlock.
608 * ip -- the inode being locked
609 * lock_flags -- this parameter indicates the inode's locks
610 * to be locked. It can be:
611 * XFS_IOLOCK_SHARED,
612 * XFS_IOLOCK_EXCL,
613 * XFS_ILOCK_SHARED,
614 * XFS_ILOCK_EXCL,
615 * XFS_IOLOCK_SHARED | XFS_ILOCK_SHARED,
616 * XFS_IOLOCK_SHARED | XFS_ILOCK_EXCL,
617 * XFS_IOLOCK_EXCL | XFS_ILOCK_SHARED,
618 * XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL
620 void
621 xfs_ilock(
622 xfs_inode_t *ip,
623 uint lock_flags)
626 * You can't set both SHARED and EXCL for the same lock,
627 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
628 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
630 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
631 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
632 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
633 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
634 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
636 if (lock_flags & XFS_IOLOCK_EXCL)
637 mrupdate_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
638 else if (lock_flags & XFS_IOLOCK_SHARED)
639 mraccess_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
641 if (lock_flags & XFS_ILOCK_EXCL)
642 mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
643 else if (lock_flags & XFS_ILOCK_SHARED)
644 mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
646 xfs_ilock_trace(ip, 1, lock_flags, (inst_t *)__return_address);
650 * This is just like xfs_ilock(), except that the caller
651 * is guaranteed not to sleep. It returns 1 if it gets
652 * the requested locks and 0 otherwise. If the IO lock is
653 * obtained but the inode lock cannot be, then the IO lock
654 * is dropped before returning.
656 * ip -- the inode being locked
657 * lock_flags -- this parameter indicates the inode's locks to be
658 * to be locked. See the comment for xfs_ilock() for a list
659 * of valid values.
662 xfs_ilock_nowait(
663 xfs_inode_t *ip,
664 uint lock_flags)
667 * You can't set both SHARED and EXCL for the same lock,
668 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
669 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
671 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
672 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
673 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
674 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
675 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
677 if (lock_flags & XFS_IOLOCK_EXCL) {
678 if (!mrtryupdate(&ip->i_iolock))
679 goto out;
680 } else if (lock_flags & XFS_IOLOCK_SHARED) {
681 if (!mrtryaccess(&ip->i_iolock))
682 goto out;
684 if (lock_flags & XFS_ILOCK_EXCL) {
685 if (!mrtryupdate(&ip->i_lock))
686 goto out_undo_iolock;
687 } else if (lock_flags & XFS_ILOCK_SHARED) {
688 if (!mrtryaccess(&ip->i_lock))
689 goto out_undo_iolock;
691 xfs_ilock_trace(ip, 2, lock_flags, (inst_t *)__return_address);
692 return 1;
694 out_undo_iolock:
695 if (lock_flags & XFS_IOLOCK_EXCL)
696 mrunlock_excl(&ip->i_iolock);
697 else if (lock_flags & XFS_IOLOCK_SHARED)
698 mrunlock_shared(&ip->i_iolock);
699 out:
700 return 0;
704 * xfs_iunlock() is used to drop the inode locks acquired with
705 * xfs_ilock() and xfs_ilock_nowait(). The caller must pass
706 * in the flags given to xfs_ilock() or xfs_ilock_nowait() so
707 * that we know which locks to drop.
709 * ip -- the inode being unlocked
710 * lock_flags -- this parameter indicates the inode's locks to be
711 * to be unlocked. See the comment for xfs_ilock() for a list
712 * of valid values for this parameter.
715 void
716 xfs_iunlock(
717 xfs_inode_t *ip,
718 uint lock_flags)
721 * You can't set both SHARED and EXCL for the same lock,
722 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
723 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
725 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
726 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
727 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
728 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
729 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_IUNLOCK_NONOTIFY |
730 XFS_LOCK_DEP_MASK)) == 0);
731 ASSERT(lock_flags != 0);
733 if (lock_flags & XFS_IOLOCK_EXCL)
734 mrunlock_excl(&ip->i_iolock);
735 else if (lock_flags & XFS_IOLOCK_SHARED)
736 mrunlock_shared(&ip->i_iolock);
738 if (lock_flags & XFS_ILOCK_EXCL)
739 mrunlock_excl(&ip->i_lock);
740 else if (lock_flags & XFS_ILOCK_SHARED)
741 mrunlock_shared(&ip->i_lock);
743 if ((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) &&
744 !(lock_flags & XFS_IUNLOCK_NONOTIFY) && ip->i_itemp) {
746 * Let the AIL know that this item has been unlocked in case
747 * it is in the AIL and anyone is waiting on it. Don't do
748 * this if the caller has asked us not to.
750 xfs_trans_unlocked_item(ip->i_itemp->ili_item.li_ailp,
751 (xfs_log_item_t*)(ip->i_itemp));
753 xfs_ilock_trace(ip, 3, lock_flags, (inst_t *)__return_address);
757 * give up write locks. the i/o lock cannot be held nested
758 * if it is being demoted.
760 void
761 xfs_ilock_demote(
762 xfs_inode_t *ip,
763 uint lock_flags)
765 ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL));
766 ASSERT((lock_flags & ~(XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)) == 0);
768 if (lock_flags & XFS_ILOCK_EXCL)
769 mrdemote(&ip->i_lock);
770 if (lock_flags & XFS_IOLOCK_EXCL)
771 mrdemote(&ip->i_iolock);
774 #ifdef DEBUG
776 * Debug-only routine, without additional rw_semaphore APIs, we can
777 * now only answer requests regarding whether we hold the lock for write
778 * (reader state is outside our visibility, we only track writer state).
780 * Note: this means !xfs_isilocked would give false positives, so don't do that.
783 xfs_isilocked(
784 xfs_inode_t *ip,
785 uint lock_flags)
787 if ((lock_flags & (XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)) ==
788 XFS_ILOCK_EXCL) {
789 if (!ip->i_lock.mr_writer)
790 return 0;
793 if ((lock_flags & (XFS_IOLOCK_EXCL|XFS_IOLOCK_SHARED)) ==
794 XFS_IOLOCK_EXCL) {
795 if (!ip->i_iolock.mr_writer)
796 return 0;
799 return 1;
801 #endif
803 #ifdef XFS_INODE_TRACE
805 #define KTRACE_ENTER(ip, vk, s, line, ra) \
806 ktrace_enter((ip)->i_trace, \
807 /* 0 */ (void *)(__psint_t)(vk), \
808 /* 1 */ (void *)(s), \
809 /* 2 */ (void *)(__psint_t) line, \
810 /* 3 */ (void *)(__psint_t)atomic_read(&VFS_I(ip)->i_count), \
811 /* 4 */ (void *)(ra), \
812 /* 5 */ NULL, \
813 /* 6 */ (void *)(__psint_t)current_cpu(), \
814 /* 7 */ (void *)(__psint_t)current_pid(), \
815 /* 8 */ (void *)__return_address, \
816 /* 9 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL)
819 * Vnode tracing code.
821 void
822 _xfs_itrace_entry(xfs_inode_t *ip, const char *func, inst_t *ra)
824 KTRACE_ENTER(ip, INODE_KTRACE_ENTRY, func, 0, ra);
827 void
828 _xfs_itrace_exit(xfs_inode_t *ip, const char *func, inst_t *ra)
830 KTRACE_ENTER(ip, INODE_KTRACE_EXIT, func, 0, ra);
833 void
834 xfs_itrace_hold(xfs_inode_t *ip, char *file, int line, inst_t *ra)
836 KTRACE_ENTER(ip, INODE_KTRACE_HOLD, file, line, ra);
839 void
840 _xfs_itrace_ref(xfs_inode_t *ip, char *file, int line, inst_t *ra)
842 KTRACE_ENTER(ip, INODE_KTRACE_REF, file, line, ra);
845 void
846 xfs_itrace_rele(xfs_inode_t *ip, char *file, int line, inst_t *ra)
848 KTRACE_ENTER(ip, INODE_KTRACE_RELE, file, line, ra);
850 #endif /* XFS_INODE_TRACE */