Dave Chinner | 0b61f8a | 2018-06-05 19:42:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2006-2007 Silicon Graphics, Inc. |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 4 | * Copyright (c) 2014 Christoph Hellwig. |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 5 | * All Rights Reserved. |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 6 | */ |
| 7 | #include "xfs.h" |
Darrick J. Wong | 5467b34 | 2019-06-28 19:25:35 -0700 | [diff] [blame] | 8 | #include "xfs_shared.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 9 | #include "xfs_format.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 10 | #include "xfs_log_format.h" |
| 11 | #include "xfs_trans_resv.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 12 | #include "xfs_mount.h" |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 13 | #include "xfs_inode.h" |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 14 | #include "xfs_bmap.h" |
| 15 | #include "xfs_alloc.h" |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 16 | #include "xfs_mru_cache.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 17 | #include "xfs_trace.h" |
Dave Chinner | 9bbafc71 | 2021-06-02 10:48:24 +1000 | [diff] [blame] | 18 | #include "xfs_ag.h" |
Darrick J. Wong | 3fd129b | 2016-09-19 10:30:52 +1000 | [diff] [blame] | 19 | #include "xfs_ag_resv.h" |
Brian Foster | 3e3673e | 2018-07-11 22:26:14 -0700 | [diff] [blame] | 20 | #include "xfs_trans.h" |
Darrick J. Wong | f368b29 | 2019-11-12 20:40:00 -0800 | [diff] [blame] | 21 | #include "xfs_filestream.h" |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 22 | |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 23 | struct xfs_fstrm_item { |
| 24 | struct xfs_mru_cache_elem mru; |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 25 | xfs_agnumber_t ag; /* AG in use for this directory */ |
| 26 | }; |
| 27 | |
| 28 | enum xfs_fstrm_alloc { |
| 29 | XFS_PICK_USERDATA = 1, |
| 30 | XFS_PICK_LOWSPACE = 2, |
| 31 | }; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 32 | |
Christoph Hellwig | 0664ce8 | 2010-07-20 17:31:01 +1000 | [diff] [blame] | 33 | /* |
| 34 | * Allocation group filestream associations are tracked with per-ag atomic |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 35 | * counters. These counters allow xfs_filestream_pick_ag() to tell whether a |
Gao Xiang | b38e074 | 2020-09-23 09:26:31 -0700 | [diff] [blame] | 36 | * particular AG already has active filestreams associated with it. |
Christoph Hellwig | 0664ce8 | 2010-07-20 17:31:01 +1000 | [diff] [blame] | 37 | */ |
Christoph Hellwig | b94acd4 | 2014-04-23 07:11:52 +1000 | [diff] [blame] | 38 | int |
Christoph Hellwig | 0664ce8 | 2010-07-20 17:31:01 +1000 | [diff] [blame] | 39 | xfs_filestream_peek_ag( |
| 40 | xfs_mount_t *mp, |
| 41 | xfs_agnumber_t agno) |
| 42 | { |
| 43 | struct xfs_perag *pag; |
| 44 | int ret; |
| 45 | |
| 46 | pag = xfs_perag_get(mp, agno); |
| 47 | ret = atomic_read(&pag->pagf_fstrms); |
| 48 | xfs_perag_put(pag); |
| 49 | return ret; |
| 50 | } |
| 51 | |
| 52 | static int |
| 53 | xfs_filestream_get_ag( |
| 54 | xfs_mount_t *mp, |
| 55 | xfs_agnumber_t agno) |
| 56 | { |
| 57 | struct xfs_perag *pag; |
| 58 | int ret; |
| 59 | |
| 60 | pag = xfs_perag_get(mp, agno); |
| 61 | ret = atomic_inc_return(&pag->pagf_fstrms); |
| 62 | xfs_perag_put(pag); |
| 63 | return ret; |
| 64 | } |
| 65 | |
| 66 | static void |
| 67 | xfs_filestream_put_ag( |
| 68 | xfs_mount_t *mp, |
| 69 | xfs_agnumber_t agno) |
| 70 | { |
| 71 | struct xfs_perag *pag; |
| 72 | |
| 73 | pag = xfs_perag_get(mp, agno); |
| 74 | atomic_dec(&pag->pagf_fstrms); |
| 75 | xfs_perag_put(pag); |
| 76 | } |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 77 | |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 78 | static void |
| 79 | xfs_fstrm_free_func( |
Christoph Hellwig | 7fcd3ef | 2018-04-09 10:23:39 -0700 | [diff] [blame] | 80 | void *data, |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 81 | struct xfs_mru_cache_elem *mru) |
| 82 | { |
Christoph Hellwig | 7fcd3ef | 2018-04-09 10:23:39 -0700 | [diff] [blame] | 83 | struct xfs_mount *mp = data; |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 84 | struct xfs_fstrm_item *item = |
| 85 | container_of(mru, struct xfs_fstrm_item, mru); |
| 86 | |
Christoph Hellwig | 7fcd3ef | 2018-04-09 10:23:39 -0700 | [diff] [blame] | 87 | xfs_filestream_put_ag(mp, item->ag); |
| 88 | trace_xfs_filestream_free(mp, mru->key, item->ag); |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 89 | |
Christoph Hellwig | 1919add | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 90 | kmem_free(item); |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 91 | } |
| 92 | |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 93 | /* |
| 94 | * Scan the AGs starting at startag looking for an AG that isn't in use and has |
| 95 | * at least minlen blocks free. |
| 96 | */ |
| 97 | static int |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 98 | xfs_filestream_pick_ag( |
| 99 | struct xfs_inode *ip, |
| 100 | xfs_agnumber_t startag, |
| 101 | xfs_agnumber_t *agp, |
| 102 | int flags, |
| 103 | xfs_extlen_t minlen) |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 104 | { |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 105 | struct xfs_mount *mp = ip->i_mount; |
| 106 | struct xfs_fstrm_item *item; |
| 107 | struct xfs_perag *pag; |
Christoph Hellwig | b94acd4 | 2014-04-23 07:11:52 +1000 | [diff] [blame] | 108 | xfs_extlen_t longest, free = 0, minfree, maxfree = 0; |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 109 | xfs_agnumber_t ag, max_ag = NULLAGNUMBER; |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 110 | int err, trylock, nscan; |
| 111 | |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 112 | ASSERT(S_ISDIR(VFS_I(ip)->i_mode)); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 113 | |
| 114 | /* 2% of an AG's blocks must be free for it to be chosen. */ |
| 115 | minfree = mp->m_sb.sb_agblocks / 50; |
| 116 | |
| 117 | ag = startag; |
| 118 | *agp = NULLAGNUMBER; |
| 119 | |
| 120 | /* For the first pass, don't sleep trying to init the per-AG. */ |
| 121 | trylock = XFS_ALLOC_FLAG_TRYLOCK; |
| 122 | |
| 123 | for (nscan = 0; 1; nscan++) { |
Christoph Hellwig | 7fcd3ef | 2018-04-09 10:23:39 -0700 | [diff] [blame] | 124 | trace_xfs_filestream_scan(mp, ip->i_ino, ag); |
Christoph Hellwig | b94acd4 | 2014-04-23 07:11:52 +1000 | [diff] [blame] | 125 | |
Dave Chinner | 4196ac0 | 2010-01-11 11:47:42 +0000 | [diff] [blame] | 126 | pag = xfs_perag_get(mp, ag); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 127 | |
| 128 | if (!pag->pagf_init) { |
| 129 | err = xfs_alloc_pagf_init(mp, NULL, ag, trylock); |
Darrick J. Wong | f48e2df | 2020-01-23 17:01:19 -0800 | [diff] [blame] | 130 | if (err) { |
Dave Chinner | 4196ac0 | 2010-01-11 11:47:42 +0000 | [diff] [blame] | 131 | xfs_perag_put(pag); |
Darrick J. Wong | f48e2df | 2020-01-23 17:01:19 -0800 | [diff] [blame] | 132 | if (err != -EAGAIN) |
| 133 | return err; |
| 134 | /* Couldn't lock the AGF, skip this AG. */ |
| 135 | continue; |
Dave Chinner | 4196ac0 | 2010-01-11 11:47:42 +0000 | [diff] [blame] | 136 | } |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 137 | } |
| 138 | |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 139 | /* Keep track of the AG with the most free blocks. */ |
| 140 | if (pag->pagf_freeblks > maxfree) { |
| 141 | maxfree = pag->pagf_freeblks; |
| 142 | max_ag = ag; |
| 143 | } |
| 144 | |
| 145 | /* |
| 146 | * The AG reference count does two things: it enforces mutual |
| 147 | * exclusion when examining the suitability of an AG in this |
| 148 | * loop, and it guards against two filestreams being established |
| 149 | * in the same AG as each other. |
| 150 | */ |
| 151 | if (xfs_filestream_get_ag(mp, ag) > 1) { |
| 152 | xfs_filestream_put_ag(mp, ag); |
| 153 | goto next_ag; |
| 154 | } |
| 155 | |
Eric Sandeen | a1f6941 | 2018-04-06 10:09:42 -0700 | [diff] [blame] | 156 | longest = xfs_alloc_longest_free_extent(pag, |
Darrick J. Wong | 3fd129b | 2016-09-19 10:30:52 +1000 | [diff] [blame] | 157 | xfs_alloc_min_freelist(mp, pag), |
| 158 | xfs_ag_resv_needed(pag, XFS_AG_RESV_NONE)); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 159 | if (((minlen && longest >= minlen) || |
| 160 | (!minlen && pag->pagf_freeblks >= minfree)) && |
| 161 | (!pag->pagf_metadata || !(flags & XFS_PICK_USERDATA) || |
| 162 | (flags & XFS_PICK_LOWSPACE))) { |
| 163 | |
| 164 | /* Break out, retaining the reference on the AG. */ |
| 165 | free = pag->pagf_freeblks; |
Dave Chinner | 4196ac0 | 2010-01-11 11:47:42 +0000 | [diff] [blame] | 166 | xfs_perag_put(pag); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 167 | *agp = ag; |
| 168 | break; |
| 169 | } |
| 170 | |
| 171 | /* Drop the reference on this AG, it's not usable. */ |
| 172 | xfs_filestream_put_ag(mp, ag); |
| 173 | next_ag: |
Dave Chinner | 4196ac0 | 2010-01-11 11:47:42 +0000 | [diff] [blame] | 174 | xfs_perag_put(pag); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 175 | /* Move to the next AG, wrapping to AG 0 if necessary. */ |
| 176 | if (++ag >= mp->m_sb.sb_agcount) |
| 177 | ag = 0; |
| 178 | |
| 179 | /* If a full pass of the AGs hasn't been done yet, continue. */ |
| 180 | if (ag != startag) |
| 181 | continue; |
| 182 | |
| 183 | /* Allow sleeping in xfs_alloc_pagf_init() on the 2nd pass. */ |
| 184 | if (trylock != 0) { |
| 185 | trylock = 0; |
| 186 | continue; |
| 187 | } |
| 188 | |
| 189 | /* Finally, if lowspace wasn't set, set it for the 3rd pass. */ |
| 190 | if (!(flags & XFS_PICK_LOWSPACE)) { |
| 191 | flags |= XFS_PICK_LOWSPACE; |
| 192 | continue; |
| 193 | } |
| 194 | |
| 195 | /* |
| 196 | * Take the AG with the most free space, regardless of whether |
| 197 | * it's already in use by another filestream. |
| 198 | */ |
| 199 | if (max_ag != NULLAGNUMBER) { |
| 200 | xfs_filestream_get_ag(mp, max_ag); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 201 | free = maxfree; |
| 202 | *agp = max_ag; |
| 203 | break; |
| 204 | } |
| 205 | |
| 206 | /* take AG 0 if none matched */ |
Christoph Hellwig | b94acd4 | 2014-04-23 07:11:52 +1000 | [diff] [blame] | 207 | trace_xfs_filestream_pick(ip, *agp, free, nscan); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 208 | *agp = 0; |
| 209 | return 0; |
| 210 | } |
| 211 | |
Christoph Hellwig | b94acd4 | 2014-04-23 07:11:52 +1000 | [diff] [blame] | 212 | trace_xfs_filestream_pick(ip, *agp, free, nscan); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 213 | |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 214 | if (*agp == NULLAGNUMBER) |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 215 | return 0; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 216 | |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 217 | err = -ENOMEM; |
Christoph Hellwig | 1919add | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 218 | item = kmem_alloc(sizeof(*item), KM_MAYFAIL); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 219 | if (!item) |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 220 | goto out_put_ag; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 221 | |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 222 | item->ag = *agp; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 223 | |
Christoph Hellwig | 22328d7 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 224 | err = xfs_mru_cache_insert(mp->m_filestream, ip->i_ino, &item->mru); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 225 | if (err) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 226 | if (err == -EEXIST) |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 227 | err = 0; |
| 228 | goto out_free_item; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 229 | } |
| 230 | |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 231 | return 0; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 232 | |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 233 | out_free_item: |
Christoph Hellwig | 1919add | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 234 | kmem_free(item); |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 235 | out_put_ag: |
| 236 | xfs_filestream_put_ag(mp, *agp); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 237 | return err; |
| 238 | } |
| 239 | |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 240 | static struct xfs_inode * |
| 241 | xfs_filestream_get_parent( |
| 242 | struct xfs_inode *ip) |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 243 | { |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 244 | struct inode *inode = VFS_I(ip), *dir = NULL; |
| 245 | struct dentry *dentry, *parent; |
| 246 | |
| 247 | dentry = d_find_alias(inode); |
| 248 | if (!dentry) |
| 249 | goto out; |
| 250 | |
| 251 | parent = dget_parent(dentry); |
| 252 | if (!parent) |
| 253 | goto out_dput; |
| 254 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 255 | dir = igrab(d_inode(parent)); |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 256 | dput(parent); |
| 257 | |
| 258 | out_dput: |
| 259 | dput(dentry); |
| 260 | out: |
| 261 | return dir ? XFS_I(dir) : NULL; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | /* |
Christoph Hellwig | 3b8d907 | 2014-04-23 07:11:52 +1000 | [diff] [blame] | 265 | * Find the right allocation group for a file, either by finding an |
| 266 | * existing file stream or creating a new one. |
| 267 | * |
| 268 | * Returns NULLAGNUMBER in case of an error. |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 269 | */ |
| 270 | xfs_agnumber_t |
| 271 | xfs_filestream_lookup_ag( |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 272 | struct xfs_inode *ip) |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 273 | { |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 274 | struct xfs_mount *mp = ip->i_mount; |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 275 | struct xfs_inode *pip = NULL; |
Christoph Hellwig | 3b8d907 | 2014-04-23 07:11:52 +1000 | [diff] [blame] | 276 | xfs_agnumber_t startag, ag = NULLAGNUMBER; |
Christoph Hellwig | 22328d7 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 277 | struct xfs_mru_cache_elem *mru; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 278 | |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 279 | ASSERT(S_ISREG(VFS_I(ip)->i_mode)); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 280 | |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 281 | pip = xfs_filestream_get_parent(ip); |
| 282 | if (!pip) |
Eric Sandeen | b26384d | 2015-03-25 14:54:25 +1100 | [diff] [blame] | 283 | return NULLAGNUMBER; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 284 | |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 285 | mru = xfs_mru_cache_lookup(mp->m_filestream, pip->i_ino); |
Christoph Hellwig | 22328d7 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 286 | if (mru) { |
Christoph Hellwig | 3b8d907 | 2014-04-23 07:11:52 +1000 | [diff] [blame] | 287 | ag = container_of(mru, struct xfs_fstrm_item, mru)->ag; |
Christoph Hellwig | 22328d7 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 288 | xfs_mru_cache_done(mp->m_filestream); |
Christoph Hellwig | 3b8d907 | 2014-04-23 07:11:52 +1000 | [diff] [blame] | 289 | |
Christoph Hellwig | 7fcd3ef | 2018-04-09 10:23:39 -0700 | [diff] [blame] | 290 | trace_xfs_filestream_lookup(mp, ip->i_ino, ag); |
Christoph Hellwig | 3b8d907 | 2014-04-23 07:11:52 +1000 | [diff] [blame] | 291 | goto out; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | /* |
| 295 | * Set the starting AG using the rotor for inode32, otherwise |
| 296 | * use the directory inode's AG. |
| 297 | */ |
Dave Chinner | 2e973b2 | 2021-08-18 18:46:52 -0700 | [diff] [blame] | 298 | if (xfs_is_inode32(mp)) { |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 299 | xfs_agnumber_t rotorstep = xfs_rotorstep; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 300 | startag = (mp->m_agfrotor / rotorstep) % mp->m_sb.sb_agcount; |
| 301 | mp->m_agfrotor = (mp->m_agfrotor + 1) % |
| 302 | (mp->m_sb.sb_agcount * rotorstep); |
| 303 | } else |
| 304 | startag = XFS_INO_TO_AGNO(mp, pip->i_ino); |
| 305 | |
Christoph Hellwig | 3b8d907 | 2014-04-23 07:11:52 +1000 | [diff] [blame] | 306 | if (xfs_filestream_pick_ag(pip, startag, &ag, 0, 0)) |
| 307 | ag = NULLAGNUMBER; |
| 308 | out: |
Darrick J. Wong | 44a8736 | 2018-07-25 12:52:32 -0700 | [diff] [blame] | 309 | xfs_irele(pip); |
Christoph Hellwig | 3b8d907 | 2014-04-23 07:11:52 +1000 | [diff] [blame] | 310 | return ag; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | /* |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 314 | * Pick a new allocation group for the current file and its file stream. |
| 315 | * |
| 316 | * This is called when the allocator can't find a suitable extent in the |
| 317 | * current AG, and we have to move the stream into a new AG with more space. |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 318 | */ |
| 319 | int |
| 320 | xfs_filestream_new_ag( |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 321 | struct xfs_bmalloca *ap, |
| 322 | xfs_agnumber_t *agp) |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 323 | { |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 324 | struct xfs_inode *ip = ap->ip, *pip; |
| 325 | struct xfs_mount *mp = ip->i_mount; |
| 326 | xfs_extlen_t minlen = ap->length; |
| 327 | xfs_agnumber_t startag = 0; |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 328 | int flags = 0; |
| 329 | int err = 0; |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 330 | struct xfs_mru_cache_elem *mru; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 331 | |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 332 | *agp = NULLAGNUMBER; |
| 333 | |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 334 | pip = xfs_filestream_get_parent(ip); |
| 335 | if (!pip) |
| 336 | goto exit; |
| 337 | |
| 338 | mru = xfs_mru_cache_remove(mp->m_filestream, pip->i_ino); |
Christoph Hellwig | 22328d7 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 339 | if (mru) { |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 340 | struct xfs_fstrm_item *item = |
| 341 | container_of(mru, struct xfs_fstrm_item, mru); |
| 342 | startag = (item->ag + 1) % mp->m_sb.sb_agcount; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 343 | } |
| 344 | |
Christoph Hellwig | c34d570 | 2019-10-30 12:25:00 -0700 | [diff] [blame] | 345 | if (ap->datatype & XFS_ALLOC_USERDATA) |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 346 | flags |= XFS_PICK_USERDATA; |
Brian Foster | 1214f1c | 2018-08-01 07:20:31 -0700 | [diff] [blame] | 347 | if (ap->tp->t_flags & XFS_TRANS_LOWMODE) |
Dave Chinner | 292378e | 2016-09-26 08:21:28 +1000 | [diff] [blame] | 348 | flags |= XFS_PICK_LOWSPACE; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 349 | |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 350 | err = xfs_filestream_pick_ag(pip, startag, agp, flags, minlen); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 351 | |
| 352 | /* |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 353 | * Only free the item here so we skip over the old AG earlier. |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 354 | */ |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 355 | if (mru) |
Christoph Hellwig | 7fcd3ef | 2018-04-09 10:23:39 -0700 | [diff] [blame] | 356 | xfs_fstrm_free_func(mp, mru); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 357 | |
Darrick J. Wong | 44a8736 | 2018-07-25 12:52:32 -0700 | [diff] [blame] | 358 | xfs_irele(pip); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 359 | exit: |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 360 | if (*agp == NULLAGNUMBER) |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 361 | *agp = 0; |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 362 | return err; |
| 363 | } |
| 364 | |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 365 | void |
| 366 | xfs_filestream_deassociate( |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 367 | struct xfs_inode *ip) |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 368 | { |
Christoph Hellwig | 22328d7 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 369 | xfs_mru_cache_delete(ip->i_mount->m_filestream, ip->i_ino); |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 370 | } |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 371 | |
| 372 | int |
| 373 | xfs_filestream_mount( |
| 374 | xfs_mount_t *mp) |
| 375 | { |
| 376 | /* |
| 377 | * The filestream timer tunable is currently fixed within the range of |
| 378 | * one second to four minutes, with five seconds being the default. The |
| 379 | * group count is somewhat arbitrary, but it'd be nice to adhere to the |
| 380 | * timer tunable to within about 10 percent. This requires at least 10 |
| 381 | * groups. |
| 382 | */ |
Christoph Hellwig | 7fcd3ef | 2018-04-09 10:23:39 -0700 | [diff] [blame] | 383 | return xfs_mru_cache_create(&mp->m_filestream, mp, |
| 384 | xfs_fstrm_centisecs * 10, 10, xfs_fstrm_free_func); |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | void |
| 388 | xfs_filestream_unmount( |
| 389 | xfs_mount_t *mp) |
| 390 | { |
| 391 | xfs_mru_cache_destroy(mp->m_filestream); |
| 392 | } |