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