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