3b5b78aa3b8788a029586894dcb474d41ddf4d65
[deliverable/linux.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_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_mount.h"
29 #include "xfs_bmap_btree.h"
30 #include "xfs_alloc_btree.h"
31 #include "xfs_ialloc_btree.h"
32 #include "xfs_dinode.h"
33 #include "xfs_inode.h"
34 #include "xfs_btree.h"
35 #include "xfs_ialloc.h"
36 #include "xfs_quota.h"
37 #include "xfs_utils.h"
38 #include "xfs_trans_priv.h"
39 #include "xfs_inode_item.h"
40 #include "xfs_bmap.h"
41 #include "xfs_trace.h"
42
43
44 /*
45 * Define xfs inode iolock lockdep classes. We need to ensure that all active
46 * inodes are considered the same for lockdep purposes, including inodes that
47 * are recycled through the XFS_IRECLAIMABLE state. This is the the only way to
48 * guarantee the locks are considered the same when there are multiple lock
49 * initialisation siteѕ. Also, define a reclaimable inode class so it is
50 * obvious in lockdep reports which class the report is against.
51 */
52 static struct lock_class_key xfs_iolock_active;
53 struct lock_class_key xfs_iolock_reclaimable;
54
55 /*
56 * Allocate and initialise an xfs_inode.
57 */
58 STATIC struct xfs_inode *
59 xfs_inode_alloc(
60 struct xfs_mount *mp,
61 xfs_ino_t ino)
62 {
63 struct xfs_inode *ip;
64
65 /*
66 * if this didn't occur in transactions, we could use
67 * KM_MAYFAIL and return NULL here on ENOMEM. Set the
68 * code up to do this anyway.
69 */
70 ip = kmem_zone_alloc(xfs_inode_zone, KM_SLEEP);
71 if (!ip)
72 return NULL;
73 if (inode_init_always(mp->m_super, VFS_I(ip))) {
74 kmem_zone_free(xfs_inode_zone, ip);
75 return NULL;
76 }
77
78 ASSERT(atomic_read(&ip->i_pincount) == 0);
79 ASSERT(!spin_is_locked(&ip->i_flags_lock));
80 ASSERT(!xfs_isiflocked(ip));
81 ASSERT(ip->i_ino == 0);
82
83 mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino);
84 lockdep_set_class_and_name(&ip->i_iolock.mr_lock,
85 &xfs_iolock_active, "xfs_iolock_active");
86
87 /* initialise the xfs inode */
88 ip->i_ino = ino;
89 ip->i_mount = mp;
90 memset(&ip->i_imap, 0, sizeof(struct xfs_imap));
91 ip->i_afp = NULL;
92 memset(&ip->i_df, 0, sizeof(xfs_ifork_t));
93 ip->i_flags = 0;
94 ip->i_update_core = 0;
95 ip->i_delayed_blks = 0;
96 memset(&ip->i_d, 0, sizeof(xfs_icdinode_t));
97 ip->i_new_size = 0;
98
99 return ip;
100 }
101
102 STATIC void
103 xfs_inode_free_callback(
104 struct rcu_head *head)
105 {
106 struct inode *inode = container_of(head, struct inode, i_rcu);
107 struct xfs_inode *ip = XFS_I(inode);
108
109 kmem_zone_free(xfs_inode_zone, ip);
110 }
111
112 void
113 xfs_inode_free(
114 struct xfs_inode *ip)
115 {
116 switch (ip->i_d.di_mode & S_IFMT) {
117 case S_IFREG:
118 case S_IFDIR:
119 case S_IFLNK:
120 xfs_idestroy_fork(ip, XFS_DATA_FORK);
121 break;
122 }
123
124 if (ip->i_afp)
125 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
126
127 if (ip->i_itemp) {
128 /*
129 * Only if we are shutting down the fs will we see an
130 * inode still in the AIL. If it is there, we should remove
131 * it to prevent a use-after-free from occurring.
132 */
133 xfs_log_item_t *lip = &ip->i_itemp->ili_item;
134 struct xfs_ail *ailp = lip->li_ailp;
135
136 ASSERT(((lip->li_flags & XFS_LI_IN_AIL) == 0) ||
137 XFS_FORCED_SHUTDOWN(ip->i_mount));
138 if (lip->li_flags & XFS_LI_IN_AIL) {
139 spin_lock(&ailp->xa_lock);
140 if (lip->li_flags & XFS_LI_IN_AIL)
141 xfs_trans_ail_delete(ailp, lip);
142 else
143 spin_unlock(&ailp->xa_lock);
144 }
145 xfs_inode_item_destroy(ip);
146 ip->i_itemp = NULL;
147 }
148
149 /* asserts to verify all state is correct here */
150 ASSERT(atomic_read(&ip->i_pincount) == 0);
151 ASSERT(!spin_is_locked(&ip->i_flags_lock));
152 ASSERT(!xfs_isiflocked(ip));
153
154 /*
155 * Because we use RCU freeing we need to ensure the inode always
156 * appears to be reclaimed with an invalid inode number when in the
157 * free state. The ip->i_flags_lock provides the barrier against lookup
158 * races.
159 */
160 spin_lock(&ip->i_flags_lock);
161 ip->i_flags = XFS_IRECLAIM;
162 ip->i_ino = 0;
163 spin_unlock(&ip->i_flags_lock);
164
165 call_rcu(&VFS_I(ip)->i_rcu, xfs_inode_free_callback);
166 }
167
168 /*
169 * Check the validity of the inode we just found it the cache
170 */
171 static int
172 xfs_iget_cache_hit(
173 struct xfs_perag *pag,
174 struct xfs_inode *ip,
175 xfs_ino_t ino,
176 int flags,
177 int lock_flags) __releases(RCU)
178 {
179 struct inode *inode = VFS_I(ip);
180 struct xfs_mount *mp = ip->i_mount;
181 int error;
182
183 /*
184 * check for re-use of an inode within an RCU grace period due to the
185 * radix tree nodes not being updated yet. We monitor for this by
186 * setting the inode number to zero before freeing the inode structure.
187 * If the inode has been reallocated and set up, then the inode number
188 * will not match, so check for that, too.
189 */
190 spin_lock(&ip->i_flags_lock);
191 if (ip->i_ino != ino) {
192 trace_xfs_iget_skip(ip);
193 XFS_STATS_INC(xs_ig_frecycle);
194 error = EAGAIN;
195 goto out_error;
196 }
197
198
199 /*
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.
204 *
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.
208 */
209 if (ip->i_flags & (XFS_INEW|XFS_IRECLAIM)) {
210 trace_xfs_iget_skip(ip);
211 XFS_STATS_INC(xs_ig_frecycle);
212 error = EAGAIN;
213 goto out_error;
214 }
215
216 /*
217 * If lookup is racing with unlink return an error immediately.
218 */
219 if (ip->i_d.di_mode == 0 && !(flags & XFS_IGET_CREATE)) {
220 error = ENOENT;
221 goto out_error;
222 }
223
224 /*
225 * If IRECLAIMABLE is set, we've torn down the VFS inode already.
226 * Need to carefully get it back into useable state.
227 */
228 if (ip->i_flags & XFS_IRECLAIMABLE) {
229 trace_xfs_iget_reclaim(ip);
230
231 /*
232 * We need to set XFS_IRECLAIM to prevent xfs_reclaim_inode
233 * from stomping over us while we recycle the inode. We can't
234 * clear the radix tree reclaimable tag yet as it requires
235 * pag_ici_lock to be held exclusive.
236 */
237 ip->i_flags |= XFS_IRECLAIM;
238
239 spin_unlock(&ip->i_flags_lock);
240 rcu_read_unlock();
241
242 error = -inode_init_always(mp->m_super, inode);
243 if (error) {
244 /*
245 * Re-initializing the inode failed, and we are in deep
246 * trouble. Try to re-add it to the reclaim list.
247 */
248 rcu_read_lock();
249 spin_lock(&ip->i_flags_lock);
250
251 ip->i_flags &= ~(XFS_INEW | XFS_IRECLAIM);
252 ASSERT(ip->i_flags & XFS_IRECLAIMABLE);
253 trace_xfs_iget_reclaim_fail(ip);
254 goto out_error;
255 }
256
257 spin_lock(&pag->pag_ici_lock);
258 spin_lock(&ip->i_flags_lock);
259
260 /*
261 * Clear the per-lifetime state in the inode as we are now
262 * effectively a new inode and need to return to the initial
263 * state before reuse occurs.
264 */
265 ip->i_flags &= ~XFS_IRECLAIM_RESET_FLAGS;
266 ip->i_flags |= XFS_INEW;
267 __xfs_inode_clear_reclaim_tag(mp, pag, ip);
268 inode->i_state = I_NEW;
269
270 ASSERT(!rwsem_is_locked(&ip->i_iolock.mr_lock));
271 mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino);
272 lockdep_set_class_and_name(&ip->i_iolock.mr_lock,
273 &xfs_iolock_active, "xfs_iolock_active");
274
275 spin_unlock(&ip->i_flags_lock);
276 spin_unlock(&pag->pag_ici_lock);
277 } else {
278 /* If the VFS inode is being torn down, pause and try again. */
279 if (!igrab(inode)) {
280 trace_xfs_iget_skip(ip);
281 error = EAGAIN;
282 goto out_error;
283 }
284
285 /* We've got a live one. */
286 spin_unlock(&ip->i_flags_lock);
287 rcu_read_unlock();
288 trace_xfs_iget_hit(ip);
289 }
290
291 if (lock_flags != 0)
292 xfs_ilock(ip, lock_flags);
293
294 xfs_iflags_clear(ip, XFS_ISTALE);
295 XFS_STATS_INC(xs_ig_found);
296
297 return 0;
298
299 out_error:
300 spin_unlock(&ip->i_flags_lock);
301 rcu_read_unlock();
302 return error;
303 }
304
305
306 static int
307 xfs_iget_cache_miss(
308 struct xfs_mount *mp,
309 struct xfs_perag *pag,
310 xfs_trans_t *tp,
311 xfs_ino_t ino,
312 struct xfs_inode **ipp,
313 int flags,
314 int lock_flags)
315 {
316 struct xfs_inode *ip;
317 int error;
318 xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ino);
319
320 ip = xfs_inode_alloc(mp, ino);
321 if (!ip)
322 return ENOMEM;
323
324 error = xfs_iread(mp, tp, ip, flags);
325 if (error)
326 goto out_destroy;
327
328 trace_xfs_iget_miss(ip);
329
330 if ((ip->i_d.di_mode == 0) && !(flags & XFS_IGET_CREATE)) {
331 error = ENOENT;
332 goto out_destroy;
333 }
334
335 /*
336 * Preload the radix tree so we can insert safely under the
337 * write spinlock. Note that we cannot sleep inside the preload
338 * region.
339 */
340 if (radix_tree_preload(GFP_KERNEL)) {
341 error = EAGAIN;
342 goto out_destroy;
343 }
344
345 /*
346 * Because the inode hasn't been added to the radix-tree yet it can't
347 * be found by another thread, so we can do the non-sleeping lock here.
348 */
349 if (lock_flags) {
350 if (!xfs_ilock_nowait(ip, lock_flags))
351 BUG();
352 }
353
354 spin_lock(&pag->pag_ici_lock);
355
356 /* insert the new inode */
357 error = radix_tree_insert(&pag->pag_ici_root, agino, ip);
358 if (unlikely(error)) {
359 WARN_ON(error != -EEXIST);
360 XFS_STATS_INC(xs_ig_dup);
361 error = EAGAIN;
362 goto out_preload_end;
363 }
364
365 /* These values _must_ be set before releasing the radix tree lock! */
366 ip->i_udquot = ip->i_gdquot = NULL;
367 xfs_iflags_set(ip, XFS_INEW);
368
369 spin_unlock(&pag->pag_ici_lock);
370 radix_tree_preload_end();
371
372 *ipp = ip;
373 return 0;
374
375 out_preload_end:
376 spin_unlock(&pag->pag_ici_lock);
377 radix_tree_preload_end();
378 if (lock_flags)
379 xfs_iunlock(ip, lock_flags);
380 out_destroy:
381 __destroy_inode(VFS_I(ip));
382 xfs_inode_free(ip);
383 return error;
384 }
385
386 /*
387 * Look up an inode by number in the given file system.
388 * The inode is looked up in the cache held in each AG.
389 * If the inode is found in the cache, initialise the vfs inode
390 * if necessary.
391 *
392 * If it is not in core, read it in from the file system's device,
393 * add it to the cache and initialise the vfs inode.
394 *
395 * The inode is locked according to the value of the lock_flags parameter.
396 * This flag parameter indicates how and if the inode's IO lock and inode lock
397 * should be taken.
398 *
399 * mp -- the mount point structure for the current file system. It points
400 * to the inode hash table.
401 * tp -- a pointer to the current transaction if there is one. This is
402 * simply passed through to the xfs_iread() call.
403 * ino -- the number of the inode desired. This is the unique identifier
404 * within the file system for the inode being requested.
405 * lock_flags -- flags indicating how to lock the inode. See the comment
406 * for xfs_ilock() for a list of valid values.
407 */
408 int
409 xfs_iget(
410 xfs_mount_t *mp,
411 xfs_trans_t *tp,
412 xfs_ino_t ino,
413 uint flags,
414 uint lock_flags,
415 xfs_inode_t **ipp)
416 {
417 xfs_inode_t *ip;
418 int error;
419 xfs_perag_t *pag;
420 xfs_agino_t agino;
421
422 /* reject inode numbers outside existing AGs */
423 if (!ino || XFS_INO_TO_AGNO(mp, ino) >= mp->m_sb.sb_agcount)
424 return EINVAL;
425
426 /* get the perag structure and ensure that it's inode capable */
427 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ino));
428 agino = XFS_INO_TO_AGINO(mp, ino);
429
430 again:
431 error = 0;
432 rcu_read_lock();
433 ip = radix_tree_lookup(&pag->pag_ici_root, agino);
434
435 if (ip) {
436 error = xfs_iget_cache_hit(pag, ip, ino, flags, lock_flags);
437 if (error)
438 goto out_error_or_again;
439 } else {
440 rcu_read_unlock();
441 XFS_STATS_INC(xs_ig_missed);
442
443 error = xfs_iget_cache_miss(mp, pag, tp, ino, &ip,
444 flags, lock_flags);
445 if (error)
446 goto out_error_or_again;
447 }
448 xfs_perag_put(pag);
449
450 *ipp = ip;
451
452 /*
453 * If we have a real type for an on-disk inode, we can set ops(&unlock)
454 * now. If it's a new inode being created, xfs_ialloc will handle it.
455 */
456 if (xfs_iflags_test(ip, XFS_INEW) && ip->i_d.di_mode != 0)
457 xfs_setup_inode(ip);
458 return 0;
459
460 out_error_or_again:
461 if (error == EAGAIN) {
462 delay(1);
463 goto again;
464 }
465 xfs_perag_put(pag);
466 return error;
467 }
468
469 /*
470 * This is a wrapper routine around the xfs_ilock() routine
471 * used to centralize some grungy code. It is used in places
472 * that wish to lock the inode solely for reading the extents.
473 * The reason these places can't just call xfs_ilock(SHARED)
474 * is that the inode lock also guards to bringing in of the
475 * extents from disk for a file in b-tree format. If the inode
476 * is in b-tree format, then we need to lock the inode exclusively
477 * until the extents are read in. Locking it exclusively all
478 * the time would limit our parallelism unnecessarily, though.
479 * What we do instead is check to see if the extents have been
480 * read in yet, and only lock the inode exclusively if they
481 * have not.
482 *
483 * The function returns a value which should be given to the
484 * corresponding xfs_iunlock_map_shared(). This value is
485 * the mode in which the lock was actually taken.
486 */
487 uint
488 xfs_ilock_map_shared(
489 xfs_inode_t *ip)
490 {
491 uint lock_mode;
492
493 if ((ip->i_d.di_format == XFS_DINODE_FMT_BTREE) &&
494 ((ip->i_df.if_flags & XFS_IFEXTENTS) == 0)) {
495 lock_mode = XFS_ILOCK_EXCL;
496 } else {
497 lock_mode = XFS_ILOCK_SHARED;
498 }
499
500 xfs_ilock(ip, lock_mode);
501
502 return lock_mode;
503 }
504
505 /*
506 * This is simply the unlock routine to go with xfs_ilock_map_shared().
507 * All it does is call xfs_iunlock() with the given lock_mode.
508 */
509 void
510 xfs_iunlock_map_shared(
511 xfs_inode_t *ip,
512 unsigned int lock_mode)
513 {
514 xfs_iunlock(ip, lock_mode);
515 }
516
517 /*
518 * The xfs inode contains 2 locks: a multi-reader lock called the
519 * i_iolock and a multi-reader lock called the i_lock. This routine
520 * allows either or both of the locks to be obtained.
521 *
522 * The 2 locks should always be ordered so that the IO lock is
523 * obtained first in order to prevent deadlock.
524 *
525 * ip -- the inode being locked
526 * lock_flags -- this parameter indicates the inode's locks
527 * to be locked. It can be:
528 * XFS_IOLOCK_SHARED,
529 * XFS_IOLOCK_EXCL,
530 * XFS_ILOCK_SHARED,
531 * XFS_ILOCK_EXCL,
532 * XFS_IOLOCK_SHARED | XFS_ILOCK_SHARED,
533 * XFS_IOLOCK_SHARED | XFS_ILOCK_EXCL,
534 * XFS_IOLOCK_EXCL | XFS_ILOCK_SHARED,
535 * XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL
536 */
537 void
538 xfs_ilock(
539 xfs_inode_t *ip,
540 uint lock_flags)
541 {
542 /*
543 * You can't set both SHARED and EXCL for the same lock,
544 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
545 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
546 */
547 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
548 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
549 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
550 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
551 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
552
553 if (lock_flags & XFS_IOLOCK_EXCL)
554 mrupdate_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
555 else if (lock_flags & XFS_IOLOCK_SHARED)
556 mraccess_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
557
558 if (lock_flags & XFS_ILOCK_EXCL)
559 mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
560 else if (lock_flags & XFS_ILOCK_SHARED)
561 mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
562
563 trace_xfs_ilock(ip, lock_flags, _RET_IP_);
564 }
565
566 /*
567 * This is just like xfs_ilock(), except that the caller
568 * is guaranteed not to sleep. It returns 1 if it gets
569 * the requested locks and 0 otherwise. If the IO lock is
570 * obtained but the inode lock cannot be, then the IO lock
571 * is dropped before returning.
572 *
573 * ip -- the inode being locked
574 * lock_flags -- this parameter indicates the inode's locks to be
575 * to be locked. See the comment for xfs_ilock() for a list
576 * of valid values.
577 */
578 int
579 xfs_ilock_nowait(
580 xfs_inode_t *ip,
581 uint lock_flags)
582 {
583 /*
584 * You can't set both SHARED and EXCL for the same lock,
585 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
586 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
587 */
588 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
589 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
590 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
591 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
592 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
593
594 if (lock_flags & XFS_IOLOCK_EXCL) {
595 if (!mrtryupdate(&ip->i_iolock))
596 goto out;
597 } else if (lock_flags & XFS_IOLOCK_SHARED) {
598 if (!mrtryaccess(&ip->i_iolock))
599 goto out;
600 }
601 if (lock_flags & XFS_ILOCK_EXCL) {
602 if (!mrtryupdate(&ip->i_lock))
603 goto out_undo_iolock;
604 } else if (lock_flags & XFS_ILOCK_SHARED) {
605 if (!mrtryaccess(&ip->i_lock))
606 goto out_undo_iolock;
607 }
608 trace_xfs_ilock_nowait(ip, lock_flags, _RET_IP_);
609 return 1;
610
611 out_undo_iolock:
612 if (lock_flags & XFS_IOLOCK_EXCL)
613 mrunlock_excl(&ip->i_iolock);
614 else if (lock_flags & XFS_IOLOCK_SHARED)
615 mrunlock_shared(&ip->i_iolock);
616 out:
617 return 0;
618 }
619
620 /*
621 * xfs_iunlock() is used to drop the inode locks acquired with
622 * xfs_ilock() and xfs_ilock_nowait(). The caller must pass
623 * in the flags given to xfs_ilock() or xfs_ilock_nowait() so
624 * that we know which locks to drop.
625 *
626 * ip -- the inode being unlocked
627 * lock_flags -- this parameter indicates the inode's locks to be
628 * to be unlocked. See the comment for xfs_ilock() for a list
629 * of valid values for this parameter.
630 *
631 */
632 void
633 xfs_iunlock(
634 xfs_inode_t *ip,
635 uint lock_flags)
636 {
637 /*
638 * You can't set both SHARED and EXCL for the same lock,
639 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
640 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
641 */
642 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
643 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
644 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
645 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
646 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_IUNLOCK_NONOTIFY |
647 XFS_LOCK_DEP_MASK)) == 0);
648 ASSERT(lock_flags != 0);
649
650 if (lock_flags & XFS_IOLOCK_EXCL)
651 mrunlock_excl(&ip->i_iolock);
652 else if (lock_flags & XFS_IOLOCK_SHARED)
653 mrunlock_shared(&ip->i_iolock);
654
655 if (lock_flags & XFS_ILOCK_EXCL)
656 mrunlock_excl(&ip->i_lock);
657 else if (lock_flags & XFS_ILOCK_SHARED)
658 mrunlock_shared(&ip->i_lock);
659
660 if ((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) &&
661 !(lock_flags & XFS_IUNLOCK_NONOTIFY) && ip->i_itemp) {
662 /*
663 * Let the AIL know that this item has been unlocked in case
664 * it is in the AIL and anyone is waiting on it. Don't do
665 * this if the caller has asked us not to.
666 */
667 xfs_trans_unlocked_item(ip->i_itemp->ili_item.li_ailp,
668 (xfs_log_item_t*)(ip->i_itemp));
669 }
670 trace_xfs_iunlock(ip, lock_flags, _RET_IP_);
671 }
672
673 /*
674 * give up write locks. the i/o lock cannot be held nested
675 * if it is being demoted.
676 */
677 void
678 xfs_ilock_demote(
679 xfs_inode_t *ip,
680 uint lock_flags)
681 {
682 ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL));
683 ASSERT((lock_flags & ~(XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)) == 0);
684
685 if (lock_flags & XFS_ILOCK_EXCL)
686 mrdemote(&ip->i_lock);
687 if (lock_flags & XFS_IOLOCK_EXCL)
688 mrdemote(&ip->i_iolock);
689
690 trace_xfs_ilock_demote(ip, lock_flags, _RET_IP_);
691 }
692
693 #ifdef DEBUG
694 int
695 xfs_isilocked(
696 xfs_inode_t *ip,
697 uint lock_flags)
698 {
699 if (lock_flags & (XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)) {
700 if (!(lock_flags & XFS_ILOCK_SHARED))
701 return !!ip->i_lock.mr_writer;
702 return rwsem_is_locked(&ip->i_lock.mr_lock);
703 }
704
705 if (lock_flags & (XFS_IOLOCK_EXCL|XFS_IOLOCK_SHARED)) {
706 if (!(lock_flags & XFS_IOLOCK_SHARED))
707 return !!ip->i_iolock.mr_writer;
708 return rwsem_is_locked(&ip->i_iolock.mr_lock);
709 }
710
711 ASSERT(0);
712 return 0;
713 }
714 #endif
715
716 void
717 __xfs_iflock(
718 struct xfs_inode *ip)
719 {
720 wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IFLOCK_BIT);
721 DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IFLOCK_BIT);
722
723 do {
724 prepare_to_wait_exclusive(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
725 if (xfs_isiflocked(ip))
726 io_schedule();
727 } while (!xfs_iflock_nowait(ip));
728
729 finish_wait(wq, &wait.wait);
730 }
This page took 0.047272 seconds and 5 git commands to generate.