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