2 * Copyright (c) 2000-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 #include "xfs_types.h"
25 #include "xfs_trans.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"
45 #include "xfs_btree_trace.h"
46 #include "xfs_dir2_trace.h"
50 * Allocate and initialise an xfs_inode.
52 STATIC
struct xfs_inode
*
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
);
67 if (inode_init_always(mp
->m_super
, VFS_I(ip
))) {
68 kmem_zone_free(xfs_inode_zone
, ip
);
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 */
80 memset(&ip
->i_imap
, 0, sizeof(struct xfs_imap
));
82 memset(&ip
->i_df
, 0, sizeof(xfs_ifork_t
));
84 ip
->i_update_core
= 0;
85 ip
->i_update_size
= 0;
86 ip
->i_delayed_blks
= 0;
87 memset(&ip
->i_d
, 0, sizeof(xfs_icdinode_t
));
92 * Initialize inode's trace buffers.
94 #ifdef XFS_INODE_TRACE
95 ip
->i_trace
= ktrace_alloc(INODE_TRACE_SIZE
, KM_NOFS
);
98 ip
->i_xtrace
= ktrace_alloc(XFS_BMAP_KTRACE_SIZE
, KM_NOFS
);
100 #ifdef XFS_BTREE_TRACE
101 ip
->i_btrace
= ktrace_alloc(XFS_BMBT_KTRACE_SIZE
, KM_NOFS
);
104 ip
->i_rwtrace
= ktrace_alloc(XFS_RW_KTRACE_SIZE
, KM_NOFS
);
106 #ifdef XFS_ILOCK_TRACE
107 ip
->i_lock_trace
= ktrace_alloc(XFS_ILOCK_KTRACE_SIZE
, KM_NOFS
);
109 #ifdef XFS_DIR2_TRACE
110 ip
->i_dir_trace
= ktrace_alloc(XFS_DIR2_KTRACE_SIZE
, KM_NOFS
);
113 /* prevent anyone from using this yet */
114 VFS_I(ip
)->i_state
= I_NEW
|I_LOCK
;
121 struct xfs_inode
*ip
)
123 switch (ip
->i_d
.di_mode
& S_IFMT
) {
127 xfs_idestroy_fork(ip
, XFS_DATA_FORK
);
132 xfs_idestroy_fork(ip
, XFS_ATTR_FORK
);
134 #ifdef XFS_INODE_TRACE
135 ktrace_free(ip
->i_trace
);
137 #ifdef XFS_BMAP_TRACE
138 ktrace_free(ip
->i_xtrace
);
140 #ifdef XFS_BTREE_TRACE
141 ktrace_free(ip
->i_btrace
);
144 ktrace_free(ip
->i_rwtrace
);
146 #ifdef XFS_ILOCK_TRACE
147 ktrace_free(ip
->i_lock_trace
);
149 #ifdef XFS_DIR2_TRACE
150 ktrace_free(ip
->i_dir_trace
);
155 * Only if we are shutting down the fs will we see an
156 * inode still in the AIL. If it is there, we should remove
157 * it to prevent a use-after-free from occurring.
159 xfs_log_item_t
*lip
= &ip
->i_itemp
->ili_item
;
160 struct xfs_ail
*ailp
= lip
->li_ailp
;
162 ASSERT(((lip
->li_flags
& XFS_LI_IN_AIL
) == 0) ||
163 XFS_FORCED_SHUTDOWN(ip
->i_mount
));
164 if (lip
->li_flags
& XFS_LI_IN_AIL
) {
165 spin_lock(&ailp
->xa_lock
);
166 if (lip
->li_flags
& XFS_LI_IN_AIL
)
167 xfs_trans_ail_delete(ailp
, lip
);
169 spin_unlock(&ailp
->xa_lock
);
171 xfs_inode_item_destroy(ip
);
175 /* asserts to verify all state is correct here */
176 ASSERT(atomic_read(&ip
->i_iocount
) == 0);
177 ASSERT(atomic_read(&ip
->i_pincount
) == 0);
178 ASSERT(!spin_is_locked(&ip
->i_flags_lock
));
179 ASSERT(completion_done(&ip
->i_flush
));
181 kmem_zone_free(xfs_inode_zone
, ip
);
185 * Check the validity of the inode we just found it the cache
189 struct xfs_perag
*pag
,
190 struct xfs_inode
*ip
,
192 int lock_flags
) __releases(pag
->pag_ici_lock
)
194 struct inode
*inode
= VFS_I(ip
);
195 struct xfs_mount
*mp
= ip
->i_mount
;
198 spin_lock(&ip
->i_flags_lock
);
201 * If we are racing with another cache hit that is currently
202 * instantiating this inode or currently recycling it out of
203 * reclaimabe state, wait for the initialisation to complete
206 * XXX(hch): eventually we should do something equivalent to
207 * wait_on_inode to wait for these flags to be cleared
208 * instead of polling for it.
210 if (ip
->i_flags
& (XFS_INEW
|XFS_IRECLAIM
)) {
211 XFS_STATS_INC(xs_ig_frecycle
);
217 * If lookup is racing with unlink return an error immediately.
219 if (ip
->i_d
.di_mode
== 0 && !(flags
& XFS_IGET_CREATE
)) {
225 * If IRECLAIMABLE is set, we've torn down the VFS inode already.
226 * Need to carefully get it back into useable state.
228 if (ip
->i_flags
& XFS_IRECLAIMABLE
) {
229 xfs_itrace_exit_tag(ip
, "xfs_iget.alloc");
232 * We need to set XFS_INEW atomically with clearing the
233 * reclaimable tag so that we do have an indicator of the
234 * inode still being initialized.
236 ip
->i_flags
|= XFS_INEW
;
237 ip
->i_flags
&= ~XFS_IRECLAIMABLE
;
238 __xfs_inode_clear_reclaim_tag(mp
, pag
, ip
);
240 spin_unlock(&ip
->i_flags_lock
);
241 read_unlock(&pag
->pag_ici_lock
);
243 error
= -inode_init_always(mp
->m_super
, inode
);
246 * Re-initializing the inode failed, and we are in deep
247 * trouble. Try to re-add it to the reclaim list.
249 read_lock(&pag
->pag_ici_lock
);
250 spin_lock(&ip
->i_flags_lock
);
252 ip
->i_flags
&= ~XFS_INEW
;
253 ip
->i_flags
|= XFS_IRECLAIMABLE
;
254 __xfs_inode_set_reclaim_tag(pag
, ip
);
257 inode
->i_state
= I_LOCK
|I_NEW
;
259 /* If the VFS inode is being torn down, pause and try again. */
265 /* We've got a live one. */
266 spin_unlock(&ip
->i_flags_lock
);
267 read_unlock(&pag
->pag_ici_lock
);
271 xfs_ilock(ip
, lock_flags
);
273 xfs_iflags_clear(ip
, XFS_ISTALE
);
274 xfs_itrace_exit_tag(ip
, "xfs_iget.found");
275 XFS_STATS_INC(xs_ig_found
);
279 spin_unlock(&ip
->i_flags_lock
);
280 read_unlock(&pag
->pag_ici_lock
);
287 struct xfs_mount
*mp
,
288 struct xfs_perag
*pag
,
291 struct xfs_inode
**ipp
,
294 int lock_flags
) __releases(pag
->pag_ici_lock
)
296 struct xfs_inode
*ip
;
298 unsigned long first_index
, mask
;
299 xfs_agino_t agino
= XFS_INO_TO_AGINO(mp
, ino
);
301 ip
= xfs_inode_alloc(mp
, ino
);
305 error
= xfs_iread(mp
, tp
, ip
, bno
, flags
);
309 xfs_itrace_exit_tag(ip
, "xfs_iget.alloc");
311 if ((ip
->i_d
.di_mode
== 0) && !(flags
& XFS_IGET_CREATE
)) {
317 * Preload the radix tree so we can insert safely under the
318 * write spinlock. Note that we cannot sleep inside the preload
321 if (radix_tree_preload(GFP_KERNEL
)) {
327 * Because the inode hasn't been added to the radix-tree yet it can't
328 * be found by another thread, so we can do the non-sleeping lock here.
331 if (!xfs_ilock_nowait(ip
, lock_flags
))
335 mask
= ~(((XFS_INODE_CLUSTER_SIZE(mp
) >> mp
->m_sb
.sb_inodelog
)) - 1);
336 first_index
= agino
& mask
;
337 write_lock(&pag
->pag_ici_lock
);
339 /* insert the new inode */
340 error
= radix_tree_insert(&pag
->pag_ici_root
, agino
, ip
);
341 if (unlikely(error
)) {
342 WARN_ON(error
!= -EEXIST
);
343 XFS_STATS_INC(xs_ig_dup
);
345 goto out_preload_end
;
348 /* These values _must_ be set before releasing the radix tree lock! */
349 ip
->i_udquot
= ip
->i_gdquot
= NULL
;
350 xfs_iflags_set(ip
, XFS_INEW
);
352 write_unlock(&pag
->pag_ici_lock
);
353 radix_tree_preload_end();
358 write_unlock(&pag
->pag_ici_lock
);
359 radix_tree_preload_end();
361 xfs_iunlock(ip
, lock_flags
);
363 __destroy_inode(VFS_I(ip
));
369 * Look up an inode by number in the given file system.
370 * The inode is looked up in the cache held in each AG.
371 * If the inode is found in the cache, initialise the vfs inode
374 * If it is not in core, read it in from the file system's device,
375 * add it to the cache and initialise the vfs inode.
377 * The inode is locked according to the value of the lock_flags parameter.
378 * This flag parameter indicates how and if the inode's IO lock and inode lock
381 * mp -- the mount point structure for the current file system. It points
382 * to the inode hash table.
383 * tp -- a pointer to the current transaction if there is one. This is
384 * simply passed through to the xfs_iread() call.
385 * ino -- the number of the inode desired. This is the unique identifier
386 * within the file system for the inode being requested.
387 * lock_flags -- flags indicating how to lock the inode. See the comment
388 * for xfs_ilock() for a list of valid values.
389 * bno -- the block number starting the buffer containing the inode,
390 * if known (as by bulkstat), else 0.
407 /* the radix tree exists only in inode capable AGs */
408 if (XFS_INO_TO_AGNO(mp
, ino
) >= mp
->m_maxagi
)
411 /* get the perag structure and ensure that it's inode capable */
412 pag
= xfs_get_perag(mp
, ino
);
413 if (!pag
->pagi_inodeok
)
415 ASSERT(pag
->pag_ici_init
);
416 agino
= XFS_INO_TO_AGINO(mp
, ino
);
420 read_lock(&pag
->pag_ici_lock
);
421 ip
= radix_tree_lookup(&pag
->pag_ici_root
, agino
);
424 error
= xfs_iget_cache_hit(pag
, ip
, flags
, lock_flags
);
426 goto out_error_or_again
;
428 read_unlock(&pag
->pag_ici_lock
);
429 XFS_STATS_INC(xs_ig_missed
);
431 error
= xfs_iget_cache_miss(mp
, pag
, tp
, ino
, &ip
, bno
,
434 goto out_error_or_again
;
436 xfs_put_perag(mp
, pag
);
440 ASSERT(ip
->i_df
.if_ext_max
==
441 XFS_IFORK_DSIZE(ip
) / sizeof(xfs_bmbt_rec_t
));
443 * If we have a real type for an on-disk inode, we can set ops(&unlock)
444 * now. If it's a new inode being created, xfs_ialloc will handle it.
446 if (xfs_iflags_test(ip
, XFS_INEW
) && ip
->i_d
.di_mode
!= 0)
451 if (error
== EAGAIN
) {
455 xfs_put_perag(mp
, pag
);
461 * Look for the inode corresponding to the given ino in the hash table.
462 * If it is there and its i_transp pointer matches tp, return it.
463 * Otherwise, return NULL.
466 xfs_inode_incore(xfs_mount_t
*mp
,
473 pag
= xfs_get_perag(mp
, ino
);
474 read_lock(&pag
->pag_ici_lock
);
475 ip
= radix_tree_lookup(&pag
->pag_ici_root
, XFS_INO_TO_AGINO(mp
, ino
));
476 read_unlock(&pag
->pag_ici_lock
);
477 xfs_put_perag(mp
, pag
);
479 /* the returned inode must match the transaction */
480 if (ip
&& (ip
->i_transp
!= tp
))
486 * Decrement reference count of an inode structure and unlock it.
488 * ip -- the inode being released
489 * lock_flags -- this parameter indicates the inode's locks to be
490 * to be released. See the comment on xfs_iunlock() for a list
494 xfs_iput(xfs_inode_t
*ip
,
497 xfs_itrace_entry(ip
);
498 xfs_iunlock(ip
, lock_flags
);
503 * Special iput for brand-new inodes that are still locked
510 struct inode
*inode
= VFS_I(ip
);
512 xfs_itrace_entry(ip
);
514 if ((ip
->i_d
.di_mode
== 0)) {
515 ASSERT(!xfs_iflags_test(ip
, XFS_IRECLAIMABLE
));
516 make_bad_inode(inode
);
518 if (inode
->i_state
& I_NEW
)
519 unlock_new_inode(inode
);
521 xfs_iunlock(ip
, lock_flags
);
526 * This is called free all the memory associated with an inode.
527 * It must free the inode itself and any buffers allocated for
528 * if_extents/if_data and if_broot. It must also free the lock
529 * associated with the inode.
531 * Note: because we don't initialise everything on reallocation out
532 * of the zone, we must ensure we nullify everything correctly before
533 * freeing the structure.
537 struct xfs_inode
*ip
)
539 struct xfs_mount
*mp
= ip
->i_mount
;
540 struct xfs_perag
*pag
;
542 XFS_STATS_INC(xs_ig_reclaims
);
545 * Remove the inode from the per-AG radix tree. It doesn't matter
546 * if it was never added to it because radix_tree_delete can deal
547 * with that case just fine.
549 pag
= xfs_get_perag(mp
, ip
->i_ino
);
550 write_lock(&pag
->pag_ici_lock
);
551 radix_tree_delete(&pag
->pag_ici_root
, XFS_INO_TO_AGINO(mp
, ip
->i_ino
));
552 write_unlock(&pag
->pag_ici_lock
);
553 xfs_put_perag(mp
, pag
);
556 * Here we do an (almost) spurious inode lock in order to coordinate
557 * with inode cache radix tree lookups. This is because the lookup
558 * can reference the inodes in the cache without taking references.
560 * We make that OK here by ensuring that we wait until the inode is
561 * unlocked after the lookup before we go ahead and free it. We get
562 * both the ilock and the iolock because the code may need to drop the
563 * ilock one but will still hold the iolock.
565 xfs_ilock(ip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
567 xfs_iunlock(ip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
573 * This is a wrapper routine around the xfs_ilock() routine
574 * used to centralize some grungy code. It is used in places
575 * that wish to lock the inode solely for reading the extents.
576 * The reason these places can't just call xfs_ilock(SHARED)
577 * is that the inode lock also guards to bringing in of the
578 * extents from disk for a file in b-tree format. If the inode
579 * is in b-tree format, then we need to lock the inode exclusively
580 * until the extents are read in. Locking it exclusively all
581 * the time would limit our parallelism unnecessarily, though.
582 * What we do instead is check to see if the extents have been
583 * read in yet, and only lock the inode exclusively if they
586 * The function returns a value which should be given to the
587 * corresponding xfs_iunlock_map_shared(). This value is
588 * the mode in which the lock was actually taken.
591 xfs_ilock_map_shared(
596 if ((ip
->i_d
.di_format
== XFS_DINODE_FMT_BTREE
) &&
597 ((ip
->i_df
.if_flags
& XFS_IFEXTENTS
) == 0)) {
598 lock_mode
= XFS_ILOCK_EXCL
;
600 lock_mode
= XFS_ILOCK_SHARED
;
603 xfs_ilock(ip
, lock_mode
);
609 * This is simply the unlock routine to go with xfs_ilock_map_shared().
610 * All it does is call xfs_iunlock() with the given lock_mode.
613 xfs_iunlock_map_shared(
615 unsigned int lock_mode
)
617 xfs_iunlock(ip
, lock_mode
);
621 * The xfs inode contains 2 locks: a multi-reader lock called the
622 * i_iolock and a multi-reader lock called the i_lock. This routine
623 * allows either or both of the locks to be obtained.
625 * The 2 locks should always be ordered so that the IO lock is
626 * obtained first in order to prevent deadlock.
628 * ip -- the inode being locked
629 * lock_flags -- this parameter indicates the inode's locks
630 * to be locked. It can be:
635 * XFS_IOLOCK_SHARED | XFS_ILOCK_SHARED,
636 * XFS_IOLOCK_SHARED | XFS_ILOCK_EXCL,
637 * XFS_IOLOCK_EXCL | XFS_ILOCK_SHARED,
638 * XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL
646 * You can't set both SHARED and EXCL for the same lock,
647 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
648 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
650 ASSERT((lock_flags
& (XFS_IOLOCK_SHARED
| XFS_IOLOCK_EXCL
)) !=
651 (XFS_IOLOCK_SHARED
| XFS_IOLOCK_EXCL
));
652 ASSERT((lock_flags
& (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
)) !=
653 (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
));
654 ASSERT((lock_flags
& ~(XFS_LOCK_MASK
| XFS_LOCK_DEP_MASK
)) == 0);
656 if (lock_flags
& XFS_IOLOCK_EXCL
)
657 mrupdate_nested(&ip
->i_iolock
, XFS_IOLOCK_DEP(lock_flags
));
658 else if (lock_flags
& XFS_IOLOCK_SHARED
)
659 mraccess_nested(&ip
->i_iolock
, XFS_IOLOCK_DEP(lock_flags
));
661 if (lock_flags
& XFS_ILOCK_EXCL
)
662 mrupdate_nested(&ip
->i_lock
, XFS_ILOCK_DEP(lock_flags
));
663 else if (lock_flags
& XFS_ILOCK_SHARED
)
664 mraccess_nested(&ip
->i_lock
, XFS_ILOCK_DEP(lock_flags
));
666 xfs_ilock_trace(ip
, 1, lock_flags
, (inst_t
*)__return_address
);
670 * This is just like xfs_ilock(), except that the caller
671 * is guaranteed not to sleep. It returns 1 if it gets
672 * the requested locks and 0 otherwise. If the IO lock is
673 * obtained but the inode lock cannot be, then the IO lock
674 * is dropped before returning.
676 * ip -- the inode being locked
677 * lock_flags -- this parameter indicates the inode's locks to be
678 * to be locked. See the comment for xfs_ilock() for a list
687 * You can't set both SHARED and EXCL for the same lock,
688 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
689 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
691 ASSERT((lock_flags
& (XFS_IOLOCK_SHARED
| XFS_IOLOCK_EXCL
)) !=
692 (XFS_IOLOCK_SHARED
| XFS_IOLOCK_EXCL
));
693 ASSERT((lock_flags
& (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
)) !=
694 (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
));
695 ASSERT((lock_flags
& ~(XFS_LOCK_MASK
| XFS_LOCK_DEP_MASK
)) == 0);
697 if (lock_flags
& XFS_IOLOCK_EXCL
) {
698 if (!mrtryupdate(&ip
->i_iolock
))
700 } else if (lock_flags
& XFS_IOLOCK_SHARED
) {
701 if (!mrtryaccess(&ip
->i_iolock
))
704 if (lock_flags
& XFS_ILOCK_EXCL
) {
705 if (!mrtryupdate(&ip
->i_lock
))
706 goto out_undo_iolock
;
707 } else if (lock_flags
& XFS_ILOCK_SHARED
) {
708 if (!mrtryaccess(&ip
->i_lock
))
709 goto out_undo_iolock
;
711 xfs_ilock_trace(ip
, 2, lock_flags
, (inst_t
*)__return_address
);
715 if (lock_flags
& XFS_IOLOCK_EXCL
)
716 mrunlock_excl(&ip
->i_iolock
);
717 else if (lock_flags
& XFS_IOLOCK_SHARED
)
718 mrunlock_shared(&ip
->i_iolock
);
724 * xfs_iunlock() is used to drop the inode locks acquired with
725 * xfs_ilock() and xfs_ilock_nowait(). The caller must pass
726 * in the flags given to xfs_ilock() or xfs_ilock_nowait() so
727 * that we know which locks to drop.
729 * ip -- the inode being unlocked
730 * lock_flags -- this parameter indicates the inode's locks to be
731 * to be unlocked. See the comment for xfs_ilock() for a list
732 * of valid values for this parameter.
741 * You can't set both SHARED and EXCL for the same lock,
742 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
743 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
745 ASSERT((lock_flags
& (XFS_IOLOCK_SHARED
| XFS_IOLOCK_EXCL
)) !=
746 (XFS_IOLOCK_SHARED
| XFS_IOLOCK_EXCL
));
747 ASSERT((lock_flags
& (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
)) !=
748 (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
));
749 ASSERT((lock_flags
& ~(XFS_LOCK_MASK
| XFS_IUNLOCK_NONOTIFY
|
750 XFS_LOCK_DEP_MASK
)) == 0);
751 ASSERT(lock_flags
!= 0);
753 if (lock_flags
& XFS_IOLOCK_EXCL
)
754 mrunlock_excl(&ip
->i_iolock
);
755 else if (lock_flags
& XFS_IOLOCK_SHARED
)
756 mrunlock_shared(&ip
->i_iolock
);
758 if (lock_flags
& XFS_ILOCK_EXCL
)
759 mrunlock_excl(&ip
->i_lock
);
760 else if (lock_flags
& XFS_ILOCK_SHARED
)
761 mrunlock_shared(&ip
->i_lock
);
763 if ((lock_flags
& (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
)) &&
764 !(lock_flags
& XFS_IUNLOCK_NONOTIFY
) && ip
->i_itemp
) {
766 * Let the AIL know that this item has been unlocked in case
767 * it is in the AIL and anyone is waiting on it. Don't do
768 * this if the caller has asked us not to.
770 xfs_trans_unlocked_item(ip
->i_itemp
->ili_item
.li_ailp
,
771 (xfs_log_item_t
*)(ip
->i_itemp
));
773 xfs_ilock_trace(ip
, 3, lock_flags
, (inst_t
*)__return_address
);
777 * give up write locks. the i/o lock cannot be held nested
778 * if it is being demoted.
785 ASSERT(lock_flags
& (XFS_IOLOCK_EXCL
|XFS_ILOCK_EXCL
));
786 ASSERT((lock_flags
& ~(XFS_IOLOCK_EXCL
|XFS_ILOCK_EXCL
)) == 0);
788 if (lock_flags
& XFS_ILOCK_EXCL
)
789 mrdemote(&ip
->i_lock
);
790 if (lock_flags
& XFS_IOLOCK_EXCL
)
791 mrdemote(&ip
->i_iolock
);
796 * Debug-only routine, without additional rw_semaphore APIs, we can
797 * now only answer requests regarding whether we hold the lock for write
798 * (reader state is outside our visibility, we only track writer state).
800 * Note: this means !xfs_isilocked would give false positives, so don't do that.
807 if ((lock_flags
& (XFS_ILOCK_EXCL
|XFS_ILOCK_SHARED
)) ==
809 if (!ip
->i_lock
.mr_writer
)
813 if ((lock_flags
& (XFS_IOLOCK_EXCL
|XFS_IOLOCK_SHARED
)) ==
815 if (!ip
->i_iolock
.mr_writer
)
823 #ifdef XFS_INODE_TRACE
825 #define KTRACE_ENTER(ip, vk, s, line, ra) \
826 ktrace_enter((ip)->i_trace, \
827 /* 0 */ (void *)(__psint_t)(vk), \
828 /* 1 */ (void *)(s), \
829 /* 2 */ (void *)(__psint_t) line, \
830 /* 3 */ (void *)(__psint_t)atomic_read(&VFS_I(ip)->i_count), \
831 /* 4 */ (void *)(ra), \
833 /* 6 */ (void *)(__psint_t)current_cpu(), \
834 /* 7 */ (void *)(__psint_t)current_pid(), \
835 /* 8 */ (void *)__return_address, \
836 /* 9 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL)
839 * Vnode tracing code.
842 _xfs_itrace_entry(xfs_inode_t
*ip
, const char *func
, inst_t
*ra
)
844 KTRACE_ENTER(ip
, INODE_KTRACE_ENTRY
, func
, 0, ra
);
848 _xfs_itrace_exit(xfs_inode_t
*ip
, const char *func
, inst_t
*ra
)
850 KTRACE_ENTER(ip
, INODE_KTRACE_EXIT
, func
, 0, ra
);
854 xfs_itrace_hold(xfs_inode_t
*ip
, char *file
, int line
, inst_t
*ra
)
856 KTRACE_ENTER(ip
, INODE_KTRACE_HOLD
, file
, line
, ra
);
860 _xfs_itrace_ref(xfs_inode_t
*ip
, char *file
, int line
, inst_t
*ra
)
862 KTRACE_ENTER(ip
, INODE_KTRACE_REF
, file
, line
, ra
);
866 xfs_itrace_rele(xfs_inode_t
*ip
, char *file
, int line
, inst_t
*ra
)
868 KTRACE_ENTER(ip
, INODE_KTRACE_RELE
, file
, line
, ra
);
870 #endif /* XFS_INODE_TRACE */