[CPUFREQ] state info wrong after resume
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / xfs / xfs_iget.c
blobe657c51284606c8d3e98f9a18dee5a7294834be2
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_bit.h"
22 #include "xfs_log.h"
23 #include "xfs_inum.h"
24 #include "xfs_trans.h"
25 #include "xfs_sb.h"
26 #include "xfs_ag.h"
27 #include "xfs_dir2.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_mount.h"
30 #include "xfs_bmap_btree.h"
31 #include "xfs_alloc_btree.h"
32 #include "xfs_ialloc_btree.h"
33 #include "xfs_dir2_sf.h"
34 #include "xfs_attr_sf.h"
35 #include "xfs_dinode.h"
36 #include "xfs_inode.h"
37 #include "xfs_btree.h"
38 #include "xfs_ialloc.h"
39 #include "xfs_quota.h"
40 #include "xfs_utils.h"
43 * Look up an inode by number in the given file system.
44 * The inode is looked up in the cache held in each AG.
45 * If the inode is found in the cache, attach it to the provided
46 * vnode.
48 * If it is not in core, read it in from the file system's device,
49 * add it to the cache and attach the provided vnode.
51 * The inode is locked according to the value of the lock_flags parameter.
52 * This flag parameter indicates how and if the inode's IO lock and inode lock
53 * should be taken.
55 * mp -- the mount point structure for the current file system. It points
56 * to the inode hash table.
57 * tp -- a pointer to the current transaction if there is one. This is
58 * simply passed through to the xfs_iread() call.
59 * ino -- the number of the inode desired. This is the unique identifier
60 * within the file system for the inode being requested.
61 * lock_flags -- flags indicating how to lock the inode. See the comment
62 * for xfs_ilock() for a list of valid values.
63 * bno -- the block number starting the buffer containing the inode,
64 * if known (as by bulkstat), else 0.
66 STATIC int
67 xfs_iget_core(
68 struct inode *inode,
69 xfs_mount_t *mp,
70 xfs_trans_t *tp,
71 xfs_ino_t ino,
72 uint flags,
73 uint lock_flags,
74 xfs_inode_t **ipp,
75 xfs_daddr_t bno)
77 struct inode *old_inode;
78 xfs_inode_t *ip;
79 xfs_inode_t *iq;
80 int error;
81 unsigned long first_index, mask;
82 xfs_perag_t *pag;
83 xfs_agino_t agino;
85 /* the radix tree exists only in inode capable AGs */
86 if (XFS_INO_TO_AGNO(mp, ino) >= mp->m_maxagi)
87 return EINVAL;
89 /* get the perag structure and ensure that it's inode capable */
90 pag = xfs_get_perag(mp, ino);
91 if (!pag->pagi_inodeok)
92 return EINVAL;
93 ASSERT(pag->pag_ici_init);
94 agino = XFS_INO_TO_AGINO(mp, ino);
96 again:
97 read_lock(&pag->pag_ici_lock);
98 ip = radix_tree_lookup(&pag->pag_ici_root, agino);
100 if (ip != NULL) {
102 * If INEW is set this inode is being set up
103 * we need to pause and try again.
105 if (xfs_iflags_test(ip, XFS_INEW)) {
106 read_unlock(&pag->pag_ici_lock);
107 delay(1);
108 XFS_STATS_INC(xs_ig_frecycle);
110 goto again;
113 old_inode = ip->i_vnode;
114 if (old_inode == NULL) {
116 * If IRECLAIM is set this inode is
117 * on its way out of the system,
118 * we need to pause and try again.
120 if (xfs_iflags_test(ip, XFS_IRECLAIM)) {
121 read_unlock(&pag->pag_ici_lock);
122 delay(1);
123 XFS_STATS_INC(xs_ig_frecycle);
125 goto again;
127 ASSERT(xfs_iflags_test(ip, XFS_IRECLAIMABLE));
130 * If lookup is racing with unlink, then we
131 * should return an error immediately so we
132 * don't remove it from the reclaim list and
133 * potentially leak the inode.
135 if ((ip->i_d.di_mode == 0) &&
136 !(flags & XFS_IGET_CREATE)) {
137 read_unlock(&pag->pag_ici_lock);
138 xfs_put_perag(mp, pag);
139 return ENOENT;
142 xfs_itrace_exit_tag(ip, "xfs_iget.alloc");
144 XFS_STATS_INC(xs_ig_found);
145 xfs_iflags_clear(ip, XFS_IRECLAIMABLE);
146 read_unlock(&pag->pag_ici_lock);
148 XFS_MOUNT_ILOCK(mp);
149 list_del_init(&ip->i_reclaim);
150 XFS_MOUNT_IUNLOCK(mp);
152 goto finish_inode;
154 } else if (inode != old_inode) {
155 /* The inode is being torn down, pause and
156 * try again.
158 if (old_inode->i_state & (I_FREEING | I_CLEAR)) {
159 read_unlock(&pag->pag_ici_lock);
160 delay(1);
161 XFS_STATS_INC(xs_ig_frecycle);
163 goto again;
165 /* Chances are the other vnode (the one in the inode) is being torn
166 * down right now, and we landed on top of it. Question is, what do
167 * we do? Unhook the old inode and hook up the new one?
169 cmn_err(CE_PANIC,
170 "xfs_iget_core: ambiguous vns: vp/0x%p, invp/0x%p",
171 old_inode, inode);
175 * Inode cache hit
177 read_unlock(&pag->pag_ici_lock);
178 XFS_STATS_INC(xs_ig_found);
180 finish_inode:
181 if (ip->i_d.di_mode == 0 && !(flags & XFS_IGET_CREATE)) {
182 xfs_put_perag(mp, pag);
183 return ENOENT;
186 if (lock_flags != 0)
187 xfs_ilock(ip, lock_flags);
189 xfs_iflags_clear(ip, XFS_ISTALE);
190 xfs_itrace_exit_tag(ip, "xfs_iget.found");
191 goto return_ip;
195 * Inode cache miss
197 read_unlock(&pag->pag_ici_lock);
198 XFS_STATS_INC(xs_ig_missed);
201 * Read the disk inode attributes into a new inode structure and get
202 * a new vnode for it. This should also initialize i_ino and i_mount.
204 error = xfs_iread(mp, tp, ino, &ip, bno,
205 (flags & XFS_IGET_BULKSTAT) ? XFS_IMAP_BULKSTAT : 0);
206 if (error) {
207 xfs_put_perag(mp, pag);
208 return error;
211 xfs_itrace_exit_tag(ip, "xfs_iget.alloc");
214 mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
215 "xfsino", ip->i_ino);
216 mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino);
217 init_waitqueue_head(&ip->i_ipin_wait);
218 atomic_set(&ip->i_pincount, 0);
219 initnsema(&ip->i_flock, 1, "xfsfino");
221 if (lock_flags)
222 xfs_ilock(ip, lock_flags);
224 if ((ip->i_d.di_mode == 0) && !(flags & XFS_IGET_CREATE)) {
225 xfs_idestroy(ip);
226 xfs_put_perag(mp, pag);
227 return ENOENT;
231 * Preload the radix tree so we can insert safely under the
232 * write spinlock.
234 if (radix_tree_preload(GFP_KERNEL)) {
235 xfs_idestroy(ip);
236 delay(1);
237 goto again;
239 mask = ~(((XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog)) - 1);
240 first_index = agino & mask;
241 write_lock(&pag->pag_ici_lock);
243 * insert the new inode
245 error = radix_tree_insert(&pag->pag_ici_root, agino, ip);
246 if (unlikely(error)) {
247 BUG_ON(error != -EEXIST);
248 write_unlock(&pag->pag_ici_lock);
249 radix_tree_preload_end();
250 xfs_idestroy(ip);
251 XFS_STATS_INC(xs_ig_dup);
252 goto again;
256 * These values _must_ be set before releasing the radix tree lock!
258 ip->i_udquot = ip->i_gdquot = NULL;
259 xfs_iflags_set(ip, XFS_INEW);
261 write_unlock(&pag->pag_ici_lock);
262 radix_tree_preload_end();
265 * Link ip to its mount and thread it on the mount's inode list.
267 XFS_MOUNT_ILOCK(mp);
268 if ((iq = mp->m_inodes)) {
269 ASSERT(iq->i_mprev->i_mnext == iq);
270 ip->i_mprev = iq->i_mprev;
271 iq->i_mprev->i_mnext = ip;
272 iq->i_mprev = ip;
273 ip->i_mnext = iq;
274 } else {
275 ip->i_mnext = ip;
276 ip->i_mprev = ip;
278 mp->m_inodes = ip;
280 XFS_MOUNT_IUNLOCK(mp);
281 xfs_put_perag(mp, pag);
283 return_ip:
284 ASSERT(ip->i_df.if_ext_max ==
285 XFS_IFORK_DSIZE(ip) / sizeof(xfs_bmbt_rec_t));
287 xfs_iflags_set(ip, XFS_IMODIFIED);
288 *ipp = ip;
291 * If we have a real type for an on-disk inode, we can set ops(&unlock)
292 * now. If it's a new inode being created, xfs_ialloc will handle it.
294 xfs_initialize_vnode(mp, inode, ip);
295 return 0;
300 * The 'normal' internal xfs_iget, if needed it will
301 * 'allocate', or 'get', the vnode.
304 xfs_iget(
305 xfs_mount_t *mp,
306 xfs_trans_t *tp,
307 xfs_ino_t ino,
308 uint flags,
309 uint lock_flags,
310 xfs_inode_t **ipp,
311 xfs_daddr_t bno)
313 struct inode *inode;
314 xfs_inode_t *ip;
315 int error;
317 XFS_STATS_INC(xs_ig_attempts);
319 retry:
320 inode = iget_locked(mp->m_super, ino);
321 if (!inode)
322 /* If we got no inode we are out of memory */
323 return ENOMEM;
325 if (inode->i_state & I_NEW) {
326 XFS_STATS_INC(vn_active);
327 XFS_STATS_INC(vn_alloc);
329 error = xfs_iget_core(inode, mp, tp, ino, flags,
330 lock_flags, ipp, bno);
331 if (error) {
332 make_bad_inode(inode);
333 if (inode->i_state & I_NEW)
334 unlock_new_inode(inode);
335 iput(inode);
337 return error;
341 * If the inode is not fully constructed due to
342 * filehandle mismatches wait for the inode to go
343 * away and try again.
345 * iget_locked will call __wait_on_freeing_inode
346 * to wait for the inode to go away.
348 if (is_bad_inode(inode)) {
349 iput(inode);
350 delay(1);
351 goto retry;
354 ip = XFS_I(inode);
355 if (!ip) {
356 iput(inode);
357 delay(1);
358 goto retry;
361 if (lock_flags != 0)
362 xfs_ilock(ip, lock_flags);
363 XFS_STATS_INC(xs_ig_found);
364 *ipp = ip;
365 return 0;
369 * Look for the inode corresponding to the given ino in the hash table.
370 * If it is there and its i_transp pointer matches tp, return it.
371 * Otherwise, return NULL.
373 xfs_inode_t *
374 xfs_inode_incore(xfs_mount_t *mp,
375 xfs_ino_t ino,
376 xfs_trans_t *tp)
378 xfs_inode_t *ip;
379 xfs_perag_t *pag;
381 pag = xfs_get_perag(mp, ino);
382 read_lock(&pag->pag_ici_lock);
383 ip = radix_tree_lookup(&pag->pag_ici_root, XFS_INO_TO_AGINO(mp, ino));
384 read_unlock(&pag->pag_ici_lock);
385 xfs_put_perag(mp, pag);
387 /* the returned inode must match the transaction */
388 if (ip && (ip->i_transp != tp))
389 return NULL;
390 return ip;
394 * Decrement reference count of an inode structure and unlock it.
396 * ip -- the inode being released
397 * lock_flags -- this parameter indicates the inode's locks to be
398 * to be released. See the comment on xfs_iunlock() for a list
399 * of valid values.
401 void
402 xfs_iput(xfs_inode_t *ip,
403 uint lock_flags)
405 xfs_itrace_entry(ip);
406 xfs_iunlock(ip, lock_flags);
407 IRELE(ip);
411 * Special iput for brand-new inodes that are still locked
413 void
414 xfs_iput_new(xfs_inode_t *ip,
415 uint lock_flags)
417 struct inode *inode = ip->i_vnode;
419 xfs_itrace_entry(ip);
421 if ((ip->i_d.di_mode == 0)) {
422 ASSERT(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
423 make_bad_inode(inode);
425 if (inode->i_state & I_NEW)
426 unlock_new_inode(inode);
427 if (lock_flags)
428 xfs_iunlock(ip, lock_flags);
429 IRELE(ip);
434 * This routine embodies the part of the reclaim code that pulls
435 * the inode from the inode hash table and the mount structure's
436 * inode list.
437 * This should only be called from xfs_reclaim().
439 void
440 xfs_ireclaim(xfs_inode_t *ip)
443 * Remove from old hash list and mount list.
445 XFS_STATS_INC(xs_ig_reclaims);
447 xfs_iextract(ip);
450 * Here we do a spurious inode lock in order to coordinate with
451 * xfs_sync(). This is because xfs_sync() references the inodes
452 * in the mount list without taking references on the corresponding
453 * vnodes. We make that OK here by ensuring that we wait until
454 * the inode is unlocked in xfs_sync() before we go ahead and
455 * free it. We get both the regular lock and the io lock because
456 * the xfs_sync() code may need to drop the regular one but will
457 * still hold the io lock.
459 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
462 * Release dquots (and their references) if any. An inode may escape
463 * xfs_inactive and get here via vn_alloc->vn_reclaim path.
465 XFS_QM_DQDETACH(ip->i_mount, ip);
468 * Pull our behavior descriptor from the vnode chain.
470 if (ip->i_vnode) {
471 ip->i_vnode->i_private = NULL;
472 ip->i_vnode = NULL;
476 * Free all memory associated with the inode.
478 xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
479 xfs_idestroy(ip);
483 * This routine removes an about-to-be-destroyed inode from
484 * all of the lists in which it is located with the exception
485 * of the behavior chain.
487 void
488 xfs_iextract(
489 xfs_inode_t *ip)
491 xfs_mount_t *mp = ip->i_mount;
492 xfs_perag_t *pag = xfs_get_perag(mp, ip->i_ino);
493 xfs_inode_t *iq;
495 write_lock(&pag->pag_ici_lock);
496 radix_tree_delete(&pag->pag_ici_root, XFS_INO_TO_AGINO(mp, ip->i_ino));
497 write_unlock(&pag->pag_ici_lock);
498 xfs_put_perag(mp, pag);
501 * Remove from mount's inode list.
503 XFS_MOUNT_ILOCK(mp);
504 ASSERT((ip->i_mnext != NULL) && (ip->i_mprev != NULL));
505 iq = ip->i_mnext;
506 iq->i_mprev = ip->i_mprev;
507 ip->i_mprev->i_mnext = iq;
510 * Fix up the head pointer if it points to the inode being deleted.
512 if (mp->m_inodes == ip) {
513 if (ip == iq) {
514 mp->m_inodes = NULL;
515 } else {
516 mp->m_inodes = iq;
520 /* Deal with the deleted inodes list */
521 list_del_init(&ip->i_reclaim);
523 mp->m_ireclaims++;
524 XFS_MOUNT_IUNLOCK(mp);
528 * This is a wrapper routine around the xfs_ilock() routine
529 * used to centralize some grungy code. It is used in places
530 * that wish to lock the inode solely for reading the extents.
531 * The reason these places can't just call xfs_ilock(SHARED)
532 * is that the inode lock also guards to bringing in of the
533 * extents from disk for a file in b-tree format. If the inode
534 * is in b-tree format, then we need to lock the inode exclusively
535 * until the extents are read in. Locking it exclusively all
536 * the time would limit our parallelism unnecessarily, though.
537 * What we do instead is check to see if the extents have been
538 * read in yet, and only lock the inode exclusively if they
539 * have not.
541 * The function returns a value which should be given to the
542 * corresponding xfs_iunlock_map_shared(). This value is
543 * the mode in which the lock was actually taken.
545 uint
546 xfs_ilock_map_shared(
547 xfs_inode_t *ip)
549 uint lock_mode;
551 if ((ip->i_d.di_format == XFS_DINODE_FMT_BTREE) &&
552 ((ip->i_df.if_flags & XFS_IFEXTENTS) == 0)) {
553 lock_mode = XFS_ILOCK_EXCL;
554 } else {
555 lock_mode = XFS_ILOCK_SHARED;
558 xfs_ilock(ip, lock_mode);
560 return lock_mode;
564 * This is simply the unlock routine to go with xfs_ilock_map_shared().
565 * All it does is call xfs_iunlock() with the given lock_mode.
567 void
568 xfs_iunlock_map_shared(
569 xfs_inode_t *ip,
570 unsigned int lock_mode)
572 xfs_iunlock(ip, lock_mode);
576 * The xfs inode contains 2 locks: a multi-reader lock called the
577 * i_iolock and a multi-reader lock called the i_lock. This routine
578 * allows either or both of the locks to be obtained.
580 * The 2 locks should always be ordered so that the IO lock is
581 * obtained first in order to prevent deadlock.
583 * ip -- the inode being locked
584 * lock_flags -- this parameter indicates the inode's locks
585 * to be locked. It can be:
586 * XFS_IOLOCK_SHARED,
587 * XFS_IOLOCK_EXCL,
588 * XFS_ILOCK_SHARED,
589 * XFS_ILOCK_EXCL,
590 * XFS_IOLOCK_SHARED | XFS_ILOCK_SHARED,
591 * XFS_IOLOCK_SHARED | XFS_ILOCK_EXCL,
592 * XFS_IOLOCK_EXCL | XFS_ILOCK_SHARED,
593 * XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL
595 void
596 xfs_ilock(xfs_inode_t *ip,
597 uint lock_flags)
600 * You can't set both SHARED and EXCL for the same lock,
601 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
602 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
604 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
605 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
606 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
607 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
608 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
610 if (lock_flags & XFS_IOLOCK_EXCL) {
611 mrupdate_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
612 } else if (lock_flags & XFS_IOLOCK_SHARED) {
613 mraccess_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
615 if (lock_flags & XFS_ILOCK_EXCL) {
616 mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
617 } else if (lock_flags & XFS_ILOCK_SHARED) {
618 mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
620 xfs_ilock_trace(ip, 1, lock_flags, (inst_t *)__return_address);
624 * This is just like xfs_ilock(), except that the caller
625 * is guaranteed not to sleep. It returns 1 if it gets
626 * the requested locks and 0 otherwise. If the IO lock is
627 * obtained but the inode lock cannot be, then the IO lock
628 * is dropped before returning.
630 * ip -- the inode being locked
631 * lock_flags -- this parameter indicates the inode's locks to be
632 * to be locked. See the comment for xfs_ilock() for a list
633 * of valid values.
637 xfs_ilock_nowait(xfs_inode_t *ip,
638 uint lock_flags)
640 int iolocked;
641 int ilocked;
644 * You can't set both SHARED and EXCL for the same lock,
645 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
646 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
648 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
649 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
650 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
651 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
652 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
654 iolocked = 0;
655 if (lock_flags & XFS_IOLOCK_EXCL) {
656 iolocked = mrtryupdate(&ip->i_iolock);
657 if (!iolocked) {
658 return 0;
660 } else if (lock_flags & XFS_IOLOCK_SHARED) {
661 iolocked = mrtryaccess(&ip->i_iolock);
662 if (!iolocked) {
663 return 0;
666 if (lock_flags & XFS_ILOCK_EXCL) {
667 ilocked = mrtryupdate(&ip->i_lock);
668 if (!ilocked) {
669 if (iolocked) {
670 mrunlock(&ip->i_iolock);
672 return 0;
674 } else if (lock_flags & XFS_ILOCK_SHARED) {
675 ilocked = mrtryaccess(&ip->i_lock);
676 if (!ilocked) {
677 if (iolocked) {
678 mrunlock(&ip->i_iolock);
680 return 0;
683 xfs_ilock_trace(ip, 2, lock_flags, (inst_t *)__return_address);
684 return 1;
688 * xfs_iunlock() is used to drop the inode locks acquired with
689 * xfs_ilock() and xfs_ilock_nowait(). The caller must pass
690 * in the flags given to xfs_ilock() or xfs_ilock_nowait() so
691 * that we know which locks to drop.
693 * ip -- the inode being unlocked
694 * lock_flags -- this parameter indicates the inode's locks to be
695 * to be unlocked. See the comment for xfs_ilock() for a list
696 * of valid values for this parameter.
699 void
700 xfs_iunlock(xfs_inode_t *ip,
701 uint lock_flags)
704 * You can't set both SHARED and EXCL for the same lock,
705 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
706 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
708 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
709 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
710 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
711 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
712 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_IUNLOCK_NONOTIFY |
713 XFS_LOCK_DEP_MASK)) == 0);
714 ASSERT(lock_flags != 0);
716 if (lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) {
717 ASSERT(!(lock_flags & XFS_IOLOCK_SHARED) ||
718 (ismrlocked(&ip->i_iolock, MR_ACCESS)));
719 ASSERT(!(lock_flags & XFS_IOLOCK_EXCL) ||
720 (ismrlocked(&ip->i_iolock, MR_UPDATE)));
721 mrunlock(&ip->i_iolock);
724 if (lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) {
725 ASSERT(!(lock_flags & XFS_ILOCK_SHARED) ||
726 (ismrlocked(&ip->i_lock, MR_ACCESS)));
727 ASSERT(!(lock_flags & XFS_ILOCK_EXCL) ||
728 (ismrlocked(&ip->i_lock, MR_UPDATE)));
729 mrunlock(&ip->i_lock);
732 * Let the AIL know that this item has been unlocked in case
733 * it is in the AIL and anyone is waiting on it. Don't do
734 * this if the caller has asked us not to.
736 if (!(lock_flags & XFS_IUNLOCK_NONOTIFY) &&
737 ip->i_itemp != NULL) {
738 xfs_trans_unlocked_item(ip->i_mount,
739 (xfs_log_item_t*)(ip->i_itemp));
742 xfs_ilock_trace(ip, 3, lock_flags, (inst_t *)__return_address);
746 * give up write locks. the i/o lock cannot be held nested
747 * if it is being demoted.
749 void
750 xfs_ilock_demote(xfs_inode_t *ip,
751 uint lock_flags)
753 ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL));
754 ASSERT((lock_flags & ~(XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)) == 0);
756 if (lock_flags & XFS_ILOCK_EXCL) {
757 ASSERT(ismrlocked(&ip->i_lock, MR_UPDATE));
758 mrdemote(&ip->i_lock);
760 if (lock_flags & XFS_IOLOCK_EXCL) {
761 ASSERT(ismrlocked(&ip->i_iolock, MR_UPDATE));
762 mrdemote(&ip->i_iolock);
767 * The following three routines simply manage the i_flock
768 * semaphore embedded in the inode. This semaphore synchronizes
769 * processes attempting to flush the in-core inode back to disk.
771 void
772 xfs_iflock(xfs_inode_t *ip)
774 psema(&(ip->i_flock), PINOD|PLTWAIT);
778 xfs_iflock_nowait(xfs_inode_t *ip)
780 return (cpsema(&(ip->i_flock)));
783 void
784 xfs_ifunlock(xfs_inode_t *ip)
786 ASSERT(issemalocked(&(ip->i_flock)));
787 vsema(&(ip->i_flock));