xfs_rtalloc.c 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2000-2005 Silicon Graphics, Inc.
  4. * All Rights Reserved.
  5. */
  6. #include "xfs.h"
  7. #include "xfs_fs.h"
  8. #include "xfs_shared.h"
  9. #include "xfs_format.h"
  10. #include "xfs_log_format.h"
  11. #include "xfs_trans_resv.h"
  12. #include "xfs_bit.h"
  13. #include "xfs_mount.h"
  14. #include "xfs_defer.h"
  15. #include "xfs_inode.h"
  16. #include "xfs_bmap.h"
  17. #include "xfs_bmap_util.h"
  18. #include "xfs_bmap_btree.h"
  19. #include "xfs_alloc.h"
  20. #include "xfs_error.h"
  21. #include "xfs_trans.h"
  22. #include "xfs_trans_space.h"
  23. #include "xfs_trace.h"
  24. #include "xfs_buf.h"
  25. #include "xfs_icache.h"
  26. #include "xfs_rtalloc.h"
  27. /*
  28. * Read and return the summary information for a given extent size,
  29. * bitmap block combination.
  30. * Keeps track of a current summary block, so we don't keep reading
  31. * it from the buffer cache.
  32. */
  33. static int
  34. xfs_rtget_summary(
  35. xfs_mount_t *mp, /* file system mount structure */
  36. xfs_trans_t *tp, /* transaction pointer */
  37. int log, /* log2 of extent size */
  38. xfs_rtblock_t bbno, /* bitmap block number */
  39. xfs_buf_t **rbpp, /* in/out: summary block buffer */
  40. xfs_fsblock_t *rsb, /* in/out: summary block number */
  41. xfs_suminfo_t *sum) /* out: summary info for this block */
  42. {
  43. return xfs_rtmodify_summary_int(mp, tp, log, bbno, 0, rbpp, rsb, sum);
  44. }
  45. /*
  46. * Return whether there are any free extents in the size range given
  47. * by low and high, for the bitmap block bbno.
  48. */
  49. STATIC int /* error */
  50. xfs_rtany_summary(
  51. xfs_mount_t *mp, /* file system mount structure */
  52. xfs_trans_t *tp, /* transaction pointer */
  53. int low, /* low log2 extent size */
  54. int high, /* high log2 extent size */
  55. xfs_rtblock_t bbno, /* bitmap block number */
  56. xfs_buf_t **rbpp, /* in/out: summary block buffer */
  57. xfs_fsblock_t *rsb, /* in/out: summary block number */
  58. int *stat) /* out: any good extents here? */
  59. {
  60. int error; /* error value */
  61. int log; /* loop counter, log2 of ext. size */
  62. xfs_suminfo_t sum; /* summary data */
  63. /*
  64. * Loop over logs of extent sizes. Order is irrelevant.
  65. */
  66. for (log = low; log <= high; log++) {
  67. /*
  68. * Get one summary datum.
  69. */
  70. error = xfs_rtget_summary(mp, tp, log, bbno, rbpp, rsb, &sum);
  71. if (error) {
  72. return error;
  73. }
  74. /*
  75. * If there are any, return success.
  76. */
  77. if (sum) {
  78. *stat = 1;
  79. return 0;
  80. }
  81. }
  82. /*
  83. * Found nothing, return failure.
  84. */
  85. *stat = 0;
  86. return 0;
  87. }
  88. /*
  89. * Copy and transform the summary file, given the old and new
  90. * parameters in the mount structures.
  91. */
  92. STATIC int /* error */
  93. xfs_rtcopy_summary(
  94. xfs_mount_t *omp, /* old file system mount point */
  95. xfs_mount_t *nmp, /* new file system mount point */
  96. xfs_trans_t *tp) /* transaction pointer */
  97. {
  98. xfs_rtblock_t bbno; /* bitmap block number */
  99. xfs_buf_t *bp; /* summary buffer */
  100. int error; /* error return value */
  101. int log; /* summary level number (log length) */
  102. xfs_suminfo_t sum; /* summary data */
  103. xfs_fsblock_t sumbno; /* summary block number */
  104. bp = NULL;
  105. for (log = omp->m_rsumlevels - 1; log >= 0; log--) {
  106. for (bbno = omp->m_sb.sb_rbmblocks - 1;
  107. (xfs_srtblock_t)bbno >= 0;
  108. bbno--) {
  109. error = xfs_rtget_summary(omp, tp, log, bbno, &bp,
  110. &sumbno, &sum);
  111. if (error)
  112. return error;
  113. if (sum == 0)
  114. continue;
  115. error = xfs_rtmodify_summary(omp, tp, log, bbno, -sum,
  116. &bp, &sumbno);
  117. if (error)
  118. return error;
  119. error = xfs_rtmodify_summary(nmp, tp, log, bbno, sum,
  120. &bp, &sumbno);
  121. if (error)
  122. return error;
  123. ASSERT(sum > 0);
  124. }
  125. }
  126. return 0;
  127. }
  128. /*
  129. * Mark an extent specified by start and len allocated.
  130. * Updates all the summary information as well as the bitmap.
  131. */
  132. STATIC int /* error */
  133. xfs_rtallocate_range(
  134. xfs_mount_t *mp, /* file system mount point */
  135. xfs_trans_t *tp, /* transaction pointer */
  136. xfs_rtblock_t start, /* start block to allocate */
  137. xfs_extlen_t len, /* length to allocate */
  138. xfs_buf_t **rbpp, /* in/out: summary block buffer */
  139. xfs_fsblock_t *rsb) /* in/out: summary block number */
  140. {
  141. xfs_rtblock_t end; /* end of the allocated extent */
  142. int error; /* error value */
  143. xfs_rtblock_t postblock = 0; /* first block allocated > end */
  144. xfs_rtblock_t preblock = 0; /* first block allocated < start */
  145. end = start + len - 1;
  146. /*
  147. * Assume we're allocating out of the middle of a free extent.
  148. * We need to find the beginning and end of the extent so we can
  149. * properly update the summary.
  150. */
  151. error = xfs_rtfind_back(mp, tp, start, 0, &preblock);
  152. if (error) {
  153. return error;
  154. }
  155. /*
  156. * Find the next allocated block (end of free extent).
  157. */
  158. error = xfs_rtfind_forw(mp, tp, end, mp->m_sb.sb_rextents - 1,
  159. &postblock);
  160. if (error) {
  161. return error;
  162. }
  163. /*
  164. * Decrement the summary information corresponding to the entire
  165. * (old) free extent.
  166. */
  167. error = xfs_rtmodify_summary(mp, tp,
  168. XFS_RTBLOCKLOG(postblock + 1 - preblock),
  169. XFS_BITTOBLOCK(mp, preblock), -1, rbpp, rsb);
  170. if (error) {
  171. return error;
  172. }
  173. /*
  174. * If there are blocks not being allocated at the front of the
  175. * old extent, add summary data for them to be free.
  176. */
  177. if (preblock < start) {
  178. error = xfs_rtmodify_summary(mp, tp,
  179. XFS_RTBLOCKLOG(start - preblock),
  180. XFS_BITTOBLOCK(mp, preblock), 1, rbpp, rsb);
  181. if (error) {
  182. return error;
  183. }
  184. }
  185. /*
  186. * If there are blocks not being allocated at the end of the
  187. * old extent, add summary data for them to be free.
  188. */
  189. if (postblock > end) {
  190. error = xfs_rtmodify_summary(mp, tp,
  191. XFS_RTBLOCKLOG(postblock - end),
  192. XFS_BITTOBLOCK(mp, end + 1), 1, rbpp, rsb);
  193. if (error) {
  194. return error;
  195. }
  196. }
  197. /*
  198. * Modify the bitmap to mark this extent allocated.
  199. */
  200. error = xfs_rtmodify_range(mp, tp, start, len, 0);
  201. return error;
  202. }
  203. /*
  204. * Attempt to allocate an extent minlen<=len<=maxlen starting from
  205. * bitmap block bbno. If we don't get maxlen then use prod to trim
  206. * the length, if given. Returns error; returns starting block in *rtblock.
  207. * The lengths are all in rtextents.
  208. */
  209. STATIC int /* error */
  210. xfs_rtallocate_extent_block(
  211. xfs_mount_t *mp, /* file system mount point */
  212. xfs_trans_t *tp, /* transaction pointer */
  213. xfs_rtblock_t bbno, /* bitmap block number */
  214. xfs_extlen_t minlen, /* minimum length to allocate */
  215. xfs_extlen_t maxlen, /* maximum length to allocate */
  216. xfs_extlen_t *len, /* out: actual length allocated */
  217. xfs_rtblock_t *nextp, /* out: next block to try */
  218. xfs_buf_t **rbpp, /* in/out: summary block buffer */
  219. xfs_fsblock_t *rsb, /* in/out: summary block number */
  220. xfs_extlen_t prod, /* extent product factor */
  221. xfs_rtblock_t *rtblock) /* out: start block allocated */
  222. {
  223. xfs_rtblock_t besti; /* best rtblock found so far */
  224. xfs_rtblock_t bestlen; /* best length found so far */
  225. xfs_rtblock_t end; /* last rtblock in chunk */
  226. int error; /* error value */
  227. xfs_rtblock_t i; /* current rtblock trying */
  228. xfs_rtblock_t next; /* next rtblock to try */
  229. int stat; /* status from internal calls */
  230. /*
  231. * Loop over all the extents starting in this bitmap block,
  232. * looking for one that's long enough.
  233. */
  234. for (i = XFS_BLOCKTOBIT(mp, bbno), besti = -1, bestlen = 0,
  235. end = XFS_BLOCKTOBIT(mp, bbno + 1) - 1;
  236. i <= end;
  237. i++) {
  238. /*
  239. * See if there's a free extent of maxlen starting at i.
  240. * If it's not so then next will contain the first non-free.
  241. */
  242. error = xfs_rtcheck_range(mp, tp, i, maxlen, 1, &next, &stat);
  243. if (error) {
  244. return error;
  245. }
  246. if (stat) {
  247. /*
  248. * i for maxlen is all free, allocate and return that.
  249. */
  250. error = xfs_rtallocate_range(mp, tp, i, maxlen, rbpp,
  251. rsb);
  252. if (error) {
  253. return error;
  254. }
  255. *len = maxlen;
  256. *rtblock = i;
  257. return 0;
  258. }
  259. /*
  260. * In the case where we have a variable-sized allocation
  261. * request, figure out how big this free piece is,
  262. * and if it's big enough for the minimum, and the best
  263. * so far, remember it.
  264. */
  265. if (minlen < maxlen) {
  266. xfs_rtblock_t thislen; /* this extent size */
  267. thislen = next - i;
  268. if (thislen >= minlen && thislen > bestlen) {
  269. besti = i;
  270. bestlen = thislen;
  271. }
  272. }
  273. /*
  274. * If not done yet, find the start of the next free space.
  275. */
  276. if (next < end) {
  277. error = xfs_rtfind_forw(mp, tp, next, end, &i);
  278. if (error) {
  279. return error;
  280. }
  281. } else
  282. break;
  283. }
  284. /*
  285. * Searched the whole thing & didn't find a maxlen free extent.
  286. */
  287. if (minlen < maxlen && besti != -1) {
  288. xfs_extlen_t p; /* amount to trim length by */
  289. /*
  290. * If size should be a multiple of prod, make that so.
  291. */
  292. if (prod > 1) {
  293. div_u64_rem(bestlen, prod, &p);
  294. if (p)
  295. bestlen -= p;
  296. }
  297. /*
  298. * Allocate besti for bestlen & return that.
  299. */
  300. error = xfs_rtallocate_range(mp, tp, besti, bestlen, rbpp, rsb);
  301. if (error) {
  302. return error;
  303. }
  304. *len = bestlen;
  305. *rtblock = besti;
  306. return 0;
  307. }
  308. /*
  309. * Allocation failed. Set *nextp to the next block to try.
  310. */
  311. *nextp = next;
  312. *rtblock = NULLRTBLOCK;
  313. return 0;
  314. }
  315. /*
  316. * Allocate an extent of length minlen<=len<=maxlen, starting at block
  317. * bno. If we don't get maxlen then use prod to trim the length, if given.
  318. * Returns error; returns starting block in *rtblock.
  319. * The lengths are all in rtextents.
  320. */
  321. STATIC int /* error */
  322. xfs_rtallocate_extent_exact(
  323. xfs_mount_t *mp, /* file system mount point */
  324. xfs_trans_t *tp, /* transaction pointer */
  325. xfs_rtblock_t bno, /* starting block number to allocate */
  326. xfs_extlen_t minlen, /* minimum length to allocate */
  327. xfs_extlen_t maxlen, /* maximum length to allocate */
  328. xfs_extlen_t *len, /* out: actual length allocated */
  329. xfs_buf_t **rbpp, /* in/out: summary block buffer */
  330. xfs_fsblock_t *rsb, /* in/out: summary block number */
  331. xfs_extlen_t prod, /* extent product factor */
  332. xfs_rtblock_t *rtblock) /* out: start block allocated */
  333. {
  334. int error; /* error value */
  335. xfs_extlen_t i; /* extent length trimmed due to prod */
  336. int isfree; /* extent is free */
  337. xfs_rtblock_t next; /* next block to try (dummy) */
  338. ASSERT(minlen % prod == 0 && maxlen % prod == 0);
  339. /*
  340. * Check if the range in question (for maxlen) is free.
  341. */
  342. error = xfs_rtcheck_range(mp, tp, bno, maxlen, 1, &next, &isfree);
  343. if (error) {
  344. return error;
  345. }
  346. if (isfree) {
  347. /*
  348. * If it is, allocate it and return success.
  349. */
  350. error = xfs_rtallocate_range(mp, tp, bno, maxlen, rbpp, rsb);
  351. if (error) {
  352. return error;
  353. }
  354. *len = maxlen;
  355. *rtblock = bno;
  356. return 0;
  357. }
  358. /*
  359. * If not, allocate what there is, if it's at least minlen.
  360. */
  361. maxlen = next - bno;
  362. if (maxlen < minlen) {
  363. /*
  364. * Failed, return failure status.
  365. */
  366. *rtblock = NULLRTBLOCK;
  367. return 0;
  368. }
  369. /*
  370. * Trim off tail of extent, if prod is specified.
  371. */
  372. if (prod > 1 && (i = maxlen % prod)) {
  373. maxlen -= i;
  374. if (maxlen < minlen) {
  375. /*
  376. * Now we can't do it, return failure status.
  377. */
  378. *rtblock = NULLRTBLOCK;
  379. return 0;
  380. }
  381. }
  382. /*
  383. * Allocate what we can and return it.
  384. */
  385. error = xfs_rtallocate_range(mp, tp, bno, maxlen, rbpp, rsb);
  386. if (error) {
  387. return error;
  388. }
  389. *len = maxlen;
  390. *rtblock = bno;
  391. return 0;
  392. }
  393. /*
  394. * Allocate an extent of length minlen<=len<=maxlen, starting as near
  395. * to bno as possible. If we don't get maxlen then use prod to trim
  396. * the length, if given. The lengths are all in rtextents.
  397. */
  398. STATIC int /* error */
  399. xfs_rtallocate_extent_near(
  400. xfs_mount_t *mp, /* file system mount point */
  401. xfs_trans_t *tp, /* transaction pointer */
  402. xfs_rtblock_t bno, /* starting block number to allocate */
  403. xfs_extlen_t minlen, /* minimum length to allocate */
  404. xfs_extlen_t maxlen, /* maximum length to allocate */
  405. xfs_extlen_t *len, /* out: actual length allocated */
  406. xfs_buf_t **rbpp, /* in/out: summary block buffer */
  407. xfs_fsblock_t *rsb, /* in/out: summary block number */
  408. xfs_extlen_t prod, /* extent product factor */
  409. xfs_rtblock_t *rtblock) /* out: start block allocated */
  410. {
  411. int any; /* any useful extents from summary */
  412. xfs_rtblock_t bbno; /* bitmap block number */
  413. int error; /* error value */
  414. int i; /* bitmap block offset (loop control) */
  415. int j; /* secondary loop control */
  416. int log2len; /* log2 of minlen */
  417. xfs_rtblock_t n; /* next block to try */
  418. xfs_rtblock_t r; /* result block */
  419. ASSERT(minlen % prod == 0 && maxlen % prod == 0);
  420. /*
  421. * If the block number given is off the end, silently set it to
  422. * the last block.
  423. */
  424. if (bno >= mp->m_sb.sb_rextents)
  425. bno = mp->m_sb.sb_rextents - 1;
  426. /*
  427. * Try the exact allocation first.
  428. */
  429. error = xfs_rtallocate_extent_exact(mp, tp, bno, minlen, maxlen, len,
  430. rbpp, rsb, prod, &r);
  431. if (error) {
  432. return error;
  433. }
  434. /*
  435. * If the exact allocation worked, return that.
  436. */
  437. if (r != NULLRTBLOCK) {
  438. *rtblock = r;
  439. return 0;
  440. }
  441. bbno = XFS_BITTOBLOCK(mp, bno);
  442. i = 0;
  443. ASSERT(minlen != 0);
  444. log2len = xfs_highbit32(minlen);
  445. /*
  446. * Loop over all bitmap blocks (bbno + i is current block).
  447. */
  448. for (;;) {
  449. /*
  450. * Get summary information of extents of all useful levels
  451. * starting in this bitmap block.
  452. */
  453. error = xfs_rtany_summary(mp, tp, log2len, mp->m_rsumlevels - 1,
  454. bbno + i, rbpp, rsb, &any);
  455. if (error) {
  456. return error;
  457. }
  458. /*
  459. * If there are any useful extents starting here, try
  460. * allocating one.
  461. */
  462. if (any) {
  463. /*
  464. * On the positive side of the starting location.
  465. */
  466. if (i >= 0) {
  467. /*
  468. * Try to allocate an extent starting in
  469. * this block.
  470. */
  471. error = xfs_rtallocate_extent_block(mp, tp,
  472. bbno + i, minlen, maxlen, len, &n, rbpp,
  473. rsb, prod, &r);
  474. if (error) {
  475. return error;
  476. }
  477. /*
  478. * If it worked, return it.
  479. */
  480. if (r != NULLRTBLOCK) {
  481. *rtblock = r;
  482. return 0;
  483. }
  484. }
  485. /*
  486. * On the negative side of the starting location.
  487. */
  488. else { /* i < 0 */
  489. /*
  490. * Loop backwards through the bitmap blocks from
  491. * the starting point-1 up to where we are now.
  492. * There should be an extent which ends in this
  493. * bitmap block and is long enough.
  494. */
  495. for (j = -1; j > i; j--) {
  496. /*
  497. * Grab the summary information for
  498. * this bitmap block.
  499. */
  500. error = xfs_rtany_summary(mp, tp,
  501. log2len, mp->m_rsumlevels - 1,
  502. bbno + j, rbpp, rsb, &any);
  503. if (error) {
  504. return error;
  505. }
  506. /*
  507. * If there's no extent given in the
  508. * summary that means the extent we
  509. * found must carry over from an
  510. * earlier block. If there is an
  511. * extent given, we've already tried
  512. * that allocation, don't do it again.
  513. */
  514. if (any)
  515. continue;
  516. error = xfs_rtallocate_extent_block(mp,
  517. tp, bbno + j, minlen, maxlen,
  518. len, &n, rbpp, rsb, prod, &r);
  519. if (error) {
  520. return error;
  521. }
  522. /*
  523. * If it works, return the extent.
  524. */
  525. if (r != NULLRTBLOCK) {
  526. *rtblock = r;
  527. return 0;
  528. }
  529. }
  530. /*
  531. * There weren't intervening bitmap blocks
  532. * with a long enough extent, or the
  533. * allocation didn't work for some reason
  534. * (i.e. it's a little * too short).
  535. * Try to allocate from the summary block
  536. * that we found.
  537. */
  538. error = xfs_rtallocate_extent_block(mp, tp,
  539. bbno + i, minlen, maxlen, len, &n, rbpp,
  540. rsb, prod, &r);
  541. if (error) {
  542. return error;
  543. }
  544. /*
  545. * If it works, return the extent.
  546. */
  547. if (r != NULLRTBLOCK) {
  548. *rtblock = r;
  549. return 0;
  550. }
  551. }
  552. }
  553. /*
  554. * Loop control. If we were on the positive side, and there's
  555. * still more blocks on the negative side, go there.
  556. */
  557. if (i > 0 && (int)bbno - i >= 0)
  558. i = -i;
  559. /*
  560. * If positive, and no more negative, but there are more
  561. * positive, go there.
  562. */
  563. else if (i > 0 && (int)bbno + i < mp->m_sb.sb_rbmblocks - 1)
  564. i++;
  565. /*
  566. * If negative or 0 (just started), and there are positive
  567. * blocks to go, go there. The 0 case moves to block 1.
  568. */
  569. else if (i <= 0 && (int)bbno - i < mp->m_sb.sb_rbmblocks - 1)
  570. i = 1 - i;
  571. /*
  572. * If negative or 0 and there are more negative blocks,
  573. * go there.
  574. */
  575. else if (i <= 0 && (int)bbno + i > 0)
  576. i--;
  577. /*
  578. * Must be done. Return failure.
  579. */
  580. else
  581. break;
  582. }
  583. *rtblock = NULLRTBLOCK;
  584. return 0;
  585. }
  586. /*
  587. * Allocate an extent of length minlen<=len<=maxlen, with no position
  588. * specified. If we don't get maxlen then use prod to trim
  589. * the length, if given. The lengths are all in rtextents.
  590. */
  591. STATIC int /* error */
  592. xfs_rtallocate_extent_size(
  593. xfs_mount_t *mp, /* file system mount point */
  594. xfs_trans_t *tp, /* transaction pointer */
  595. xfs_extlen_t minlen, /* minimum length to allocate */
  596. xfs_extlen_t maxlen, /* maximum length to allocate */
  597. xfs_extlen_t *len, /* out: actual length allocated */
  598. xfs_buf_t **rbpp, /* in/out: summary block buffer */
  599. xfs_fsblock_t *rsb, /* in/out: summary block number */
  600. xfs_extlen_t prod, /* extent product factor */
  601. xfs_rtblock_t *rtblock) /* out: start block allocated */
  602. {
  603. int error; /* error value */
  604. int i; /* bitmap block number */
  605. int l; /* level number (loop control) */
  606. xfs_rtblock_t n; /* next block to be tried */
  607. xfs_rtblock_t r; /* result block number */
  608. xfs_suminfo_t sum; /* summary information for extents */
  609. ASSERT(minlen % prod == 0 && maxlen % prod == 0);
  610. ASSERT(maxlen != 0);
  611. /*
  612. * Loop over all the levels starting with maxlen.
  613. * At each level, look at all the bitmap blocks, to see if there
  614. * are extents starting there that are long enough (>= maxlen).
  615. * Note, only on the initial level can the allocation fail if
  616. * the summary says there's an extent.
  617. */
  618. for (l = xfs_highbit32(maxlen); l < mp->m_rsumlevels; l++) {
  619. /*
  620. * Loop over all the bitmap blocks.
  621. */
  622. for (i = 0; i < mp->m_sb.sb_rbmblocks; i++) {
  623. /*
  624. * Get the summary for this level/block.
  625. */
  626. error = xfs_rtget_summary(mp, tp, l, i, rbpp, rsb,
  627. &sum);
  628. if (error) {
  629. return error;
  630. }
  631. /*
  632. * Nothing there, on to the next block.
  633. */
  634. if (!sum)
  635. continue;
  636. /*
  637. * Try allocating the extent.
  638. */
  639. error = xfs_rtallocate_extent_block(mp, tp, i, maxlen,
  640. maxlen, len, &n, rbpp, rsb, prod, &r);
  641. if (error) {
  642. return error;
  643. }
  644. /*
  645. * If it worked, return that.
  646. */
  647. if (r != NULLRTBLOCK) {
  648. *rtblock = r;
  649. return 0;
  650. }
  651. /*
  652. * If the "next block to try" returned from the
  653. * allocator is beyond the next bitmap block,
  654. * skip to that bitmap block.
  655. */
  656. if (XFS_BITTOBLOCK(mp, n) > i + 1)
  657. i = XFS_BITTOBLOCK(mp, n) - 1;
  658. }
  659. }
  660. /*
  661. * Didn't find any maxlen blocks. Try smaller ones, unless
  662. * we're asking for a fixed size extent.
  663. */
  664. if (minlen > --maxlen) {
  665. *rtblock = NULLRTBLOCK;
  666. return 0;
  667. }
  668. ASSERT(minlen != 0);
  669. ASSERT(maxlen != 0);
  670. /*
  671. * Loop over sizes, from maxlen down to minlen.
  672. * This time, when we do the allocations, allow smaller ones
  673. * to succeed.
  674. */
  675. for (l = xfs_highbit32(maxlen); l >= xfs_highbit32(minlen); l--) {
  676. /*
  677. * Loop over all the bitmap blocks, try an allocation
  678. * starting in that block.
  679. */
  680. for (i = 0; i < mp->m_sb.sb_rbmblocks; i++) {
  681. /*
  682. * Get the summary information for this level/block.
  683. */
  684. error = xfs_rtget_summary(mp, tp, l, i, rbpp, rsb,
  685. &sum);
  686. if (error) {
  687. return error;
  688. }
  689. /*
  690. * If nothing there, go on to next.
  691. */
  692. if (!sum)
  693. continue;
  694. /*
  695. * Try the allocation. Make sure the specified
  696. * minlen/maxlen are in the possible range for
  697. * this summary level.
  698. */
  699. error = xfs_rtallocate_extent_block(mp, tp, i,
  700. XFS_RTMAX(minlen, 1 << l),
  701. XFS_RTMIN(maxlen, (1 << (l + 1)) - 1),
  702. len, &n, rbpp, rsb, prod, &r);
  703. if (error) {
  704. return error;
  705. }
  706. /*
  707. * If it worked, return that extent.
  708. */
  709. if (r != NULLRTBLOCK) {
  710. *rtblock = r;
  711. return 0;
  712. }
  713. /*
  714. * If the "next block to try" returned from the
  715. * allocator is beyond the next bitmap block,
  716. * skip to that bitmap block.
  717. */
  718. if (XFS_BITTOBLOCK(mp, n) > i + 1)
  719. i = XFS_BITTOBLOCK(mp, n) - 1;
  720. }
  721. }
  722. /*
  723. * Got nothing, return failure.
  724. */
  725. *rtblock = NULLRTBLOCK;
  726. return 0;
  727. }
  728. /*
  729. * Allocate space to the bitmap or summary file, and zero it, for growfs.
  730. */
  731. STATIC int
  732. xfs_growfs_rt_alloc(
  733. struct xfs_mount *mp, /* file system mount point */
  734. xfs_extlen_t oblocks, /* old count of blocks */
  735. xfs_extlen_t nblocks, /* new count of blocks */
  736. struct xfs_inode *ip) /* inode (bitmap/summary) */
  737. {
  738. xfs_fileoff_t bno; /* block number in file */
  739. struct xfs_buf *bp; /* temporary buffer for zeroing */
  740. xfs_daddr_t d; /* disk block address */
  741. int error; /* error return value */
  742. xfs_fsblock_t fsbno; /* filesystem block for bno */
  743. struct xfs_bmbt_irec map; /* block map output */
  744. int nmap; /* number of block maps */
  745. int resblks; /* space reservation */
  746. struct xfs_trans *tp;
  747. /*
  748. * Allocate space to the file, as necessary.
  749. */
  750. while (oblocks < nblocks) {
  751. resblks = XFS_GROWFSRT_SPACE_RES(mp, nblocks - oblocks);
  752. /*
  753. * Reserve space & log for one extent added to the file.
  754. */
  755. error = xfs_trans_alloc(mp, &M_RES(mp)->tr_growrtalloc, resblks,
  756. 0, 0, &tp);
  757. if (error)
  758. return error;
  759. /*
  760. * Lock the inode.
  761. */
  762. xfs_ilock(ip, XFS_ILOCK_EXCL);
  763. xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
  764. /*
  765. * Allocate blocks to the bitmap file.
  766. */
  767. nmap = 1;
  768. error = xfs_bmapi_write(tp, ip, oblocks, nblocks - oblocks,
  769. XFS_BMAPI_METADATA, resblks, &map,
  770. &nmap);
  771. if (!error && nmap < 1)
  772. error = -ENOSPC;
  773. if (error)
  774. goto out_trans_cancel;
  775. /*
  776. * Free any blocks freed up in the transaction, then commit.
  777. */
  778. error = xfs_trans_commit(tp);
  779. if (error)
  780. return error;
  781. /*
  782. * Now we need to clear the allocated blocks.
  783. * Do this one block per transaction, to keep it simple.
  784. */
  785. for (bno = map.br_startoff, fsbno = map.br_startblock;
  786. bno < map.br_startoff + map.br_blockcount;
  787. bno++, fsbno++) {
  788. /*
  789. * Reserve log for one block zeroing.
  790. */
  791. error = xfs_trans_alloc(mp, &M_RES(mp)->tr_growrtzero,
  792. 0, 0, 0, &tp);
  793. if (error)
  794. return error;
  795. /*
  796. * Lock the bitmap inode.
  797. */
  798. xfs_ilock(ip, XFS_ILOCK_EXCL);
  799. xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
  800. /*
  801. * Get a buffer for the block.
  802. */
  803. d = XFS_FSB_TO_DADDR(mp, fsbno);
  804. bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
  805. mp->m_bsize, 0);
  806. if (bp == NULL) {
  807. error = -EIO;
  808. goto out_trans_cancel;
  809. }
  810. memset(bp->b_addr, 0, mp->m_sb.sb_blocksize);
  811. xfs_trans_log_buf(tp, bp, 0, mp->m_sb.sb_blocksize - 1);
  812. /*
  813. * Commit the transaction.
  814. */
  815. error = xfs_trans_commit(tp);
  816. if (error)
  817. return error;
  818. }
  819. /*
  820. * Go on to the next extent, if any.
  821. */
  822. oblocks = map.br_startoff + map.br_blockcount;
  823. }
  824. return 0;
  825. out_trans_cancel:
  826. xfs_trans_cancel(tp);
  827. return error;
  828. }
  829. /*
  830. * Visible (exported) functions.
  831. */
  832. /*
  833. * Grow the realtime area of the filesystem.
  834. */
  835. int
  836. xfs_growfs_rt(
  837. xfs_mount_t *mp, /* mount point for filesystem */
  838. xfs_growfs_rt_t *in) /* growfs rt input struct */
  839. {
  840. xfs_rtblock_t bmbno; /* bitmap block number */
  841. xfs_buf_t *bp; /* temporary buffer */
  842. int error; /* error return value */
  843. xfs_mount_t *nmp; /* new (fake) mount structure */
  844. xfs_rfsblock_t nrblocks; /* new number of realtime blocks */
  845. xfs_extlen_t nrbmblocks; /* new number of rt bitmap blocks */
  846. xfs_rtblock_t nrextents; /* new number of realtime extents */
  847. uint8_t nrextslog; /* new log2 of sb_rextents */
  848. xfs_extlen_t nrsumblocks; /* new number of summary blocks */
  849. uint nrsumlevels; /* new rt summary levels */
  850. uint nrsumsize; /* new size of rt summary, bytes */
  851. xfs_sb_t *nsbp; /* new superblock */
  852. xfs_extlen_t rbmblocks; /* current number of rt bitmap blocks */
  853. xfs_extlen_t rsumblocks; /* current number of rt summary blks */
  854. xfs_sb_t *sbp; /* old superblock */
  855. xfs_fsblock_t sumbno; /* summary block number */
  856. sbp = &mp->m_sb;
  857. /*
  858. * Initial error checking.
  859. */
  860. if (!capable(CAP_SYS_ADMIN))
  861. return -EPERM;
  862. if (mp->m_rtdev_targp == NULL || mp->m_rbmip == NULL ||
  863. (nrblocks = in->newblocks) <= sbp->sb_rblocks ||
  864. (sbp->sb_rblocks && (in->extsize != sbp->sb_rextsize)))
  865. return -EINVAL;
  866. if ((error = xfs_sb_validate_fsb_count(sbp, nrblocks)))
  867. return error;
  868. /*
  869. * Read in the last block of the device, make sure it exists.
  870. */
  871. error = xfs_buf_read_uncached(mp->m_rtdev_targp,
  872. XFS_FSB_TO_BB(mp, nrblocks - 1),
  873. XFS_FSB_TO_BB(mp, 1), 0, &bp, NULL);
  874. if (error)
  875. return error;
  876. xfs_buf_relse(bp);
  877. /*
  878. * Calculate new parameters. These are the final values to be reached.
  879. */
  880. nrextents = nrblocks;
  881. do_div(nrextents, in->extsize);
  882. nrbmblocks = howmany_64(nrextents, NBBY * sbp->sb_blocksize);
  883. nrextslog = xfs_highbit32(nrextents);
  884. nrsumlevels = nrextslog + 1;
  885. nrsumsize = (uint)sizeof(xfs_suminfo_t) * nrsumlevels * nrbmblocks;
  886. nrsumblocks = XFS_B_TO_FSB(mp, nrsumsize);
  887. nrsumsize = XFS_FSB_TO_B(mp, nrsumblocks);
  888. /*
  889. * New summary size can't be more than half the size of
  890. * the log. This prevents us from getting a log overflow,
  891. * since we'll log basically the whole summary file at once.
  892. */
  893. if (nrsumblocks > (mp->m_sb.sb_logblocks >> 1))
  894. return -EINVAL;
  895. /*
  896. * Get the old block counts for bitmap and summary inodes.
  897. * These can't change since other growfs callers are locked out.
  898. */
  899. rbmblocks = XFS_B_TO_FSB(mp, mp->m_rbmip->i_d.di_size);
  900. rsumblocks = XFS_B_TO_FSB(mp, mp->m_rsumip->i_d.di_size);
  901. /*
  902. * Allocate space to the bitmap and summary files, as necessary.
  903. */
  904. error = xfs_growfs_rt_alloc(mp, rbmblocks, nrbmblocks, mp->m_rbmip);
  905. if (error)
  906. return error;
  907. error = xfs_growfs_rt_alloc(mp, rsumblocks, nrsumblocks, mp->m_rsumip);
  908. if (error)
  909. return error;
  910. /*
  911. * Allocate a new (fake) mount/sb.
  912. */
  913. nmp = kmem_alloc(sizeof(*nmp), KM_SLEEP);
  914. /*
  915. * Loop over the bitmap blocks.
  916. * We will do everything one bitmap block at a time.
  917. * Skip the current block if it is exactly full.
  918. * This also deals with the case where there were no rtextents before.
  919. */
  920. for (bmbno = sbp->sb_rbmblocks -
  921. ((sbp->sb_rextents & ((1 << mp->m_blkbit_log) - 1)) != 0);
  922. bmbno < nrbmblocks;
  923. bmbno++) {
  924. xfs_trans_t *tp;
  925. *nmp = *mp;
  926. nsbp = &nmp->m_sb;
  927. /*
  928. * Calculate new sb and mount fields for this round.
  929. */
  930. nsbp->sb_rextsize = in->extsize;
  931. nsbp->sb_rbmblocks = bmbno + 1;
  932. nsbp->sb_rblocks =
  933. XFS_RTMIN(nrblocks,
  934. nsbp->sb_rbmblocks * NBBY *
  935. nsbp->sb_blocksize * nsbp->sb_rextsize);
  936. nsbp->sb_rextents = nsbp->sb_rblocks;
  937. do_div(nsbp->sb_rextents, nsbp->sb_rextsize);
  938. ASSERT(nsbp->sb_rextents != 0);
  939. nsbp->sb_rextslog = xfs_highbit32(nsbp->sb_rextents);
  940. nrsumlevels = nmp->m_rsumlevels = nsbp->sb_rextslog + 1;
  941. nrsumsize =
  942. (uint)sizeof(xfs_suminfo_t) * nrsumlevels *
  943. nsbp->sb_rbmblocks;
  944. nrsumblocks = XFS_B_TO_FSB(mp, nrsumsize);
  945. nmp->m_rsumsize = nrsumsize = XFS_FSB_TO_B(mp, nrsumblocks);
  946. /*
  947. * Start a transaction, get the log reservation.
  948. */
  949. error = xfs_trans_alloc(mp, &M_RES(mp)->tr_growrtfree, 0, 0, 0,
  950. &tp);
  951. if (error)
  952. break;
  953. /*
  954. * Lock out other callers by grabbing the bitmap inode lock.
  955. */
  956. xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL);
  957. xfs_trans_ijoin(tp, mp->m_rbmip, XFS_ILOCK_EXCL);
  958. /*
  959. * Update the bitmap inode's size.
  960. */
  961. mp->m_rbmip->i_d.di_size =
  962. nsbp->sb_rbmblocks * nsbp->sb_blocksize;
  963. xfs_trans_log_inode(tp, mp->m_rbmip, XFS_ILOG_CORE);
  964. /*
  965. * Get the summary inode into the transaction.
  966. */
  967. xfs_ilock(mp->m_rsumip, XFS_ILOCK_EXCL);
  968. xfs_trans_ijoin(tp, mp->m_rsumip, XFS_ILOCK_EXCL);
  969. /*
  970. * Update the summary inode's size.
  971. */
  972. mp->m_rsumip->i_d.di_size = nmp->m_rsumsize;
  973. xfs_trans_log_inode(tp, mp->m_rsumip, XFS_ILOG_CORE);
  974. /*
  975. * Copy summary data from old to new sizes.
  976. * Do this when the real size (not block-aligned) changes.
  977. */
  978. if (sbp->sb_rbmblocks != nsbp->sb_rbmblocks ||
  979. mp->m_rsumlevels != nmp->m_rsumlevels) {
  980. error = xfs_rtcopy_summary(mp, nmp, tp);
  981. if (error)
  982. goto error_cancel;
  983. }
  984. /*
  985. * Update superblock fields.
  986. */
  987. if (nsbp->sb_rextsize != sbp->sb_rextsize)
  988. xfs_trans_mod_sb(tp, XFS_TRANS_SB_REXTSIZE,
  989. nsbp->sb_rextsize - sbp->sb_rextsize);
  990. if (nsbp->sb_rbmblocks != sbp->sb_rbmblocks)
  991. xfs_trans_mod_sb(tp, XFS_TRANS_SB_RBMBLOCKS,
  992. nsbp->sb_rbmblocks - sbp->sb_rbmblocks);
  993. if (nsbp->sb_rblocks != sbp->sb_rblocks)
  994. xfs_trans_mod_sb(tp, XFS_TRANS_SB_RBLOCKS,
  995. nsbp->sb_rblocks - sbp->sb_rblocks);
  996. if (nsbp->sb_rextents != sbp->sb_rextents)
  997. xfs_trans_mod_sb(tp, XFS_TRANS_SB_REXTENTS,
  998. nsbp->sb_rextents - sbp->sb_rextents);
  999. if (nsbp->sb_rextslog != sbp->sb_rextslog)
  1000. xfs_trans_mod_sb(tp, XFS_TRANS_SB_REXTSLOG,
  1001. nsbp->sb_rextslog - sbp->sb_rextslog);
  1002. /*
  1003. * Free new extent.
  1004. */
  1005. bp = NULL;
  1006. error = xfs_rtfree_range(nmp, tp, sbp->sb_rextents,
  1007. nsbp->sb_rextents - sbp->sb_rextents, &bp, &sumbno);
  1008. if (error) {
  1009. error_cancel:
  1010. xfs_trans_cancel(tp);
  1011. break;
  1012. }
  1013. /*
  1014. * Mark more blocks free in the superblock.
  1015. */
  1016. xfs_trans_mod_sb(tp, XFS_TRANS_SB_FREXTENTS,
  1017. nsbp->sb_rextents - sbp->sb_rextents);
  1018. /*
  1019. * Update mp values into the real mp structure.
  1020. */
  1021. mp->m_rsumlevels = nrsumlevels;
  1022. mp->m_rsumsize = nrsumsize;
  1023. error = xfs_trans_commit(tp);
  1024. if (error)
  1025. break;
  1026. }
  1027. /*
  1028. * Free the fake mp structure.
  1029. */
  1030. kmem_free(nmp);
  1031. return error;
  1032. }
  1033. /*
  1034. * Allocate an extent in the realtime subvolume, with the usual allocation
  1035. * parameters. The length units are all in realtime extents, as is the
  1036. * result block number.
  1037. */
  1038. int /* error */
  1039. xfs_rtallocate_extent(
  1040. xfs_trans_t *tp, /* transaction pointer */
  1041. xfs_rtblock_t bno, /* starting block number to allocate */
  1042. xfs_extlen_t minlen, /* minimum length to allocate */
  1043. xfs_extlen_t maxlen, /* maximum length to allocate */
  1044. xfs_extlen_t *len, /* out: actual length allocated */
  1045. int wasdel, /* was a delayed allocation extent */
  1046. xfs_extlen_t prod, /* extent product factor */
  1047. xfs_rtblock_t *rtblock) /* out: start block allocated */
  1048. {
  1049. xfs_mount_t *mp = tp->t_mountp;
  1050. int error; /* error value */
  1051. xfs_rtblock_t r; /* result allocated block */
  1052. xfs_fsblock_t sb; /* summary file block number */
  1053. xfs_buf_t *sumbp; /* summary file block buffer */
  1054. ASSERT(xfs_isilocked(mp->m_rbmip, XFS_ILOCK_EXCL));
  1055. ASSERT(minlen > 0 && minlen <= maxlen);
  1056. /*
  1057. * If prod is set then figure out what to do to minlen and maxlen.
  1058. */
  1059. if (prod > 1) {
  1060. xfs_extlen_t i;
  1061. if ((i = maxlen % prod))
  1062. maxlen -= i;
  1063. if ((i = minlen % prod))
  1064. minlen += prod - i;
  1065. if (maxlen < minlen) {
  1066. *rtblock = NULLRTBLOCK;
  1067. return 0;
  1068. }
  1069. }
  1070. retry:
  1071. sumbp = NULL;
  1072. if (bno == 0) {
  1073. error = xfs_rtallocate_extent_size(mp, tp, minlen, maxlen, len,
  1074. &sumbp, &sb, prod, &r);
  1075. } else {
  1076. error = xfs_rtallocate_extent_near(mp, tp, bno, minlen, maxlen,
  1077. len, &sumbp, &sb, prod, &r);
  1078. }
  1079. if (error)
  1080. return error;
  1081. /*
  1082. * If it worked, update the superblock.
  1083. */
  1084. if (r != NULLRTBLOCK) {
  1085. long slen = (long)*len;
  1086. ASSERT(*len >= minlen && *len <= maxlen);
  1087. if (wasdel)
  1088. xfs_trans_mod_sb(tp, XFS_TRANS_SB_RES_FREXTENTS, -slen);
  1089. else
  1090. xfs_trans_mod_sb(tp, XFS_TRANS_SB_FREXTENTS, -slen);
  1091. } else if (prod > 1) {
  1092. prod = 1;
  1093. goto retry;
  1094. }
  1095. *rtblock = r;
  1096. return 0;
  1097. }
  1098. /*
  1099. * Initialize realtime fields in the mount structure.
  1100. */
  1101. int /* error */
  1102. xfs_rtmount_init(
  1103. struct xfs_mount *mp) /* file system mount structure */
  1104. {
  1105. struct xfs_buf *bp; /* buffer for last block of subvolume */
  1106. struct xfs_sb *sbp; /* filesystem superblock copy in mount */
  1107. xfs_daddr_t d; /* address of last block of subvolume */
  1108. int error;
  1109. sbp = &mp->m_sb;
  1110. if (sbp->sb_rblocks == 0)
  1111. return 0;
  1112. if (mp->m_rtdev_targp == NULL) {
  1113. xfs_warn(mp,
  1114. "Filesystem has a realtime volume, use rtdev=device option");
  1115. return -ENODEV;
  1116. }
  1117. mp->m_rsumlevels = sbp->sb_rextslog + 1;
  1118. mp->m_rsumsize =
  1119. (uint)sizeof(xfs_suminfo_t) * mp->m_rsumlevels *
  1120. sbp->sb_rbmblocks;
  1121. mp->m_rsumsize = roundup(mp->m_rsumsize, sbp->sb_blocksize);
  1122. mp->m_rbmip = mp->m_rsumip = NULL;
  1123. /*
  1124. * Check that the realtime section is an ok size.
  1125. */
  1126. d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_rblocks);
  1127. if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_rblocks) {
  1128. xfs_warn(mp, "realtime mount -- %llu != %llu",
  1129. (unsigned long long) XFS_BB_TO_FSB(mp, d),
  1130. (unsigned long long) mp->m_sb.sb_rblocks);
  1131. return -EFBIG;
  1132. }
  1133. error = xfs_buf_read_uncached(mp->m_rtdev_targp,
  1134. d - XFS_FSB_TO_BB(mp, 1),
  1135. XFS_FSB_TO_BB(mp, 1), 0, &bp, NULL);
  1136. if (error) {
  1137. xfs_warn(mp, "realtime device size check failed");
  1138. return error;
  1139. }
  1140. xfs_buf_relse(bp);
  1141. return 0;
  1142. }
  1143. /*
  1144. * Get the bitmap and summary inodes into the mount structure
  1145. * at mount time.
  1146. */
  1147. int /* error */
  1148. xfs_rtmount_inodes(
  1149. xfs_mount_t *mp) /* file system mount structure */
  1150. {
  1151. int error; /* error return value */
  1152. xfs_sb_t *sbp;
  1153. sbp = &mp->m_sb;
  1154. error = xfs_iget(mp, NULL, sbp->sb_rbmino, 0, 0, &mp->m_rbmip);
  1155. if (error)
  1156. return error;
  1157. ASSERT(mp->m_rbmip != NULL);
  1158. error = xfs_iget(mp, NULL, sbp->sb_rsumino, 0, 0, &mp->m_rsumip);
  1159. if (error) {
  1160. xfs_irele(mp->m_rbmip);
  1161. return error;
  1162. }
  1163. ASSERT(mp->m_rsumip != NULL);
  1164. return 0;
  1165. }
  1166. void
  1167. xfs_rtunmount_inodes(
  1168. struct xfs_mount *mp)
  1169. {
  1170. if (mp->m_rbmip)
  1171. xfs_irele(mp->m_rbmip);
  1172. if (mp->m_rsumip)
  1173. xfs_irele(mp->m_rsumip);
  1174. }
  1175. /*
  1176. * Pick an extent for allocation at the start of a new realtime file.
  1177. * Use the sequence number stored in the atime field of the bitmap inode.
  1178. * Translate this to a fraction of the rtextents, and return the product
  1179. * of rtextents and the fraction.
  1180. * The fraction sequence is 0, 1/2, 1/4, 3/4, 1/8, ..., 7/8, 1/16, ...
  1181. */
  1182. int /* error */
  1183. xfs_rtpick_extent(
  1184. xfs_mount_t *mp, /* file system mount point */
  1185. xfs_trans_t *tp, /* transaction pointer */
  1186. xfs_extlen_t len, /* allocation length (rtextents) */
  1187. xfs_rtblock_t *pick) /* result rt extent */
  1188. {
  1189. xfs_rtblock_t b; /* result block */
  1190. int log2; /* log of sequence number */
  1191. uint64_t resid; /* residual after log removed */
  1192. uint64_t seq; /* sequence number of file creation */
  1193. uint64_t *seqp; /* pointer to seqno in inode */
  1194. ASSERT(xfs_isilocked(mp->m_rbmip, XFS_ILOCK_EXCL));
  1195. seqp = (uint64_t *)&VFS_I(mp->m_rbmip)->i_atime;
  1196. if (!(mp->m_rbmip->i_d.di_flags & XFS_DIFLAG_NEWRTBM)) {
  1197. mp->m_rbmip->i_d.di_flags |= XFS_DIFLAG_NEWRTBM;
  1198. *seqp = 0;
  1199. }
  1200. seq = *seqp;
  1201. if ((log2 = xfs_highbit64(seq)) == -1)
  1202. b = 0;
  1203. else {
  1204. resid = seq - (1ULL << log2);
  1205. b = (mp->m_sb.sb_rextents * ((resid << 1) + 1ULL)) >>
  1206. (log2 + 1);
  1207. if (b >= mp->m_sb.sb_rextents)
  1208. div64_u64_rem(b, mp->m_sb.sb_rextents, &b);
  1209. if (b + len > mp->m_sb.sb_rextents)
  1210. b = mp->m_sb.sb_rextents - len;
  1211. }
  1212. *seqp = seq + 1;
  1213. xfs_trans_log_inode(tp, mp->m_rbmip, XFS_ILOG_CORE);
  1214. *pick = b;
  1215. return 0;
  1216. }