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