[XFS] Combine the XFS and Linux inodes
[linux-block.git] / fs / xfs / xfs_iget.c
1 /*
2  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
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.
8  *
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.
13  *
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
17  */
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"
41
42 /*
43  * Check the validity of the inode we just found it the cache
44  */
45 static int
46 xfs_iget_cache_hit(
47         struct xfs_perag        *pag,
48         struct xfs_inode        *ip,
49         int                     flags,
50         int                     lock_flags) __releases(pag->pag_ici_lock)
51 {
52         struct xfs_mount        *mp = ip->i_mount;
53         int                     error = 0;
54
55         /*
56          * If INEW is set this inode is being set up
57          * If IRECLAIM is set this inode is being torn down
58          * Pause and try again.
59          */
60         if (xfs_iflags_test(ip, (XFS_INEW|XFS_IRECLAIM))) {
61                 error = EAGAIN;
62                 XFS_STATS_INC(xs_ig_frecycle);
63                 goto out_error;
64         }
65
66         /* If IRECLAIMABLE is set, we've torn down the vfs inode part */
67         if (xfs_iflags_test(ip, XFS_IRECLAIMABLE)) {
68
69                 /*
70                  * If lookup is racing with unlink, then we should return an
71                  * error immediately so we don't remove it from the reclaim
72                  * list and potentially leak the inode.
73                  */
74
75                 if ((ip->i_d.di_mode == 0) && !(flags & XFS_IGET_CREATE)) {
76                         error = ENOENT;
77                         goto out_error;
78                 }
79
80                 xfs_itrace_exit_tag(ip, "xfs_iget.alloc");
81
82                 /*
83                  * We need to re-initialise the VFS inode as it has been
84                  * 'freed' by the VFS. Do this here so we can deal with
85                  * errors cleanly, then tag it so it can be set up correctly
86                  * later.
87                  */
88                 if (!inode_init_always(mp->m_super, VFS_I(ip))) {
89                         error = ENOMEM;
90                         goto out_error;
91                 }
92                 xfs_iflags_set(ip, XFS_INEW);
93                 xfs_iflags_clear(ip, XFS_IRECLAIMABLE);
94                 read_unlock(&pag->pag_ici_lock);
95
96                 XFS_MOUNT_ILOCK(mp);
97                 list_del_init(&ip->i_reclaim);
98                 XFS_MOUNT_IUNLOCK(mp);
99         } else if (!igrab(VFS_I(ip))) {
100                 /* If the VFS inode is being torn down, pause and try again. */
101                 error = EAGAIN;
102                 XFS_STATS_INC(xs_ig_frecycle);
103                 goto out_error;
104         } else {
105                 /* we've got a live one */
106                 read_unlock(&pag->pag_ici_lock);
107         }
108
109         if (ip->i_d.di_mode == 0 && !(flags & XFS_IGET_CREATE)) {
110                 error = ENOENT;
111                 goto out;
112         }
113
114         if (lock_flags != 0)
115                 xfs_ilock(ip, lock_flags);
116
117         xfs_iflags_clear(ip, XFS_ISTALE);
118         xfs_itrace_exit_tag(ip, "xfs_iget.found");
119         XFS_STATS_INC(xs_ig_found);
120         return 0;
121
122 out_error:
123         read_unlock(&pag->pag_ici_lock);
124 out:
125         return error;
126 }
127
128
129 static int
130 xfs_iget_cache_miss(
131         struct xfs_mount        *mp,
132         struct xfs_perag        *pag,
133         xfs_trans_t             *tp,
134         xfs_ino_t               ino,
135         struct xfs_inode        **ipp,
136         xfs_daddr_t             bno,
137         int                     flags,
138         int                     lock_flags) __releases(pag->pag_ici_lock)
139 {
140         struct xfs_inode        *ip;
141         int                     error;
142         unsigned long           first_index, mask;
143         xfs_agino_t             agino = XFS_INO_TO_AGINO(mp, ino);
144
145         /*
146          * Read the disk inode attributes into a new inode structure and get
147          * a new vnode for it. This should also initialize i_ino and i_mount.
148          */
149         error = xfs_iread(mp, tp, ino, &ip, bno,
150                           (flags & XFS_IGET_BULKSTAT) ? XFS_IMAP_BULKSTAT : 0);
151         if (error)
152                 return error;
153
154         xfs_itrace_exit_tag(ip, "xfs_iget.alloc");
155
156         if ((ip->i_d.di_mode == 0) && !(flags & XFS_IGET_CREATE)) {
157                 error = ENOENT;
158                 goto out_destroy;
159         }
160
161         /*
162          * Preload the radix tree so we can insert safely under the
163          * write spinlock.
164          */
165         if (radix_tree_preload(GFP_KERNEL)) {
166                 error = EAGAIN;
167                 goto out_destroy;
168         }
169
170         if (lock_flags)
171                 xfs_ilock(ip, lock_flags);
172
173         mask = ~(((XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog)) - 1);
174         first_index = agino & mask;
175         write_lock(&pag->pag_ici_lock);
176
177         /* insert the new inode */
178         error = radix_tree_insert(&pag->pag_ici_root, agino, ip);
179         if (unlikely(error)) {
180                 WARN_ON(error != -EEXIST);
181                 XFS_STATS_INC(xs_ig_dup);
182                 error = EAGAIN;
183                 goto out_unlock;
184         }
185
186         /* These values _must_ be set before releasing the radix tree lock! */
187         ip->i_udquot = ip->i_gdquot = NULL;
188         xfs_iflags_set(ip, XFS_INEW);
189
190         write_unlock(&pag->pag_ici_lock);
191         radix_tree_preload_end();
192         *ipp = ip;
193         return 0;
194
195 out_unlock:
196         write_unlock(&pag->pag_ici_lock);
197         radix_tree_preload_end();
198 out_destroy:
199         xfs_idestroy(ip);
200         return error;
201 }
202
203 /*
204  * Look up an inode by number in the given file system.
205  * The inode is looked up in the cache held in each AG.
206  * If the inode is found in the cache, initialise the vfs inode
207  * if necessary.
208  *
209  * If it is not in core, read it in from the file system's device,
210  * add it to the cache and initialise the vfs inode.
211  *
212  * The inode is locked according to the value of the lock_flags parameter.
213  * This flag parameter indicates how and if the inode's IO lock and inode lock
214  * should be taken.
215  *
216  * mp -- the mount point structure for the current file system.  It points
217  *       to the inode hash table.
218  * tp -- a pointer to the current transaction if there is one.  This is
219  *       simply passed through to the xfs_iread() call.
220  * ino -- the number of the inode desired.  This is the unique identifier
221  *        within the file system for the inode being requested.
222  * lock_flags -- flags indicating how to lock the inode.  See the comment
223  *               for xfs_ilock() for a list of valid values.
224  * bno -- the block number starting the buffer containing the inode,
225  *        if known (as by bulkstat), else 0.
226  */
227 int
228 xfs_iget(
229         xfs_mount_t     *mp,
230         xfs_trans_t     *tp,
231         xfs_ino_t       ino,
232         uint            flags,
233         uint            lock_flags,
234         xfs_inode_t     **ipp,
235         xfs_daddr_t     bno)
236 {
237         xfs_inode_t     *ip;
238         int             error;
239         xfs_perag_t     *pag;
240         xfs_agino_t     agino;
241
242         /* the radix tree exists only in inode capable AGs */
243         if (XFS_INO_TO_AGNO(mp, ino) >= mp->m_maxagi)
244                 return EINVAL;
245
246         /* get the perag structure and ensure that it's inode capable */
247         pag = xfs_get_perag(mp, ino);
248         if (!pag->pagi_inodeok)
249                 return EINVAL;
250         ASSERT(pag->pag_ici_init);
251         agino = XFS_INO_TO_AGINO(mp, ino);
252
253 again:
254         error = 0;
255         read_lock(&pag->pag_ici_lock);
256         ip = radix_tree_lookup(&pag->pag_ici_root, agino);
257
258         if (ip) {
259                 error = xfs_iget_cache_hit(pag, ip, flags, lock_flags);
260                 if (error)
261                         goto out_error_or_again;
262         } else {
263                 read_unlock(&pag->pag_ici_lock);
264                 XFS_STATS_INC(xs_ig_missed);
265
266                 error = xfs_iget_cache_miss(mp, pag, tp, ino, &ip, bno,
267                                                         flags, lock_flags);
268                 if (error)
269                         goto out_error_or_again;
270         }
271         xfs_put_perag(mp, pag);
272
273         xfs_iflags_set(ip, XFS_IMODIFIED);
274         *ipp = ip;
275
276         ASSERT(ip->i_df.if_ext_max ==
277                XFS_IFORK_DSIZE(ip) / sizeof(xfs_bmbt_rec_t));
278         /*
279          * If we have a real type for an on-disk inode, we can set ops(&unlock)
280          * now.  If it's a new inode being created, xfs_ialloc will handle it.
281          */
282         if (xfs_iflags_test(ip, XFS_INEW) && ip->i_d.di_mode != 0)
283                 xfs_setup_inode(ip);
284         return 0;
285
286 out_error_or_again:
287         if (error == EAGAIN) {
288                 delay(1);
289                 goto again;
290         }
291         xfs_put_perag(mp, pag);
292         return error;
293 }
294
295
296 /*
297  * Look for the inode corresponding to the given ino in the hash table.
298  * If it is there and its i_transp pointer matches tp, return it.
299  * Otherwise, return NULL.
300  */
301 xfs_inode_t *
302 xfs_inode_incore(xfs_mount_t    *mp,
303                  xfs_ino_t      ino,
304                  xfs_trans_t    *tp)
305 {
306         xfs_inode_t     *ip;
307         xfs_perag_t     *pag;
308
309         pag = xfs_get_perag(mp, ino);
310         read_lock(&pag->pag_ici_lock);
311         ip = radix_tree_lookup(&pag->pag_ici_root, XFS_INO_TO_AGINO(mp, ino));
312         read_unlock(&pag->pag_ici_lock);
313         xfs_put_perag(mp, pag);
314
315         /* the returned inode must match the transaction */
316         if (ip && (ip->i_transp != tp))
317                 return NULL;
318         return ip;
319 }
320
321 /*
322  * Decrement reference count of an inode structure and unlock it.
323  *
324  * ip -- the inode being released
325  * lock_flags -- this parameter indicates the inode's locks to be
326  *       to be released.  See the comment on xfs_iunlock() for a list
327  *       of valid values.
328  */
329 void
330 xfs_iput(xfs_inode_t    *ip,
331          uint           lock_flags)
332 {
333         xfs_itrace_entry(ip);
334         xfs_iunlock(ip, lock_flags);
335         IRELE(ip);
336 }
337
338 /*
339  * Special iput for brand-new inodes that are still locked
340  */
341 void
342 xfs_iput_new(
343         xfs_inode_t     *ip,
344         uint            lock_flags)
345 {
346         struct inode    *inode = VFS_I(ip);
347
348         xfs_itrace_entry(ip);
349
350         if ((ip->i_d.di_mode == 0)) {
351                 ASSERT(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
352                 make_bad_inode(inode);
353         }
354         if (inode->i_state & I_NEW)
355                 unlock_new_inode(inode);
356         if (lock_flags)
357                 xfs_iunlock(ip, lock_flags);
358         IRELE(ip);
359 }
360
361
362 /*
363  * This routine embodies the part of the reclaim code that pulls
364  * the inode from the inode hash table and the mount structure's
365  * inode list.
366  * This should only be called from xfs_reclaim().
367  */
368 void
369 xfs_ireclaim(xfs_inode_t *ip)
370 {
371         /*
372          * Remove from old hash list and mount list.
373          */
374         XFS_STATS_INC(xs_ig_reclaims);
375
376         xfs_iextract(ip);
377
378         /*
379          * Here we do a spurious inode lock in order to coordinate with inode
380          * cache radix tree lookups.  This is because the lookup can reference
381          * the inodes in the cache without taking references.  We make that OK
382          * here by ensuring that we wait until the inode is unlocked after the
383          * lookup before we go ahead and free it.  We get both the ilock and
384          * the iolock because the code may need to drop the ilock one but will
385          * still hold the iolock.
386          */
387         xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
388
389         /*
390          * Release dquots (and their references) if any. An inode may escape
391          * xfs_inactive and get here via vn_alloc->vn_reclaim path.
392          */
393         XFS_QM_DQDETACH(ip->i_mount, ip);
394
395         /*
396          * Free all memory associated with the inode.
397          */
398         xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
399         xfs_idestroy(ip);
400 }
401
402 /*
403  * This routine removes an about-to-be-destroyed inode from
404  * all of the lists in which it is located with the exception
405  * of the behavior chain.
406  */
407 void
408 xfs_iextract(
409         xfs_inode_t     *ip)
410 {
411         xfs_mount_t     *mp = ip->i_mount;
412         xfs_perag_t     *pag = xfs_get_perag(mp, ip->i_ino);
413
414         write_lock(&pag->pag_ici_lock);
415         radix_tree_delete(&pag->pag_ici_root, XFS_INO_TO_AGINO(mp, ip->i_ino));
416         write_unlock(&pag->pag_ici_lock);
417         xfs_put_perag(mp, pag);
418
419         /* Deal with the deleted inodes list */
420         XFS_MOUNT_ILOCK(mp);
421         list_del_init(&ip->i_reclaim);
422         mp->m_ireclaims++;
423         XFS_MOUNT_IUNLOCK(mp);
424 }
425
426 /*
427  * This is a wrapper routine around the xfs_ilock() routine
428  * used to centralize some grungy code.  It is used in places
429  * that wish to lock the inode solely for reading the extents.
430  * The reason these places can't just call xfs_ilock(SHARED)
431  * is that the inode lock also guards to bringing in of the
432  * extents from disk for a file in b-tree format.  If the inode
433  * is in b-tree format, then we need to lock the inode exclusively
434  * until the extents are read in.  Locking it exclusively all
435  * the time would limit our parallelism unnecessarily, though.
436  * What we do instead is check to see if the extents have been
437  * read in yet, and only lock the inode exclusively if they
438  * have not.
439  *
440  * The function returns a value which should be given to the
441  * corresponding xfs_iunlock_map_shared().  This value is
442  * the mode in which the lock was actually taken.
443  */
444 uint
445 xfs_ilock_map_shared(
446         xfs_inode_t     *ip)
447 {
448         uint    lock_mode;
449
450         if ((ip->i_d.di_format == XFS_DINODE_FMT_BTREE) &&
451             ((ip->i_df.if_flags & XFS_IFEXTENTS) == 0)) {
452                 lock_mode = XFS_ILOCK_EXCL;
453         } else {
454                 lock_mode = XFS_ILOCK_SHARED;
455         }
456
457         xfs_ilock(ip, lock_mode);
458
459         return lock_mode;
460 }
461
462 /*
463  * This is simply the unlock routine to go with xfs_ilock_map_shared().
464  * All it does is call xfs_iunlock() with the given lock_mode.
465  */
466 void
467 xfs_iunlock_map_shared(
468         xfs_inode_t     *ip,
469         unsigned int    lock_mode)
470 {
471         xfs_iunlock(ip, lock_mode);
472 }
473
474 /*
475  * The xfs inode contains 2 locks: a multi-reader lock called the
476  * i_iolock and a multi-reader lock called the i_lock.  This routine
477  * allows either or both of the locks to be obtained.
478  *
479  * The 2 locks should always be ordered so that the IO lock is
480  * obtained first in order to prevent deadlock.
481  *
482  * ip -- the inode being locked
483  * lock_flags -- this parameter indicates the inode's locks
484  *       to be locked.  It can be:
485  *              XFS_IOLOCK_SHARED,
486  *              XFS_IOLOCK_EXCL,
487  *              XFS_ILOCK_SHARED,
488  *              XFS_ILOCK_EXCL,
489  *              XFS_IOLOCK_SHARED | XFS_ILOCK_SHARED,
490  *              XFS_IOLOCK_SHARED | XFS_ILOCK_EXCL,
491  *              XFS_IOLOCK_EXCL | XFS_ILOCK_SHARED,
492  *              XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL
493  */
494 void
495 xfs_ilock(
496         xfs_inode_t             *ip,
497         uint                    lock_flags)
498 {
499         /*
500          * You can't set both SHARED and EXCL for the same lock,
501          * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
502          * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
503          */
504         ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
505                (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
506         ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
507                (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
508         ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
509
510         if (lock_flags & XFS_IOLOCK_EXCL)
511                 mrupdate_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
512         else if (lock_flags & XFS_IOLOCK_SHARED)
513                 mraccess_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
514
515         if (lock_flags & XFS_ILOCK_EXCL)
516                 mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
517         else if (lock_flags & XFS_ILOCK_SHARED)
518                 mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
519
520         xfs_ilock_trace(ip, 1, lock_flags, (inst_t *)__return_address);
521 }
522
523 /*
524  * This is just like xfs_ilock(), except that the caller
525  * is guaranteed not to sleep.  It returns 1 if it gets
526  * the requested locks and 0 otherwise.  If the IO lock is
527  * obtained but the inode lock cannot be, then the IO lock
528  * is dropped before returning.
529  *
530  * ip -- the inode being locked
531  * lock_flags -- this parameter indicates the inode's locks to be
532  *       to be locked.  See the comment for xfs_ilock() for a list
533  *       of valid values.
534  */
535 int
536 xfs_ilock_nowait(
537         xfs_inode_t             *ip,
538         uint                    lock_flags)
539 {
540         /*
541          * You can't set both SHARED and EXCL for the same lock,
542          * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
543          * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
544          */
545         ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
546                (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
547         ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
548                (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
549         ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
550
551         if (lock_flags & XFS_IOLOCK_EXCL) {
552                 if (!mrtryupdate(&ip->i_iolock))
553                         goto out;
554         } else if (lock_flags & XFS_IOLOCK_SHARED) {
555                 if (!mrtryaccess(&ip->i_iolock))
556                         goto out;
557         }
558         if (lock_flags & XFS_ILOCK_EXCL) {
559                 if (!mrtryupdate(&ip->i_lock))
560                         goto out_undo_iolock;
561         } else if (lock_flags & XFS_ILOCK_SHARED) {
562                 if (!mrtryaccess(&ip->i_lock))
563                         goto out_undo_iolock;
564         }
565         xfs_ilock_trace(ip, 2, lock_flags, (inst_t *)__return_address);
566         return 1;
567
568  out_undo_iolock:
569         if (lock_flags & XFS_IOLOCK_EXCL)
570                 mrunlock_excl(&ip->i_iolock);
571         else if (lock_flags & XFS_IOLOCK_SHARED)
572                 mrunlock_shared(&ip->i_iolock);
573  out:
574         return 0;
575 }
576
577 /*
578  * xfs_iunlock() is used to drop the inode locks acquired with
579  * xfs_ilock() and xfs_ilock_nowait().  The caller must pass
580  * in the flags given to xfs_ilock() or xfs_ilock_nowait() so
581  * that we know which locks to drop.
582  *
583  * ip -- the inode being unlocked
584  * lock_flags -- this parameter indicates the inode's locks to be
585  *       to be unlocked.  See the comment for xfs_ilock() for a list
586  *       of valid values for this parameter.
587  *
588  */
589 void
590 xfs_iunlock(
591         xfs_inode_t             *ip,
592         uint                    lock_flags)
593 {
594         /*
595          * You can't set both SHARED and EXCL for the same lock,
596          * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
597          * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
598          */
599         ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
600                (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
601         ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
602                (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
603         ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_IUNLOCK_NONOTIFY |
604                         XFS_LOCK_DEP_MASK)) == 0);
605         ASSERT(lock_flags != 0);
606
607         if (lock_flags & XFS_IOLOCK_EXCL)
608                 mrunlock_excl(&ip->i_iolock);
609         else if (lock_flags & XFS_IOLOCK_SHARED)
610                 mrunlock_shared(&ip->i_iolock);
611
612         if (lock_flags & XFS_ILOCK_EXCL)
613                 mrunlock_excl(&ip->i_lock);
614         else if (lock_flags & XFS_ILOCK_SHARED)
615                 mrunlock_shared(&ip->i_lock);
616
617         if ((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) &&
618             !(lock_flags & XFS_IUNLOCK_NONOTIFY) && ip->i_itemp) {
619                 /*
620                  * Let the AIL know that this item has been unlocked in case
621                  * it is in the AIL and anyone is waiting on it.  Don't do
622                  * this if the caller has asked us not to.
623                  */
624                 xfs_trans_unlocked_item(ip->i_mount,
625                                         (xfs_log_item_t*)(ip->i_itemp));
626         }
627         xfs_ilock_trace(ip, 3, lock_flags, (inst_t *)__return_address);
628 }
629
630 /*
631  * give up write locks.  the i/o lock cannot be held nested
632  * if it is being demoted.
633  */
634 void
635 xfs_ilock_demote(
636         xfs_inode_t             *ip,
637         uint                    lock_flags)
638 {
639         ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL));
640         ASSERT((lock_flags & ~(XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)) == 0);
641
642         if (lock_flags & XFS_ILOCK_EXCL)
643                 mrdemote(&ip->i_lock);
644         if (lock_flags & XFS_IOLOCK_EXCL)
645                 mrdemote(&ip->i_iolock);
646 }
647
648 #ifdef DEBUG
649 /*
650  * Debug-only routine, without additional rw_semaphore APIs, we can
651  * now only answer requests regarding whether we hold the lock for write
652  * (reader state is outside our visibility, we only track writer state).
653  *
654  * Note: this means !xfs_isilocked would give false positives, so don't do that.
655  */
656 int
657 xfs_isilocked(
658         xfs_inode_t             *ip,
659         uint                    lock_flags)
660 {
661         if ((lock_flags & (XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)) ==
662                         XFS_ILOCK_EXCL) {
663                 if (!ip->i_lock.mr_writer)
664                         return 0;
665         }
666
667         if ((lock_flags & (XFS_IOLOCK_EXCL|XFS_IOLOCK_SHARED)) ==
668                         XFS_IOLOCK_EXCL) {
669                 if (!ip->i_iolock.mr_writer)
670                         return 0;
671         }
672
673         return 1;
674 }
675 #endif
676