David Chinner | fe4fa4b | 2008-10-30 17:06:08 +1100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it would be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write the Free Software Foundation, |
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 17 | */ |
| 18 | #include "xfs.h" |
| 19 | #include "xfs_fs.h" |
| 20 | #include "xfs_types.h" |
David Chinner | fe4fa4b | 2008-10-30 17:06:08 +1100 | [diff] [blame] | 21 | #include "xfs_log.h" |
Dave Chinner | f661f1e | 2012-10-08 21:56:02 +1100 | [diff] [blame] | 22 | #include "xfs_log_priv.h" |
David Chinner | fe4fa4b | 2008-10-30 17:06:08 +1100 | [diff] [blame] | 23 | #include "xfs_inum.h" |
| 24 | #include "xfs_trans.h" |
Dave Chinner | fd07484 | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 25 | #include "xfs_trans_priv.h" |
David Chinner | fe4fa4b | 2008-10-30 17:06:08 +1100 | [diff] [blame] | 26 | #include "xfs_sb.h" |
| 27 | #include "xfs_ag.h" |
David Chinner | fe4fa4b | 2008-10-30 17:06:08 +1100 | [diff] [blame] | 28 | #include "xfs_mount.h" |
| 29 | #include "xfs_bmap_btree.h" |
David Chinner | fe4fa4b | 2008-10-30 17:06:08 +1100 | [diff] [blame] | 30 | #include "xfs_inode.h" |
| 31 | #include "xfs_dinode.h" |
| 32 | #include "xfs_error.h" |
David Chinner | fe4fa4b | 2008-10-30 17:06:08 +1100 | [diff] [blame] | 33 | #include "xfs_filestream.h" |
| 34 | #include "xfs_vnodeops.h" |
David Chinner | fe4fa4b | 2008-10-30 17:06:08 +1100 | [diff] [blame] | 35 | #include "xfs_inode_item.h" |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 36 | #include "xfs_quota.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 37 | #include "xfs_trace.h" |
Dave Chinner | 1a387d3 | 2010-08-24 11:46:31 +1000 | [diff] [blame] | 38 | #include "xfs_fsops.h" |
David Chinner | fe4fa4b | 2008-10-30 17:06:08 +1100 | [diff] [blame] | 39 | |
David Chinner | a167b17 | 2008-10-30 17:06:18 +1100 | [diff] [blame] | 40 | #include <linux/kthread.h> |
| 41 | #include <linux/freezer.h> |
| 42 | |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 43 | /* |
| 44 | * The inode lookup is done in batches to keep the amount of lock traffic and |
| 45 | * radix tree lookups to a minimum. The batch size is a trade off between |
| 46 | * lookup reduction and stack usage. This is in the reclaim path, so we can't |
| 47 | * be too greedy. |
| 48 | */ |
| 49 | #define XFS_LOOKUP_BATCH 32 |
| 50 | |
Dave Chinner | e13de95 | 2010-09-28 12:28:06 +1000 | [diff] [blame] | 51 | STATIC int |
| 52 | xfs_inode_ag_walk_grab( |
| 53 | struct xfs_inode *ip) |
| 54 | { |
| 55 | struct inode *inode = VFS_I(ip); |
| 56 | |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 57 | ASSERT(rcu_read_lock_held()); |
| 58 | |
| 59 | /* |
| 60 | * check for stale RCU freed inode |
| 61 | * |
| 62 | * If the inode has been reallocated, it doesn't matter if it's not in |
| 63 | * the AG we are walking - we are walking for writeback, so if it |
| 64 | * passes all the "valid inode" checks and is dirty, then we'll write |
| 65 | * it back anyway. If it has been reallocated and still being |
| 66 | * initialised, the XFS_INEW check below will catch it. |
| 67 | */ |
| 68 | spin_lock(&ip->i_flags_lock); |
| 69 | if (!ip->i_ino) |
| 70 | goto out_unlock_noent; |
| 71 | |
| 72 | /* avoid new or reclaimable inodes. Leave for reclaim code to flush */ |
| 73 | if (__xfs_iflags_test(ip, XFS_INEW | XFS_IRECLAIMABLE | XFS_IRECLAIM)) |
| 74 | goto out_unlock_noent; |
| 75 | spin_unlock(&ip->i_flags_lock); |
| 76 | |
Dave Chinner | e13de95 | 2010-09-28 12:28:06 +1000 | [diff] [blame] | 77 | /* nothing to sync during shutdown */ |
| 78 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) |
| 79 | return EFSCORRUPTED; |
| 80 | |
Dave Chinner | e13de95 | 2010-09-28 12:28:06 +1000 | [diff] [blame] | 81 | /* If we can't grab the inode, it must on it's way to reclaim. */ |
| 82 | if (!igrab(inode)) |
| 83 | return ENOENT; |
| 84 | |
| 85 | if (is_bad_inode(inode)) { |
| 86 | IRELE(ip); |
| 87 | return ENOENT; |
| 88 | } |
| 89 | |
| 90 | /* inode is valid */ |
| 91 | return 0; |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 92 | |
| 93 | out_unlock_noent: |
| 94 | spin_unlock(&ip->i_flags_lock); |
| 95 | return ENOENT; |
Dave Chinner | e13de95 | 2010-09-28 12:28:06 +1000 | [diff] [blame] | 96 | } |
| 97 | |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 98 | STATIC int |
| 99 | xfs_inode_ag_walk( |
| 100 | struct xfs_mount *mp, |
Dave Chinner | 5017e97 | 2010-01-11 11:47:40 +0000 | [diff] [blame] | 101 | struct xfs_perag *pag, |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 102 | int (*execute)(struct xfs_inode *ip, |
| 103 | struct xfs_perag *pag, int flags), |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 104 | int flags) |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 105 | { |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 106 | uint32_t first_index; |
| 107 | int last_error = 0; |
| 108 | int skipped; |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 109 | int done; |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 110 | int nr_found; |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 111 | |
| 112 | restart: |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 113 | done = 0; |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 114 | skipped = 0; |
| 115 | first_index = 0; |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 116 | nr_found = 0; |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 117 | do { |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 118 | struct xfs_inode *batch[XFS_LOOKUP_BATCH]; |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 119 | int error = 0; |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 120 | int i; |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 121 | |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 122 | rcu_read_lock(); |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 123 | nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 124 | (void **)batch, first_index, |
| 125 | XFS_LOOKUP_BATCH); |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 126 | if (!nr_found) { |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 127 | rcu_read_unlock(); |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 128 | break; |
Dave Chinner | c8e20be | 2010-01-10 23:51:45 +0000 | [diff] [blame] | 129 | } |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 130 | |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 131 | /* |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 132 | * Grab the inodes before we drop the lock. if we found |
| 133 | * nothing, nr == 0 and the loop will be skipped. |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 134 | */ |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 135 | for (i = 0; i < nr_found; i++) { |
| 136 | struct xfs_inode *ip = batch[i]; |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 137 | |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 138 | if (done || xfs_inode_ag_walk_grab(ip)) |
| 139 | batch[i] = NULL; |
| 140 | |
| 141 | /* |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 142 | * Update the index for the next lookup. Catch |
| 143 | * overflows into the next AG range which can occur if |
| 144 | * we have inodes in the last block of the AG and we |
| 145 | * are currently pointing to the last inode. |
| 146 | * |
| 147 | * Because we may see inodes that are from the wrong AG |
| 148 | * due to RCU freeing and reallocation, only update the |
| 149 | * index if it lies in this AG. It was a race that lead |
| 150 | * us to see this inode, so another lookup from the |
| 151 | * same index will not find it again. |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 152 | */ |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 153 | if (XFS_INO_TO_AGNO(mp, ip->i_ino) != pag->pag_agno) |
| 154 | continue; |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 155 | first_index = XFS_INO_TO_AGINO(mp, ip->i_ino + 1); |
| 156 | if (first_index < XFS_INO_TO_AGINO(mp, ip->i_ino)) |
| 157 | done = 1; |
Dave Chinner | e13de95 | 2010-09-28 12:28:06 +1000 | [diff] [blame] | 158 | } |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 159 | |
| 160 | /* unlock now we've grabbed the inodes. */ |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 161 | rcu_read_unlock(); |
Dave Chinner | e13de95 | 2010-09-28 12:28:06 +1000 | [diff] [blame] | 162 | |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 163 | for (i = 0; i < nr_found; i++) { |
| 164 | if (!batch[i]) |
| 165 | continue; |
| 166 | error = execute(batch[i], pag, flags); |
| 167 | IRELE(batch[i]); |
| 168 | if (error == EAGAIN) { |
| 169 | skipped++; |
| 170 | continue; |
| 171 | } |
| 172 | if (error && last_error != EFSCORRUPTED) |
| 173 | last_error = error; |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 174 | } |
Dave Chinner | c8e20be | 2010-01-10 23:51:45 +0000 | [diff] [blame] | 175 | |
| 176 | /* bail out if the filesystem is corrupted. */ |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 177 | if (error == EFSCORRUPTED) |
| 178 | break; |
| 179 | |
Dave Chinner | 8daaa83 | 2011-07-08 14:14:46 +1000 | [diff] [blame] | 180 | cond_resched(); |
| 181 | |
Dave Chinner | 78ae525 | 2010-09-28 12:28:19 +1000 | [diff] [blame] | 182 | } while (nr_found && !done); |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 183 | |
| 184 | if (skipped) { |
| 185 | delay(1); |
| 186 | goto restart; |
| 187 | } |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 188 | return last_error; |
| 189 | } |
| 190 | |
Christoph Hellwig | fe588ed | 2009-06-08 15:35:27 +0200 | [diff] [blame] | 191 | int |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 192 | xfs_inode_ag_iterator( |
| 193 | struct xfs_mount *mp, |
| 194 | int (*execute)(struct xfs_inode *ip, |
| 195 | struct xfs_perag *pag, int flags), |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 196 | int flags) |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 197 | { |
Dave Chinner | 16fd536 | 2010-07-20 09:43:39 +1000 | [diff] [blame] | 198 | struct xfs_perag *pag; |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 199 | int error = 0; |
| 200 | int last_error = 0; |
| 201 | xfs_agnumber_t ag; |
| 202 | |
Dave Chinner | 16fd536 | 2010-07-20 09:43:39 +1000 | [diff] [blame] | 203 | ag = 0; |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 204 | while ((pag = xfs_perag_get(mp, ag))) { |
| 205 | ag = pag->pag_agno + 1; |
| 206 | error = xfs_inode_ag_walk(mp, pag, execute, flags); |
Dave Chinner | 5017e97 | 2010-01-11 11:47:40 +0000 | [diff] [blame] | 207 | xfs_perag_put(pag); |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 208 | if (error) { |
| 209 | last_error = error; |
| 210 | if (error == EFSCORRUPTED) |
| 211 | break; |
| 212 | } |
| 213 | } |
| 214 | return XFS_ERROR(last_error); |
| 215 | } |
| 216 | |
David Chinner | 76bf105 | 2008-10-30 17:16:21 +1100 | [diff] [blame] | 217 | /* |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 218 | * Queue a new inode reclaim pass if there are reclaimable inodes and there |
| 219 | * isn't a reclaim pass already in progress. By default it runs every 5s based |
Dave Chinner | 5889608 | 2012-10-08 21:56:05 +1100 | [diff] [blame] | 220 | * on the xfs periodic sync default of 30s. Perhaps this should have it's own |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 221 | * tunable, but that can be done if this method proves to be ineffective or too |
| 222 | * aggressive. |
| 223 | */ |
| 224 | static void |
Dave Chinner | 5889608 | 2012-10-08 21:56:05 +1100 | [diff] [blame] | 225 | xfs_reclaim_work_queue( |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 226 | struct xfs_mount *mp) |
David Chinner | a167b17 | 2008-10-30 17:06:18 +1100 | [diff] [blame] | 227 | { |
David Chinner | a167b17 | 2008-10-30 17:06:18 +1100 | [diff] [blame] | 228 | |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 229 | rcu_read_lock(); |
| 230 | if (radix_tree_tagged(&mp->m_perag_tree, XFS_ICI_RECLAIM_TAG)) { |
Dave Chinner | 5889608 | 2012-10-08 21:56:05 +1100 | [diff] [blame] | 231 | queue_delayed_work(mp->m_reclaim_workqueue, &mp->m_reclaim_work, |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 232 | msecs_to_jiffies(xfs_syncd_centisecs / 6 * 10)); |
David Chinner | a167b17 | 2008-10-30 17:06:18 +1100 | [diff] [blame] | 233 | } |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 234 | rcu_read_unlock(); |
| 235 | } |
David Chinner | a167b17 | 2008-10-30 17:06:18 +1100 | [diff] [blame] | 236 | |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 237 | /* |
| 238 | * This is a fast pass over the inode cache to try to get reclaim moving on as |
| 239 | * many inodes as possible in a short period of time. It kicks itself every few |
| 240 | * seconds, as well as being kicked by the inode cache shrinker when memory |
| 241 | * goes low. It scans as quickly as possible avoiding locked inodes or those |
| 242 | * already being flushed, and once done schedules a future pass. |
| 243 | */ |
Dave Chinner | 33c7a2b | 2012-10-08 21:55:59 +1100 | [diff] [blame] | 244 | void |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 245 | xfs_reclaim_worker( |
| 246 | struct work_struct *work) |
| 247 | { |
| 248 | struct xfs_mount *mp = container_of(to_delayed_work(work), |
| 249 | struct xfs_mount, m_reclaim_work); |
| 250 | |
| 251 | xfs_reclaim_inodes(mp, SYNC_TRYLOCK); |
Dave Chinner | 5889608 | 2012-10-08 21:56:05 +1100 | [diff] [blame] | 252 | xfs_reclaim_work_queue(mp); |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 253 | } |
| 254 | |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 255 | void |
| 256 | __xfs_inode_set_reclaim_tag( |
| 257 | struct xfs_perag *pag, |
| 258 | struct xfs_inode *ip) |
| 259 | { |
| 260 | radix_tree_tag_set(&pag->pag_ici_root, |
| 261 | XFS_INO_TO_AGINO(ip->i_mount, ip->i_ino), |
| 262 | XFS_ICI_RECLAIM_TAG); |
Dave Chinner | 16fd536 | 2010-07-20 09:43:39 +1000 | [diff] [blame] | 263 | |
| 264 | if (!pag->pag_ici_reclaimable) { |
| 265 | /* propagate the reclaim tag up into the perag radix tree */ |
| 266 | spin_lock(&ip->i_mount->m_perag_lock); |
| 267 | radix_tree_tag_set(&ip->i_mount->m_perag_tree, |
| 268 | XFS_INO_TO_AGNO(ip->i_mount, ip->i_ino), |
| 269 | XFS_ICI_RECLAIM_TAG); |
| 270 | spin_unlock(&ip->i_mount->m_perag_lock); |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 271 | |
| 272 | /* schedule periodic background inode reclaim */ |
Dave Chinner | 5889608 | 2012-10-08 21:56:05 +1100 | [diff] [blame] | 273 | xfs_reclaim_work_queue(ip->i_mount); |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 274 | |
Dave Chinner | 16fd536 | 2010-07-20 09:43:39 +1000 | [diff] [blame] | 275 | trace_xfs_perag_set_reclaim(ip->i_mount, pag->pag_agno, |
| 276 | -1, _RET_IP_); |
| 277 | } |
Dave Chinner | 9bf729c | 2010-04-29 09:55:50 +1000 | [diff] [blame] | 278 | pag->pag_ici_reclaimable++; |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 279 | } |
| 280 | |
David Chinner | 1165451 | 2008-10-30 17:37:49 +1100 | [diff] [blame] | 281 | /* |
| 282 | * We set the inode flag atomically with the radix tree tag. |
| 283 | * Once we get tag lookups on the radix tree, this inode flag |
| 284 | * can go away. |
| 285 | */ |
David Chinner | 396beb8 | 2008-10-30 17:37:26 +1100 | [diff] [blame] | 286 | void |
| 287 | xfs_inode_set_reclaim_tag( |
| 288 | xfs_inode_t *ip) |
| 289 | { |
Dave Chinner | 5017e97 | 2010-01-11 11:47:40 +0000 | [diff] [blame] | 290 | struct xfs_mount *mp = ip->i_mount; |
| 291 | struct xfs_perag *pag; |
David Chinner | 396beb8 | 2008-10-30 17:37:26 +1100 | [diff] [blame] | 292 | |
Dave Chinner | 5017e97 | 2010-01-11 11:47:40 +0000 | [diff] [blame] | 293 | pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino)); |
Dave Chinner | 1a427ab | 2010-12-16 17:08:41 +1100 | [diff] [blame] | 294 | spin_lock(&pag->pag_ici_lock); |
David Chinner | 396beb8 | 2008-10-30 17:37:26 +1100 | [diff] [blame] | 295 | spin_lock(&ip->i_flags_lock); |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 296 | __xfs_inode_set_reclaim_tag(pag, ip); |
David Chinner | 1165451 | 2008-10-30 17:37:49 +1100 | [diff] [blame] | 297 | __xfs_iflags_set(ip, XFS_IRECLAIMABLE); |
David Chinner | 396beb8 | 2008-10-30 17:37:26 +1100 | [diff] [blame] | 298 | spin_unlock(&ip->i_flags_lock); |
Dave Chinner | 1a427ab | 2010-12-16 17:08:41 +1100 | [diff] [blame] | 299 | spin_unlock(&pag->pag_ici_lock); |
Dave Chinner | 5017e97 | 2010-01-11 11:47:40 +0000 | [diff] [blame] | 300 | xfs_perag_put(pag); |
David Chinner | 396beb8 | 2008-10-30 17:37:26 +1100 | [diff] [blame] | 301 | } |
| 302 | |
Johannes Weiner | 081003f | 2010-10-01 07:43:54 +0000 | [diff] [blame] | 303 | STATIC void |
| 304 | __xfs_inode_clear_reclaim( |
David Chinner | 396beb8 | 2008-10-30 17:37:26 +1100 | [diff] [blame] | 305 | xfs_perag_t *pag, |
| 306 | xfs_inode_t *ip) |
| 307 | { |
Dave Chinner | 9bf729c | 2010-04-29 09:55:50 +1000 | [diff] [blame] | 308 | pag->pag_ici_reclaimable--; |
Dave Chinner | 16fd536 | 2010-07-20 09:43:39 +1000 | [diff] [blame] | 309 | if (!pag->pag_ici_reclaimable) { |
| 310 | /* clear the reclaim tag from the perag radix tree */ |
| 311 | spin_lock(&ip->i_mount->m_perag_lock); |
| 312 | radix_tree_tag_clear(&ip->i_mount->m_perag_tree, |
| 313 | XFS_INO_TO_AGNO(ip->i_mount, ip->i_ino), |
| 314 | XFS_ICI_RECLAIM_TAG); |
| 315 | spin_unlock(&ip->i_mount->m_perag_lock); |
| 316 | trace_xfs_perag_clear_reclaim(ip->i_mount, pag->pag_agno, |
| 317 | -1, _RET_IP_); |
| 318 | } |
David Chinner | 396beb8 | 2008-10-30 17:37:26 +1100 | [diff] [blame] | 319 | } |
| 320 | |
Johannes Weiner | 081003f | 2010-10-01 07:43:54 +0000 | [diff] [blame] | 321 | void |
| 322 | __xfs_inode_clear_reclaim_tag( |
| 323 | xfs_mount_t *mp, |
| 324 | xfs_perag_t *pag, |
| 325 | xfs_inode_t *ip) |
| 326 | { |
| 327 | radix_tree_tag_clear(&pag->pag_ici_root, |
| 328 | XFS_INO_TO_AGINO(mp, ip->i_ino), XFS_ICI_RECLAIM_TAG); |
| 329 | __xfs_inode_clear_reclaim(pag, ip); |
| 330 | } |
| 331 | |
Dave Chinner | 777df5a | 2010-02-06 12:37:26 +1100 | [diff] [blame] | 332 | /* |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 333 | * Grab the inode for reclaim exclusively. |
| 334 | * Return 0 if we grabbed it, non-zero otherwise. |
| 335 | */ |
| 336 | STATIC int |
| 337 | xfs_reclaim_inode_grab( |
| 338 | struct xfs_inode *ip, |
| 339 | int flags) |
| 340 | { |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 341 | ASSERT(rcu_read_lock_held()); |
| 342 | |
| 343 | /* quick check for stale RCU freed inode */ |
| 344 | if (!ip->i_ino) |
| 345 | return 1; |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 346 | |
| 347 | /* |
Christoph Hellwig | 474fce0 | 2011-12-18 20:00:09 +0000 | [diff] [blame] | 348 | * If we are asked for non-blocking operation, do unlocked checks to |
| 349 | * see if the inode already is being flushed or in reclaim to avoid |
| 350 | * lock traffic. |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 351 | */ |
| 352 | if ((flags & SYNC_TRYLOCK) && |
Christoph Hellwig | 474fce0 | 2011-12-18 20:00:09 +0000 | [diff] [blame] | 353 | __xfs_iflags_test(ip, XFS_IFLOCK | XFS_IRECLAIM)) |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 354 | return 1; |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 355 | |
| 356 | /* |
| 357 | * The radix tree lock here protects a thread in xfs_iget from racing |
| 358 | * with us starting reclaim on the inode. Once we have the |
| 359 | * XFS_IRECLAIM flag set it will not touch us. |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 360 | * |
| 361 | * Due to RCU lookup, we may find inodes that have been freed and only |
| 362 | * have XFS_IRECLAIM set. Indeed, we may see reallocated inodes that |
| 363 | * aren't candidates for reclaim at all, so we must check the |
| 364 | * XFS_IRECLAIMABLE is set first before proceeding to reclaim. |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 365 | */ |
| 366 | spin_lock(&ip->i_flags_lock); |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 367 | if (!__xfs_iflags_test(ip, XFS_IRECLAIMABLE) || |
| 368 | __xfs_iflags_test(ip, XFS_IRECLAIM)) { |
| 369 | /* not a reclaim candidate. */ |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 370 | spin_unlock(&ip->i_flags_lock); |
| 371 | return 1; |
| 372 | } |
| 373 | __xfs_iflags_set(ip, XFS_IRECLAIM); |
| 374 | spin_unlock(&ip->i_flags_lock); |
| 375 | return 0; |
| 376 | } |
| 377 | |
| 378 | /* |
Christoph Hellwig | 8a48088 | 2012-04-23 15:58:35 +1000 | [diff] [blame] | 379 | * Inodes in different states need to be treated differently. The following |
| 380 | * table lists the inode states and the reclaim actions necessary: |
Dave Chinner | 777df5a | 2010-02-06 12:37:26 +1100 | [diff] [blame] | 381 | * |
| 382 | * inode state iflush ret required action |
| 383 | * --------------- ---------- --------------- |
| 384 | * bad - reclaim |
| 385 | * shutdown EIO unpin and reclaim |
| 386 | * clean, unpinned 0 reclaim |
| 387 | * stale, unpinned 0 reclaim |
Dave Chinner | c854363 | 2010-02-06 12:39:36 +1100 | [diff] [blame] | 388 | * clean, pinned(*) 0 requeue |
| 389 | * stale, pinned EAGAIN requeue |
Christoph Hellwig | 8a48088 | 2012-04-23 15:58:35 +1000 | [diff] [blame] | 390 | * dirty, async - requeue |
| 391 | * dirty, sync 0 reclaim |
Dave Chinner | 777df5a | 2010-02-06 12:37:26 +1100 | [diff] [blame] | 392 | * |
| 393 | * (*) dgc: I don't think the clean, pinned state is possible but it gets |
| 394 | * handled anyway given the order of checks implemented. |
| 395 | * |
Dave Chinner | c854363 | 2010-02-06 12:39:36 +1100 | [diff] [blame] | 396 | * Also, because we get the flush lock first, we know that any inode that has |
| 397 | * been flushed delwri has had the flush completed by the time we check that |
Christoph Hellwig | 8a48088 | 2012-04-23 15:58:35 +1000 | [diff] [blame] | 398 | * the inode is clean. |
Dave Chinner | c854363 | 2010-02-06 12:39:36 +1100 | [diff] [blame] | 399 | * |
Christoph Hellwig | 8a48088 | 2012-04-23 15:58:35 +1000 | [diff] [blame] | 400 | * Note that because the inode is flushed delayed write by AIL pushing, the |
| 401 | * flush lock may already be held here and waiting on it can result in very |
| 402 | * long latencies. Hence for sync reclaims, where we wait on the flush lock, |
| 403 | * the caller should push the AIL first before trying to reclaim inodes to |
| 404 | * minimise the amount of time spent waiting. For background relaim, we only |
| 405 | * bother to reclaim clean inodes anyway. |
Dave Chinner | c854363 | 2010-02-06 12:39:36 +1100 | [diff] [blame] | 406 | * |
Dave Chinner | 777df5a | 2010-02-06 12:37:26 +1100 | [diff] [blame] | 407 | * Hence the order of actions after gaining the locks should be: |
| 408 | * bad => reclaim |
| 409 | * shutdown => unpin and reclaim |
Christoph Hellwig | 8a48088 | 2012-04-23 15:58:35 +1000 | [diff] [blame] | 410 | * pinned, async => requeue |
Dave Chinner | c854363 | 2010-02-06 12:39:36 +1100 | [diff] [blame] | 411 | * pinned, sync => unpin |
Dave Chinner | 777df5a | 2010-02-06 12:37:26 +1100 | [diff] [blame] | 412 | * stale => reclaim |
| 413 | * clean => reclaim |
Christoph Hellwig | 8a48088 | 2012-04-23 15:58:35 +1000 | [diff] [blame] | 414 | * dirty, async => requeue |
Dave Chinner | c854363 | 2010-02-06 12:39:36 +1100 | [diff] [blame] | 415 | * dirty, sync => flush, wait and reclaim |
Dave Chinner | 777df5a | 2010-02-06 12:37:26 +1100 | [diff] [blame] | 416 | */ |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 417 | STATIC int |
Dave Chinner | c8e20be | 2010-01-10 23:51:45 +0000 | [diff] [blame] | 418 | xfs_reclaim_inode( |
Dave Chinner | 75f3cb1 | 2009-06-08 15:35:14 +0200 | [diff] [blame] | 419 | struct xfs_inode *ip, |
| 420 | struct xfs_perag *pag, |
Dave Chinner | c8e20be | 2010-01-10 23:51:45 +0000 | [diff] [blame] | 421 | int sync_mode) |
David Chinner | 7a3be02 | 2008-10-30 17:37:37 +1100 | [diff] [blame] | 422 | { |
Christoph Hellwig | 4c46819 | 2012-04-23 15:58:36 +1000 | [diff] [blame] | 423 | struct xfs_buf *bp = NULL; |
| 424 | int error; |
Dave Chinner | 777df5a | 2010-02-06 12:37:26 +1100 | [diff] [blame] | 425 | |
Dave Chinner | 1bfd8d0 | 2011-03-26 09:13:55 +1100 | [diff] [blame] | 426 | restart: |
| 427 | error = 0; |
Dave Chinner | c8e20be | 2010-01-10 23:51:45 +0000 | [diff] [blame] | 428 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Dave Chinner | c854363 | 2010-02-06 12:39:36 +1100 | [diff] [blame] | 429 | if (!xfs_iflock_nowait(ip)) { |
| 430 | if (!(sync_mode & SYNC_WAIT)) |
| 431 | goto out; |
| 432 | xfs_iflock(ip); |
| 433 | } |
Dave Chinner | c8e20be | 2010-01-10 23:51:45 +0000 | [diff] [blame] | 434 | |
Dave Chinner | 777df5a | 2010-02-06 12:37:26 +1100 | [diff] [blame] | 435 | if (is_bad_inode(VFS_I(ip))) |
| 436 | goto reclaim; |
| 437 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) { |
| 438 | xfs_iunpin_wait(ip); |
Dave Chinner | 04913fd | 2012-04-23 15:58:41 +1000 | [diff] [blame] | 439 | xfs_iflush_abort(ip, false); |
Dave Chinner | 777df5a | 2010-02-06 12:37:26 +1100 | [diff] [blame] | 440 | goto reclaim; |
| 441 | } |
Dave Chinner | c854363 | 2010-02-06 12:39:36 +1100 | [diff] [blame] | 442 | if (xfs_ipincount(ip)) { |
Christoph Hellwig | 8a48088 | 2012-04-23 15:58:35 +1000 | [diff] [blame] | 443 | if (!(sync_mode & SYNC_WAIT)) |
| 444 | goto out_ifunlock; |
Dave Chinner | 777df5a | 2010-02-06 12:37:26 +1100 | [diff] [blame] | 445 | xfs_iunpin_wait(ip); |
Dave Chinner | c854363 | 2010-02-06 12:39:36 +1100 | [diff] [blame] | 446 | } |
Dave Chinner | 777df5a | 2010-02-06 12:37:26 +1100 | [diff] [blame] | 447 | if (xfs_iflags_test(ip, XFS_ISTALE)) |
| 448 | goto reclaim; |
| 449 | if (xfs_inode_clean(ip)) |
| 450 | goto reclaim; |
| 451 | |
Dave Chinner | 1bfd8d0 | 2011-03-26 09:13:55 +1100 | [diff] [blame] | 452 | /* |
Christoph Hellwig | 8a48088 | 2012-04-23 15:58:35 +1000 | [diff] [blame] | 453 | * Never flush out dirty data during non-blocking reclaim, as it would |
| 454 | * just contend with AIL pushing trying to do the same job. |
| 455 | */ |
| 456 | if (!(sync_mode & SYNC_WAIT)) |
| 457 | goto out_ifunlock; |
| 458 | |
| 459 | /* |
Dave Chinner | 1bfd8d0 | 2011-03-26 09:13:55 +1100 | [diff] [blame] | 460 | * Now we have an inode that needs flushing. |
| 461 | * |
Christoph Hellwig | 4c46819 | 2012-04-23 15:58:36 +1000 | [diff] [blame] | 462 | * Note that xfs_iflush will never block on the inode buffer lock, as |
Dave Chinner | 1bfd8d0 | 2011-03-26 09:13:55 +1100 | [diff] [blame] | 463 | * xfs_ifree_cluster() can lock the inode buffer before it locks the |
Christoph Hellwig | 4c46819 | 2012-04-23 15:58:36 +1000 | [diff] [blame] | 464 | * ip->i_lock, and we are doing the exact opposite here. As a result, |
Christoph Hellwig | 475ee41 | 2012-07-03 12:21:22 -0400 | [diff] [blame] | 465 | * doing a blocking xfs_imap_to_bp() to get the cluster buffer would |
| 466 | * result in an ABBA deadlock with xfs_ifree_cluster(). |
Dave Chinner | 1bfd8d0 | 2011-03-26 09:13:55 +1100 | [diff] [blame] | 467 | * |
| 468 | * As xfs_ifree_cluser() must gather all inodes that are active in the |
| 469 | * cache to mark them stale, if we hit this case we don't actually want |
| 470 | * to do IO here - we want the inode marked stale so we can simply |
Christoph Hellwig | 4c46819 | 2012-04-23 15:58:36 +1000 | [diff] [blame] | 471 | * reclaim it. Hence if we get an EAGAIN error here, just unlock the |
| 472 | * inode, back off and try again. Hopefully the next pass through will |
| 473 | * see the stale flag set on the inode. |
Dave Chinner | 1bfd8d0 | 2011-03-26 09:13:55 +1100 | [diff] [blame] | 474 | */ |
Christoph Hellwig | 4c46819 | 2012-04-23 15:58:36 +1000 | [diff] [blame] | 475 | error = xfs_iflush(ip, &bp); |
Christoph Hellwig | 8a48088 | 2012-04-23 15:58:35 +1000 | [diff] [blame] | 476 | if (error == EAGAIN) { |
| 477 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 478 | /* backoff longer than in xfs_ifree_cluster */ |
| 479 | delay(2); |
| 480 | goto restart; |
Dave Chinner | c8e20be | 2010-01-10 23:51:45 +0000 | [diff] [blame] | 481 | } |
Dave Chinner | c854363 | 2010-02-06 12:39:36 +1100 | [diff] [blame] | 482 | |
Christoph Hellwig | 4c46819 | 2012-04-23 15:58:36 +1000 | [diff] [blame] | 483 | if (!error) { |
| 484 | error = xfs_bwrite(bp); |
| 485 | xfs_buf_relse(bp); |
| 486 | } |
| 487 | |
| 488 | xfs_iflock(ip); |
Dave Chinner | 777df5a | 2010-02-06 12:37:26 +1100 | [diff] [blame] | 489 | reclaim: |
| 490 | xfs_ifunlock(ip); |
Dave Chinner | c8e20be | 2010-01-10 23:51:45 +0000 | [diff] [blame] | 491 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Dave Chinner | 2f11fea | 2010-07-20 17:53:25 +1000 | [diff] [blame] | 492 | |
| 493 | XFS_STATS_INC(xs_ig_reclaims); |
| 494 | /* |
| 495 | * Remove the inode from the per-AG radix tree. |
| 496 | * |
| 497 | * Because radix_tree_delete won't complain even if the item was never |
| 498 | * added to the tree assert that it's been there before to catch |
| 499 | * problems with the inode life time early on. |
| 500 | */ |
Dave Chinner | 1a427ab | 2010-12-16 17:08:41 +1100 | [diff] [blame] | 501 | spin_lock(&pag->pag_ici_lock); |
Dave Chinner | 2f11fea | 2010-07-20 17:53:25 +1000 | [diff] [blame] | 502 | if (!radix_tree_delete(&pag->pag_ici_root, |
| 503 | XFS_INO_TO_AGINO(ip->i_mount, ip->i_ino))) |
| 504 | ASSERT(0); |
Johannes Weiner | 081003f | 2010-10-01 07:43:54 +0000 | [diff] [blame] | 505 | __xfs_inode_clear_reclaim(pag, ip); |
Dave Chinner | 1a427ab | 2010-12-16 17:08:41 +1100 | [diff] [blame] | 506 | spin_unlock(&pag->pag_ici_lock); |
Dave Chinner | 2f11fea | 2010-07-20 17:53:25 +1000 | [diff] [blame] | 507 | |
| 508 | /* |
| 509 | * Here we do an (almost) spurious inode lock in order to coordinate |
| 510 | * with inode cache radix tree lookups. This is because the lookup |
| 511 | * can reference the inodes in the cache without taking references. |
| 512 | * |
| 513 | * We make that OK here by ensuring that we wait until the inode is |
Alex Elder | ad637a1 | 2012-02-16 22:01:00 +0000 | [diff] [blame] | 514 | * unlocked after the lookup before we go ahead and free it. |
Dave Chinner | 2f11fea | 2010-07-20 17:53:25 +1000 | [diff] [blame] | 515 | */ |
Alex Elder | ad637a1 | 2012-02-16 22:01:00 +0000 | [diff] [blame] | 516 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Dave Chinner | 2f11fea | 2010-07-20 17:53:25 +1000 | [diff] [blame] | 517 | xfs_qm_dqdetach(ip); |
Alex Elder | ad637a1 | 2012-02-16 22:01:00 +0000 | [diff] [blame] | 518 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Dave Chinner | 2f11fea | 2010-07-20 17:53:25 +1000 | [diff] [blame] | 519 | |
| 520 | xfs_inode_free(ip); |
Alex Elder | ad637a1 | 2012-02-16 22:01:00 +0000 | [diff] [blame] | 521 | return error; |
Christoph Hellwig | 8a48088 | 2012-04-23 15:58:35 +1000 | [diff] [blame] | 522 | |
| 523 | out_ifunlock: |
| 524 | xfs_ifunlock(ip); |
| 525 | out: |
| 526 | xfs_iflags_clear(ip, XFS_IRECLAIM); |
| 527 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 528 | /* |
| 529 | * We could return EAGAIN here to make reclaim rescan the inode tree in |
| 530 | * a short while. However, this just burns CPU time scanning the tree |
Dave Chinner | 5889608 | 2012-10-08 21:56:05 +1100 | [diff] [blame] | 531 | * waiting for IO to complete and the reclaim work never goes back to |
| 532 | * the idle state. Instead, return 0 to let the next scheduled |
| 533 | * background reclaim attempt to reclaim the inode again. |
Christoph Hellwig | 8a48088 | 2012-04-23 15:58:35 +1000 | [diff] [blame] | 534 | */ |
| 535 | return 0; |
David Chinner | 7a3be02 | 2008-10-30 17:37:37 +1100 | [diff] [blame] | 536 | } |
| 537 | |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 538 | /* |
| 539 | * Walk the AGs and reclaim the inodes in them. Even if the filesystem is |
| 540 | * corrupted, we still want to try to reclaim all the inodes. If we don't, |
| 541 | * then a shut down during filesystem unmount reclaim walk leak all the |
| 542 | * unreclaimed inodes. |
| 543 | */ |
| 544 | int |
| 545 | xfs_reclaim_inodes_ag( |
| 546 | struct xfs_mount *mp, |
| 547 | int flags, |
| 548 | int *nr_to_scan) |
| 549 | { |
| 550 | struct xfs_perag *pag; |
| 551 | int error = 0; |
| 552 | int last_error = 0; |
| 553 | xfs_agnumber_t ag; |
Dave Chinner | 69b491c | 2010-09-27 11:09:51 +1000 | [diff] [blame] | 554 | int trylock = flags & SYNC_TRYLOCK; |
| 555 | int skipped; |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 556 | |
Dave Chinner | 69b491c | 2010-09-27 11:09:51 +1000 | [diff] [blame] | 557 | restart: |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 558 | ag = 0; |
Dave Chinner | 69b491c | 2010-09-27 11:09:51 +1000 | [diff] [blame] | 559 | skipped = 0; |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 560 | while ((pag = xfs_perag_get_tag(mp, ag, XFS_ICI_RECLAIM_TAG))) { |
| 561 | unsigned long first_index = 0; |
| 562 | int done = 0; |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 563 | int nr_found = 0; |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 564 | |
| 565 | ag = pag->pag_agno + 1; |
| 566 | |
Dave Chinner | 69b491c | 2010-09-27 11:09:51 +1000 | [diff] [blame] | 567 | if (trylock) { |
| 568 | if (!mutex_trylock(&pag->pag_ici_reclaim_lock)) { |
| 569 | skipped++; |
Dave Chinner | f83282a | 2010-11-08 08:55:04 +0000 | [diff] [blame] | 570 | xfs_perag_put(pag); |
Dave Chinner | 69b491c | 2010-09-27 11:09:51 +1000 | [diff] [blame] | 571 | continue; |
| 572 | } |
| 573 | first_index = pag->pag_ici_reclaim_cursor; |
| 574 | } else |
| 575 | mutex_lock(&pag->pag_ici_reclaim_lock); |
| 576 | |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 577 | do { |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 578 | struct xfs_inode *batch[XFS_LOOKUP_BATCH]; |
| 579 | int i; |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 580 | |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 581 | rcu_read_lock(); |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 582 | nr_found = radix_tree_gang_lookup_tag( |
| 583 | &pag->pag_ici_root, |
| 584 | (void **)batch, first_index, |
| 585 | XFS_LOOKUP_BATCH, |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 586 | XFS_ICI_RECLAIM_TAG); |
| 587 | if (!nr_found) { |
Dave Chinner | b223221 | 2011-05-06 02:54:04 +0000 | [diff] [blame] | 588 | done = 1; |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 589 | rcu_read_unlock(); |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 590 | break; |
| 591 | } |
| 592 | |
| 593 | /* |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 594 | * Grab the inodes before we drop the lock. if we found |
| 595 | * nothing, nr == 0 and the loop will be skipped. |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 596 | */ |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 597 | for (i = 0; i < nr_found; i++) { |
| 598 | struct xfs_inode *ip = batch[i]; |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 599 | |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 600 | if (done || xfs_reclaim_inode_grab(ip, flags)) |
| 601 | batch[i] = NULL; |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 602 | |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 603 | /* |
| 604 | * Update the index for the next lookup. Catch |
| 605 | * overflows into the next AG range which can |
| 606 | * occur if we have inodes in the last block of |
| 607 | * the AG and we are currently pointing to the |
| 608 | * last inode. |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 609 | * |
| 610 | * Because we may see inodes that are from the |
| 611 | * wrong AG due to RCU freeing and |
| 612 | * reallocation, only update the index if it |
| 613 | * lies in this AG. It was a race that lead us |
| 614 | * to see this inode, so another lookup from |
| 615 | * the same index will not find it again. |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 616 | */ |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 617 | if (XFS_INO_TO_AGNO(mp, ip->i_ino) != |
| 618 | pag->pag_agno) |
| 619 | continue; |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 620 | first_index = XFS_INO_TO_AGINO(mp, ip->i_ino + 1); |
| 621 | if (first_index < XFS_INO_TO_AGINO(mp, ip->i_ino)) |
| 622 | done = 1; |
| 623 | } |
| 624 | |
| 625 | /* unlock now we've grabbed the inodes. */ |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 626 | rcu_read_unlock(); |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 627 | |
| 628 | for (i = 0; i < nr_found; i++) { |
| 629 | if (!batch[i]) |
| 630 | continue; |
| 631 | error = xfs_reclaim_inode(batch[i], pag, flags); |
| 632 | if (error && last_error != EFSCORRUPTED) |
| 633 | last_error = error; |
| 634 | } |
| 635 | |
| 636 | *nr_to_scan -= XFS_LOOKUP_BATCH; |
| 637 | |
Dave Chinner | 8daaa83 | 2011-07-08 14:14:46 +1000 | [diff] [blame] | 638 | cond_resched(); |
| 639 | |
Dave Chinner | e3a20c0 | 2010-09-24 19:51:50 +1000 | [diff] [blame] | 640 | } while (nr_found && !done && *nr_to_scan > 0); |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 641 | |
Dave Chinner | 69b491c | 2010-09-27 11:09:51 +1000 | [diff] [blame] | 642 | if (trylock && !done) |
| 643 | pag->pag_ici_reclaim_cursor = first_index; |
| 644 | else |
| 645 | pag->pag_ici_reclaim_cursor = 0; |
| 646 | mutex_unlock(&pag->pag_ici_reclaim_lock); |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 647 | xfs_perag_put(pag); |
| 648 | } |
Dave Chinner | 69b491c | 2010-09-27 11:09:51 +1000 | [diff] [blame] | 649 | |
| 650 | /* |
| 651 | * if we skipped any AG, and we still have scan count remaining, do |
| 652 | * another pass this time using blocking reclaim semantics (i.e |
| 653 | * waiting on the reclaim locks and ignoring the reclaim cursors). This |
| 654 | * ensure that when we get more reclaimers than AGs we block rather |
| 655 | * than spin trying to execute reclaim. |
| 656 | */ |
Dave Chinner | 8daaa83 | 2011-07-08 14:14:46 +1000 | [diff] [blame] | 657 | if (skipped && (flags & SYNC_WAIT) && *nr_to_scan > 0) { |
Dave Chinner | 69b491c | 2010-09-27 11:09:51 +1000 | [diff] [blame] | 658 | trylock = 0; |
| 659 | goto restart; |
| 660 | } |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 661 | return XFS_ERROR(last_error); |
| 662 | } |
| 663 | |
David Chinner | fce08f2 | 2008-10-30 17:37:03 +1100 | [diff] [blame] | 664 | int |
David Chinner | 1dc3318 | 2008-10-30 17:37:15 +1100 | [diff] [blame] | 665 | xfs_reclaim_inodes( |
David Chinner | fce08f2 | 2008-10-30 17:37:03 +1100 | [diff] [blame] | 666 | xfs_mount_t *mp, |
David Chinner | fce08f2 | 2008-10-30 17:37:03 +1100 | [diff] [blame] | 667 | int mode) |
| 668 | { |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 669 | int nr_to_scan = INT_MAX; |
| 670 | |
| 671 | return xfs_reclaim_inodes_ag(mp, mode, &nr_to_scan); |
Dave Chinner | 9bf729c | 2010-04-29 09:55:50 +1000 | [diff] [blame] | 672 | } |
| 673 | |
| 674 | /* |
Dave Chinner | 8daaa83 | 2011-07-08 14:14:46 +1000 | [diff] [blame] | 675 | * Scan a certain number of inodes for reclaim. |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 676 | * |
| 677 | * When called we make sure that there is a background (fast) inode reclaim in |
Dave Chinner | 8daaa83 | 2011-07-08 14:14:46 +1000 | [diff] [blame] | 678 | * progress, while we will throttle the speed of reclaim via doing synchronous |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 679 | * reclaim of inodes. That means if we come across dirty inodes, we wait for |
| 680 | * them to be cleaned, which we hope will not be very long due to the |
| 681 | * background walker having already kicked the IO off on those dirty inodes. |
Dave Chinner | 9bf729c | 2010-04-29 09:55:50 +1000 | [diff] [blame] | 682 | */ |
Dave Chinner | 8daaa83 | 2011-07-08 14:14:46 +1000 | [diff] [blame] | 683 | void |
| 684 | xfs_reclaim_inodes_nr( |
| 685 | struct xfs_mount *mp, |
| 686 | int nr_to_scan) |
Dave Chinner | 9bf729c | 2010-04-29 09:55:50 +1000 | [diff] [blame] | 687 | { |
Dave Chinner | 8daaa83 | 2011-07-08 14:14:46 +1000 | [diff] [blame] | 688 | /* kick background reclaimer and push the AIL */ |
Dave Chinner | 5889608 | 2012-10-08 21:56:05 +1100 | [diff] [blame] | 689 | xfs_reclaim_work_queue(mp); |
Dave Chinner | 8daaa83 | 2011-07-08 14:14:46 +1000 | [diff] [blame] | 690 | xfs_ail_push_all(mp->m_ail); |
Dave Chinner | 9bf729c | 2010-04-29 09:55:50 +1000 | [diff] [blame] | 691 | |
Dave Chinner | 8daaa83 | 2011-07-08 14:14:46 +1000 | [diff] [blame] | 692 | xfs_reclaim_inodes_ag(mp, SYNC_TRYLOCK | SYNC_WAIT, &nr_to_scan); |
| 693 | } |
Dave Chinner | a7b339f | 2011-04-08 12:45:07 +1000 | [diff] [blame] | 694 | |
Dave Chinner | 8daaa83 | 2011-07-08 14:14:46 +1000 | [diff] [blame] | 695 | /* |
| 696 | * Return the number of reclaimable inodes in the filesystem for |
| 697 | * the shrinker to determine how much to reclaim. |
| 698 | */ |
| 699 | int |
| 700 | xfs_reclaim_inodes_count( |
| 701 | struct xfs_mount *mp) |
| 702 | { |
| 703 | struct xfs_perag *pag; |
| 704 | xfs_agnumber_t ag = 0; |
| 705 | int reclaimable = 0; |
Dave Chinner | 9bf729c | 2010-04-29 09:55:50 +1000 | [diff] [blame] | 706 | |
Dave Chinner | 65d0f20 | 2010-09-24 18:40:15 +1000 | [diff] [blame] | 707 | while ((pag = xfs_perag_get_tag(mp, ag, XFS_ICI_RECLAIM_TAG))) { |
| 708 | ag = pag->pag_agno + 1; |
Dave Chinner | 70e60ce | 2010-07-20 08:07:02 +1000 | [diff] [blame] | 709 | reclaimable += pag->pag_ici_reclaimable; |
| 710 | xfs_perag_put(pag); |
Dave Chinner | 9bf729c | 2010-04-29 09:55:50 +1000 | [diff] [blame] | 711 | } |
Dave Chinner | 9bf729c | 2010-04-29 09:55:50 +1000 | [diff] [blame] | 712 | return reclaimable; |
| 713 | } |
| 714 | |