rgrp.c 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
  4. *
  5. * This copyrighted material is made available to anyone wishing to use,
  6. * modify, copy, or redistribute it subject to the terms and conditions
  7. * of the GNU General Public License version 2.
  8. */
  9. #include <linux/slab.h>
  10. #include <linux/spinlock.h>
  11. #include <linux/completion.h>
  12. #include <linux/buffer_head.h>
  13. #include <linux/fs.h>
  14. #include <linux/gfs2_ondisk.h>
  15. #include <linux/prefetch.h>
  16. #include <linux/blkdev.h>
  17. #include <linux/rbtree.h>
  18. #include "gfs2.h"
  19. #include "incore.h"
  20. #include "glock.h"
  21. #include "glops.h"
  22. #include "lops.h"
  23. #include "meta_io.h"
  24. #include "quota.h"
  25. #include "rgrp.h"
  26. #include "super.h"
  27. #include "trans.h"
  28. #include "util.h"
  29. #include "log.h"
  30. #include "inode.h"
  31. #include "trace_gfs2.h"
  32. #define BFITNOENT ((u32)~0)
  33. #define NO_BLOCK ((u64)~0)
  34. #if BITS_PER_LONG == 32
  35. #define LBITMASK (0x55555555UL)
  36. #define LBITSKIP55 (0x55555555UL)
  37. #define LBITSKIP00 (0x00000000UL)
  38. #else
  39. #define LBITMASK (0x5555555555555555UL)
  40. #define LBITSKIP55 (0x5555555555555555UL)
  41. #define LBITSKIP00 (0x0000000000000000UL)
  42. #endif
  43. /*
  44. * These routines are used by the resource group routines (rgrp.c)
  45. * to keep track of block allocation. Each block is represented by two
  46. * bits. So, each byte represents GFS2_NBBY (i.e. 4) blocks.
  47. *
  48. * 0 = Free
  49. * 1 = Used (not metadata)
  50. * 2 = Unlinked (still in use) inode
  51. * 3 = Used (metadata)
  52. */
  53. static const char valid_change[16] = {
  54. /* current */
  55. /* n */ 0, 1, 1, 1,
  56. /* e */ 1, 0, 0, 0,
  57. /* w */ 0, 0, 0, 1,
  58. 1, 0, 0, 0
  59. };
  60. static int gfs2_rbm_find(struct gfs2_rbm *rbm, u8 state, u32 minext,
  61. const struct gfs2_inode *ip, bool nowrap);
  62. /**
  63. * gfs2_setbit - Set a bit in the bitmaps
  64. * @rbm: The position of the bit to set
  65. * @do_clone: Also set the clone bitmap, if it exists
  66. * @new_state: the new state of the block
  67. *
  68. */
  69. static inline void gfs2_setbit(const struct gfs2_rbm *rbm, bool do_clone,
  70. unsigned char new_state)
  71. {
  72. unsigned char *byte1, *byte2, *end, cur_state;
  73. unsigned int buflen = rbm->bi->bi_len;
  74. const unsigned int bit = (rbm->offset % GFS2_NBBY) * GFS2_BIT_SIZE;
  75. byte1 = rbm->bi->bi_bh->b_data + rbm->bi->bi_offset + (rbm->offset / GFS2_NBBY);
  76. end = rbm->bi->bi_bh->b_data + rbm->bi->bi_offset + buflen;
  77. BUG_ON(byte1 >= end);
  78. cur_state = (*byte1 >> bit) & GFS2_BIT_MASK;
  79. if (unlikely(!valid_change[new_state * 4 + cur_state])) {
  80. printk(KERN_WARNING "GFS2: buf_blk = 0x%x old_state=%d, "
  81. "new_state=%d\n", rbm->offset, cur_state, new_state);
  82. printk(KERN_WARNING "GFS2: rgrp=0x%llx bi_start=0x%x\n",
  83. (unsigned long long)rbm->rgd->rd_addr,
  84. rbm->bi->bi_start);
  85. printk(KERN_WARNING "GFS2: bi_offset=0x%x bi_len=0x%x\n",
  86. rbm->bi->bi_offset, rbm->bi->bi_len);
  87. dump_stack();
  88. gfs2_consist_rgrpd(rbm->rgd);
  89. return;
  90. }
  91. *byte1 ^= (cur_state ^ new_state) << bit;
  92. if (do_clone && rbm->bi->bi_clone) {
  93. byte2 = rbm->bi->bi_clone + rbm->bi->bi_offset + (rbm->offset / GFS2_NBBY);
  94. cur_state = (*byte2 >> bit) & GFS2_BIT_MASK;
  95. *byte2 ^= (cur_state ^ new_state) << bit;
  96. }
  97. }
  98. /**
  99. * gfs2_testbit - test a bit in the bitmaps
  100. * @rbm: The bit to test
  101. *
  102. * Returns: The two bit block state of the requested bit
  103. */
  104. static inline u8 gfs2_testbit(const struct gfs2_rbm *rbm)
  105. {
  106. const u8 *buffer = rbm->bi->bi_bh->b_data + rbm->bi->bi_offset;
  107. const u8 *byte;
  108. unsigned int bit;
  109. byte = buffer + (rbm->offset / GFS2_NBBY);
  110. bit = (rbm->offset % GFS2_NBBY) * GFS2_BIT_SIZE;
  111. return (*byte >> bit) & GFS2_BIT_MASK;
  112. }
  113. /**
  114. * gfs2_bit_search
  115. * @ptr: Pointer to bitmap data
  116. * @mask: Mask to use (normally 0x55555.... but adjusted for search start)
  117. * @state: The state we are searching for
  118. *
  119. * We xor the bitmap data with a patter which is the bitwise opposite
  120. * of what we are looking for, this gives rise to a pattern of ones
  121. * wherever there is a match. Since we have two bits per entry, we
  122. * take this pattern, shift it down by one place and then and it with
  123. * the original. All the even bit positions (0,2,4, etc) then represent
  124. * successful matches, so we mask with 0x55555..... to remove the unwanted
  125. * odd bit positions.
  126. *
  127. * This allows searching of a whole u64 at once (32 blocks) with a
  128. * single test (on 64 bit arches).
  129. */
  130. static inline u64 gfs2_bit_search(const __le64 *ptr, u64 mask, u8 state)
  131. {
  132. u64 tmp;
  133. static const u64 search[] = {
  134. [0] = 0xffffffffffffffffULL,
  135. [1] = 0xaaaaaaaaaaaaaaaaULL,
  136. [2] = 0x5555555555555555ULL,
  137. [3] = 0x0000000000000000ULL,
  138. };
  139. tmp = le64_to_cpu(*ptr) ^ search[state];
  140. tmp &= (tmp >> 1);
  141. tmp &= mask;
  142. return tmp;
  143. }
  144. /**
  145. * rs_cmp - multi-block reservation range compare
  146. * @blk: absolute file system block number of the new reservation
  147. * @len: number of blocks in the new reservation
  148. * @rs: existing reservation to compare against
  149. *
  150. * returns: 1 if the block range is beyond the reach of the reservation
  151. * -1 if the block range is before the start of the reservation
  152. * 0 if the block range overlaps with the reservation
  153. */
  154. static inline int rs_cmp(u64 blk, u32 len, struct gfs2_blkreserv *rs)
  155. {
  156. u64 startblk = gfs2_rbm_to_block(&rs->rs_rbm);
  157. if (blk >= startblk + rs->rs_free)
  158. return 1;
  159. if (blk + len - 1 < startblk)
  160. return -1;
  161. return 0;
  162. }
  163. /**
  164. * gfs2_bitfit - Search an rgrp's bitmap buffer to find a bit-pair representing
  165. * a block in a given allocation state.
  166. * @buf: the buffer that holds the bitmaps
  167. * @len: the length (in bytes) of the buffer
  168. * @goal: start search at this block's bit-pair (within @buffer)
  169. * @state: GFS2_BLKST_XXX the state of the block we're looking for.
  170. *
  171. * Scope of @goal and returned block number is only within this bitmap buffer,
  172. * not entire rgrp or filesystem. @buffer will be offset from the actual
  173. * beginning of a bitmap block buffer, skipping any header structures, but
  174. * headers are always a multiple of 64 bits long so that the buffer is
  175. * always aligned to a 64 bit boundary.
  176. *
  177. * The size of the buffer is in bytes, but is it assumed that it is
  178. * always ok to read a complete multiple of 64 bits at the end
  179. * of the block in case the end is no aligned to a natural boundary.
  180. *
  181. * Return: the block number (bitmap buffer scope) that was found
  182. */
  183. static u32 gfs2_bitfit(const u8 *buf, const unsigned int len,
  184. u32 goal, u8 state)
  185. {
  186. u32 spoint = (goal << 1) & ((8*sizeof(u64)) - 1);
  187. const __le64 *ptr = ((__le64 *)buf) + (goal >> 5);
  188. const __le64 *end = (__le64 *)(buf + ALIGN(len, sizeof(u64)));
  189. u64 tmp;
  190. u64 mask = 0x5555555555555555ULL;
  191. u32 bit;
  192. /* Mask off bits we don't care about at the start of the search */
  193. mask <<= spoint;
  194. tmp = gfs2_bit_search(ptr, mask, state);
  195. ptr++;
  196. while(tmp == 0 && ptr < end) {
  197. tmp = gfs2_bit_search(ptr, 0x5555555555555555ULL, state);
  198. ptr++;
  199. }
  200. /* Mask off any bits which are more than len bytes from the start */
  201. if (ptr == end && (len & (sizeof(u64) - 1)))
  202. tmp &= (((u64)~0) >> (64 - 8*(len & (sizeof(u64) - 1))));
  203. /* Didn't find anything, so return */
  204. if (tmp == 0)
  205. return BFITNOENT;
  206. ptr--;
  207. bit = __ffs64(tmp);
  208. bit /= 2; /* two bits per entry in the bitmap */
  209. return (((const unsigned char *)ptr - buf) * GFS2_NBBY) + bit;
  210. }
  211. /**
  212. * gfs2_rbm_from_block - Set the rbm based upon rgd and block number
  213. * @rbm: The rbm with rgd already set correctly
  214. * @block: The block number (filesystem relative)
  215. *
  216. * This sets the bi and offset members of an rbm based on a
  217. * resource group and a filesystem relative block number. The
  218. * resource group must be set in the rbm on entry, the bi and
  219. * offset members will be set by this function.
  220. *
  221. * Returns: 0 on success, or an error code
  222. */
  223. static int gfs2_rbm_from_block(struct gfs2_rbm *rbm, u64 block)
  224. {
  225. u64 rblock = block - rbm->rgd->rd_data0;
  226. u32 x;
  227. if (WARN_ON_ONCE(rblock > UINT_MAX))
  228. return -EINVAL;
  229. if (block >= rbm->rgd->rd_data0 + rbm->rgd->rd_data)
  230. return -E2BIG;
  231. rbm->bi = rbm->rgd->rd_bits;
  232. rbm->offset = (u32)(rblock);
  233. /* Check if the block is within the first block */
  234. if (rbm->offset < (rbm->bi->bi_start + rbm->bi->bi_len) * GFS2_NBBY)
  235. return 0;
  236. /* Adjust for the size diff between gfs2_meta_header and gfs2_rgrp */
  237. rbm->offset += (sizeof(struct gfs2_rgrp) -
  238. sizeof(struct gfs2_meta_header)) * GFS2_NBBY;
  239. x = rbm->offset / rbm->rgd->rd_sbd->sd_blocks_per_bitmap;
  240. rbm->offset -= x * rbm->rgd->rd_sbd->sd_blocks_per_bitmap;
  241. rbm->bi += x;
  242. return 0;
  243. }
  244. /**
  245. * gfs2_unaligned_extlen - Look for free blocks which are not byte aligned
  246. * @rbm: Position to search (value/result)
  247. * @n_unaligned: Number of unaligned blocks to check
  248. * @len: Decremented for each block found (terminate on zero)
  249. *
  250. * Returns: true if a non-free block is encountered
  251. */
  252. static bool gfs2_unaligned_extlen(struct gfs2_rbm *rbm, u32 n_unaligned, u32 *len)
  253. {
  254. u64 block;
  255. u32 n;
  256. u8 res;
  257. for (n = 0; n < n_unaligned; n++) {
  258. res = gfs2_testbit(rbm);
  259. if (res != GFS2_BLKST_FREE)
  260. return true;
  261. (*len)--;
  262. if (*len == 0)
  263. return true;
  264. block = gfs2_rbm_to_block(rbm);
  265. if (gfs2_rbm_from_block(rbm, block + 1))
  266. return true;
  267. }
  268. return false;
  269. }
  270. /**
  271. * gfs2_free_extlen - Return extent length of free blocks
  272. * @rbm: Starting position
  273. * @len: Max length to check
  274. *
  275. * Starting at the block specified by the rbm, see how many free blocks
  276. * there are, not reading more than len blocks ahead. This can be done
  277. * using memchr_inv when the blocks are byte aligned, but has to be done
  278. * on a block by block basis in case of unaligned blocks. Also this
  279. * function can cope with bitmap boundaries (although it must stop on
  280. * a resource group boundary)
  281. *
  282. * Returns: Number of free blocks in the extent
  283. */
  284. static u32 gfs2_free_extlen(const struct gfs2_rbm *rrbm, u32 len)
  285. {
  286. struct gfs2_rbm rbm = *rrbm;
  287. u32 n_unaligned = rbm.offset & 3;
  288. u32 size = len;
  289. u32 bytes;
  290. u32 chunk_size;
  291. u8 *ptr, *start, *end;
  292. u64 block;
  293. if (n_unaligned &&
  294. gfs2_unaligned_extlen(&rbm, 4 - n_unaligned, &len))
  295. goto out;
  296. n_unaligned = len & 3;
  297. /* Start is now byte aligned */
  298. while (len > 3) {
  299. start = rbm.bi->bi_bh->b_data;
  300. if (rbm.bi->bi_clone)
  301. start = rbm.bi->bi_clone;
  302. end = start + rbm.bi->bi_bh->b_size;
  303. start += rbm.bi->bi_offset;
  304. BUG_ON(rbm.offset & 3);
  305. start += (rbm.offset / GFS2_NBBY);
  306. bytes = min_t(u32, len / GFS2_NBBY, (end - start));
  307. ptr = memchr_inv(start, 0, bytes);
  308. chunk_size = ((ptr == NULL) ? bytes : (ptr - start));
  309. chunk_size *= GFS2_NBBY;
  310. BUG_ON(len < chunk_size);
  311. len -= chunk_size;
  312. block = gfs2_rbm_to_block(&rbm);
  313. gfs2_rbm_from_block(&rbm, block + chunk_size);
  314. n_unaligned = 3;
  315. if (ptr)
  316. break;
  317. n_unaligned = len & 3;
  318. }
  319. /* Deal with any bits left over at the end */
  320. if (n_unaligned)
  321. gfs2_unaligned_extlen(&rbm, n_unaligned, &len);
  322. out:
  323. return size - len;
  324. }
  325. /**
  326. * gfs2_bitcount - count the number of bits in a certain state
  327. * @rgd: the resource group descriptor
  328. * @buffer: the buffer that holds the bitmaps
  329. * @buflen: the length (in bytes) of the buffer
  330. * @state: the state of the block we're looking for
  331. *
  332. * Returns: The number of bits
  333. */
  334. static u32 gfs2_bitcount(struct gfs2_rgrpd *rgd, const u8 *buffer,
  335. unsigned int buflen, u8 state)
  336. {
  337. const u8 *byte = buffer;
  338. const u8 *end = buffer + buflen;
  339. const u8 state1 = state << 2;
  340. const u8 state2 = state << 4;
  341. const u8 state3 = state << 6;
  342. u32 count = 0;
  343. for (; byte < end; byte++) {
  344. if (((*byte) & 0x03) == state)
  345. count++;
  346. if (((*byte) & 0x0C) == state1)
  347. count++;
  348. if (((*byte) & 0x30) == state2)
  349. count++;
  350. if (((*byte) & 0xC0) == state3)
  351. count++;
  352. }
  353. return count;
  354. }
  355. /**
  356. * gfs2_rgrp_verify - Verify that a resource group is consistent
  357. * @rgd: the rgrp
  358. *
  359. */
  360. void gfs2_rgrp_verify(struct gfs2_rgrpd *rgd)
  361. {
  362. struct gfs2_sbd *sdp = rgd->rd_sbd;
  363. struct gfs2_bitmap *bi = NULL;
  364. u32 length = rgd->rd_length;
  365. u32 count[4], tmp;
  366. int buf, x;
  367. memset(count, 0, 4 * sizeof(u32));
  368. /* Count # blocks in each of 4 possible allocation states */
  369. for (buf = 0; buf < length; buf++) {
  370. bi = rgd->rd_bits + buf;
  371. for (x = 0; x < 4; x++)
  372. count[x] += gfs2_bitcount(rgd,
  373. bi->bi_bh->b_data +
  374. bi->bi_offset,
  375. bi->bi_len, x);
  376. }
  377. if (count[0] != rgd->rd_free) {
  378. if (gfs2_consist_rgrpd(rgd))
  379. fs_err(sdp, "free data mismatch: %u != %u\n",
  380. count[0], rgd->rd_free);
  381. return;
  382. }
  383. tmp = rgd->rd_data - rgd->rd_free - rgd->rd_dinodes;
  384. if (count[1] != tmp) {
  385. if (gfs2_consist_rgrpd(rgd))
  386. fs_err(sdp, "used data mismatch: %u != %u\n",
  387. count[1], tmp);
  388. return;
  389. }
  390. if (count[2] + count[3] != rgd->rd_dinodes) {
  391. if (gfs2_consist_rgrpd(rgd))
  392. fs_err(sdp, "used metadata mismatch: %u != %u\n",
  393. count[2] + count[3], rgd->rd_dinodes);
  394. return;
  395. }
  396. }
  397. static inline int rgrp_contains_block(struct gfs2_rgrpd *rgd, u64 block)
  398. {
  399. u64 first = rgd->rd_data0;
  400. u64 last = first + rgd->rd_data;
  401. return first <= block && block < last;
  402. }
  403. /**
  404. * gfs2_blk2rgrpd - Find resource group for a given data/meta block number
  405. * @sdp: The GFS2 superblock
  406. * @blk: The data block number
  407. * @exact: True if this needs to be an exact match
  408. *
  409. * Returns: The resource group, or NULL if not found
  410. */
  411. struct gfs2_rgrpd *gfs2_blk2rgrpd(struct gfs2_sbd *sdp, u64 blk, bool exact)
  412. {
  413. struct rb_node *n, *next;
  414. struct gfs2_rgrpd *cur;
  415. spin_lock(&sdp->sd_rindex_spin);
  416. n = sdp->sd_rindex_tree.rb_node;
  417. while (n) {
  418. cur = rb_entry(n, struct gfs2_rgrpd, rd_node);
  419. next = NULL;
  420. if (blk < cur->rd_addr)
  421. next = n->rb_left;
  422. else if (blk >= cur->rd_data0 + cur->rd_data)
  423. next = n->rb_right;
  424. if (next == NULL) {
  425. spin_unlock(&sdp->sd_rindex_spin);
  426. if (exact) {
  427. if (blk < cur->rd_addr)
  428. return NULL;
  429. if (blk >= cur->rd_data0 + cur->rd_data)
  430. return NULL;
  431. }
  432. return cur;
  433. }
  434. n = next;
  435. }
  436. spin_unlock(&sdp->sd_rindex_spin);
  437. return NULL;
  438. }
  439. /**
  440. * gfs2_rgrpd_get_first - get the first Resource Group in the filesystem
  441. * @sdp: The GFS2 superblock
  442. *
  443. * Returns: The first rgrp in the filesystem
  444. */
  445. struct gfs2_rgrpd *gfs2_rgrpd_get_first(struct gfs2_sbd *sdp)
  446. {
  447. const struct rb_node *n;
  448. struct gfs2_rgrpd *rgd;
  449. spin_lock(&sdp->sd_rindex_spin);
  450. n = rb_first(&sdp->sd_rindex_tree);
  451. rgd = rb_entry(n, struct gfs2_rgrpd, rd_node);
  452. spin_unlock(&sdp->sd_rindex_spin);
  453. return rgd;
  454. }
  455. /**
  456. * gfs2_rgrpd_get_next - get the next RG
  457. * @rgd: the resource group descriptor
  458. *
  459. * Returns: The next rgrp
  460. */
  461. struct gfs2_rgrpd *gfs2_rgrpd_get_next(struct gfs2_rgrpd *rgd)
  462. {
  463. struct gfs2_sbd *sdp = rgd->rd_sbd;
  464. const struct rb_node *n;
  465. spin_lock(&sdp->sd_rindex_spin);
  466. n = rb_next(&rgd->rd_node);
  467. if (n == NULL)
  468. n = rb_first(&sdp->sd_rindex_tree);
  469. if (unlikely(&rgd->rd_node == n)) {
  470. spin_unlock(&sdp->sd_rindex_spin);
  471. return NULL;
  472. }
  473. rgd = rb_entry(n, struct gfs2_rgrpd, rd_node);
  474. spin_unlock(&sdp->sd_rindex_spin);
  475. return rgd;
  476. }
  477. void gfs2_free_clones(struct gfs2_rgrpd *rgd)
  478. {
  479. int x;
  480. for (x = 0; x < rgd->rd_length; x++) {
  481. struct gfs2_bitmap *bi = rgd->rd_bits + x;
  482. kfree(bi->bi_clone);
  483. bi->bi_clone = NULL;
  484. }
  485. }
  486. /**
  487. * gfs2_rs_alloc - make sure we have a reservation assigned to the inode
  488. * @ip: the inode for this reservation
  489. */
  490. int gfs2_rs_alloc(struct gfs2_inode *ip)
  491. {
  492. struct gfs2_blkreserv *res;
  493. if (ip->i_res)
  494. return 0;
  495. res = kmem_cache_zalloc(gfs2_rsrv_cachep, GFP_NOFS);
  496. if (!res)
  497. return -ENOMEM;
  498. RB_CLEAR_NODE(&res->rs_node);
  499. down_write(&ip->i_rw_mutex);
  500. if (ip->i_res)
  501. kmem_cache_free(gfs2_rsrv_cachep, res);
  502. else
  503. ip->i_res = res;
  504. up_write(&ip->i_rw_mutex);
  505. return 0;
  506. }
  507. static void dump_rs(struct seq_file *seq, const struct gfs2_blkreserv *rs)
  508. {
  509. gfs2_print_dbg(seq, " B: n:%llu s:%llu b:%u f:%u\n",
  510. (unsigned long long)rs->rs_inum,
  511. (unsigned long long)gfs2_rbm_to_block(&rs->rs_rbm),
  512. rs->rs_rbm.offset, rs->rs_free);
  513. }
  514. /**
  515. * __rs_deltree - remove a multi-block reservation from the rgd tree
  516. * @rs: The reservation to remove
  517. *
  518. */
  519. static void __rs_deltree(struct gfs2_inode *ip, struct gfs2_blkreserv *rs)
  520. {
  521. struct gfs2_rgrpd *rgd;
  522. if (!gfs2_rs_active(rs))
  523. return;
  524. rgd = rs->rs_rbm.rgd;
  525. trace_gfs2_rs(rs, TRACE_RS_TREEDEL);
  526. rb_erase(&rs->rs_node, &rgd->rd_rstree);
  527. RB_CLEAR_NODE(&rs->rs_node);
  528. if (rs->rs_free) {
  529. /* return reserved blocks to the rgrp and the ip */
  530. BUG_ON(rs->rs_rbm.rgd->rd_reserved < rs->rs_free);
  531. rs->rs_rbm.rgd->rd_reserved -= rs->rs_free;
  532. rs->rs_free = 0;
  533. clear_bit(GBF_FULL, &rs->rs_rbm.bi->bi_flags);
  534. smp_mb__after_clear_bit();
  535. }
  536. }
  537. /**
  538. * gfs2_rs_deltree - remove a multi-block reservation from the rgd tree
  539. * @rs: The reservation to remove
  540. *
  541. */
  542. void gfs2_rs_deltree(struct gfs2_inode *ip, struct gfs2_blkreserv *rs)
  543. {
  544. struct gfs2_rgrpd *rgd;
  545. rgd = rs->rs_rbm.rgd;
  546. if (rgd) {
  547. spin_lock(&rgd->rd_rsspin);
  548. __rs_deltree(ip, rs);
  549. spin_unlock(&rgd->rd_rsspin);
  550. }
  551. }
  552. /**
  553. * gfs2_rs_delete - delete a multi-block reservation
  554. * @ip: The inode for this reservation
  555. *
  556. */
  557. void gfs2_rs_delete(struct gfs2_inode *ip)
  558. {
  559. down_write(&ip->i_rw_mutex);
  560. if (ip->i_res) {
  561. gfs2_rs_deltree(ip, ip->i_res);
  562. BUG_ON(ip->i_res->rs_free);
  563. kmem_cache_free(gfs2_rsrv_cachep, ip->i_res);
  564. ip->i_res = NULL;
  565. }
  566. up_write(&ip->i_rw_mutex);
  567. }
  568. /**
  569. * return_all_reservations - return all reserved blocks back to the rgrp.
  570. * @rgd: the rgrp that needs its space back
  571. *
  572. * We previously reserved a bunch of blocks for allocation. Now we need to
  573. * give them back. This leave the reservation structures in tact, but removes
  574. * all of their corresponding "no-fly zones".
  575. */
  576. static void return_all_reservations(struct gfs2_rgrpd *rgd)
  577. {
  578. struct rb_node *n;
  579. struct gfs2_blkreserv *rs;
  580. spin_lock(&rgd->rd_rsspin);
  581. while ((n = rb_first(&rgd->rd_rstree))) {
  582. rs = rb_entry(n, struct gfs2_blkreserv, rs_node);
  583. __rs_deltree(NULL, rs);
  584. }
  585. spin_unlock(&rgd->rd_rsspin);
  586. }
  587. void gfs2_clear_rgrpd(struct gfs2_sbd *sdp)
  588. {
  589. struct rb_node *n;
  590. struct gfs2_rgrpd *rgd;
  591. struct gfs2_glock *gl;
  592. while ((n = rb_first(&sdp->sd_rindex_tree))) {
  593. rgd = rb_entry(n, struct gfs2_rgrpd, rd_node);
  594. gl = rgd->rd_gl;
  595. rb_erase(n, &sdp->sd_rindex_tree);
  596. if (gl) {
  597. spin_lock(&gl->gl_spin);
  598. gl->gl_object = NULL;
  599. spin_unlock(&gl->gl_spin);
  600. gfs2_glock_add_to_lru(gl);
  601. gfs2_glock_put(gl);
  602. }
  603. gfs2_free_clones(rgd);
  604. kfree(rgd->rd_bits);
  605. return_all_reservations(rgd);
  606. kmem_cache_free(gfs2_rgrpd_cachep, rgd);
  607. }
  608. }
  609. static void gfs2_rindex_print(const struct gfs2_rgrpd *rgd)
  610. {
  611. printk(KERN_INFO " ri_addr = %llu\n", (unsigned long long)rgd->rd_addr);
  612. printk(KERN_INFO " ri_length = %u\n", rgd->rd_length);
  613. printk(KERN_INFO " ri_data0 = %llu\n", (unsigned long long)rgd->rd_data0);
  614. printk(KERN_INFO " ri_data = %u\n", rgd->rd_data);
  615. printk(KERN_INFO " ri_bitbytes = %u\n", rgd->rd_bitbytes);
  616. }
  617. /**
  618. * gfs2_compute_bitstructs - Compute the bitmap sizes
  619. * @rgd: The resource group descriptor
  620. *
  621. * Calculates bitmap descriptors, one for each block that contains bitmap data
  622. *
  623. * Returns: errno
  624. */
  625. static int compute_bitstructs(struct gfs2_rgrpd *rgd)
  626. {
  627. struct gfs2_sbd *sdp = rgd->rd_sbd;
  628. struct gfs2_bitmap *bi;
  629. u32 length = rgd->rd_length; /* # blocks in hdr & bitmap */
  630. u32 bytes_left, bytes;
  631. int x;
  632. if (!length)
  633. return -EINVAL;
  634. rgd->rd_bits = kcalloc(length, sizeof(struct gfs2_bitmap), GFP_NOFS);
  635. if (!rgd->rd_bits)
  636. return -ENOMEM;
  637. bytes_left = rgd->rd_bitbytes;
  638. for (x = 0; x < length; x++) {
  639. bi = rgd->rd_bits + x;
  640. bi->bi_flags = 0;
  641. /* small rgrp; bitmap stored completely in header block */
  642. if (length == 1) {
  643. bytes = bytes_left;
  644. bi->bi_offset = sizeof(struct gfs2_rgrp);
  645. bi->bi_start = 0;
  646. bi->bi_len = bytes;
  647. /* header block */
  648. } else if (x == 0) {
  649. bytes = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_rgrp);
  650. bi->bi_offset = sizeof(struct gfs2_rgrp);
  651. bi->bi_start = 0;
  652. bi->bi_len = bytes;
  653. /* last block */
  654. } else if (x + 1 == length) {
  655. bytes = bytes_left;
  656. bi->bi_offset = sizeof(struct gfs2_meta_header);
  657. bi->bi_start = rgd->rd_bitbytes - bytes_left;
  658. bi->bi_len = bytes;
  659. /* other blocks */
  660. } else {
  661. bytes = sdp->sd_sb.sb_bsize -
  662. sizeof(struct gfs2_meta_header);
  663. bi->bi_offset = sizeof(struct gfs2_meta_header);
  664. bi->bi_start = rgd->rd_bitbytes - bytes_left;
  665. bi->bi_len = bytes;
  666. }
  667. bytes_left -= bytes;
  668. }
  669. if (bytes_left) {
  670. gfs2_consist_rgrpd(rgd);
  671. return -EIO;
  672. }
  673. bi = rgd->rd_bits + (length - 1);
  674. if ((bi->bi_start + bi->bi_len) * GFS2_NBBY != rgd->rd_data) {
  675. if (gfs2_consist_rgrpd(rgd)) {
  676. gfs2_rindex_print(rgd);
  677. fs_err(sdp, "start=%u len=%u offset=%u\n",
  678. bi->bi_start, bi->bi_len, bi->bi_offset);
  679. }
  680. return -EIO;
  681. }
  682. return 0;
  683. }
  684. /**
  685. * gfs2_ri_total - Total up the file system space, according to the rindex.
  686. * @sdp: the filesystem
  687. *
  688. */
  689. u64 gfs2_ri_total(struct gfs2_sbd *sdp)
  690. {
  691. u64 total_data = 0;
  692. struct inode *inode = sdp->sd_rindex;
  693. struct gfs2_inode *ip = GFS2_I(inode);
  694. char buf[sizeof(struct gfs2_rindex)];
  695. int error, rgrps;
  696. for (rgrps = 0;; rgrps++) {
  697. loff_t pos = rgrps * sizeof(struct gfs2_rindex);
  698. if (pos + sizeof(struct gfs2_rindex) > i_size_read(inode))
  699. break;
  700. error = gfs2_internal_read(ip, buf, &pos,
  701. sizeof(struct gfs2_rindex));
  702. if (error != sizeof(struct gfs2_rindex))
  703. break;
  704. total_data += be32_to_cpu(((struct gfs2_rindex *)buf)->ri_data);
  705. }
  706. return total_data;
  707. }
  708. static int rgd_insert(struct gfs2_rgrpd *rgd)
  709. {
  710. struct gfs2_sbd *sdp = rgd->rd_sbd;
  711. struct rb_node **newn = &sdp->sd_rindex_tree.rb_node, *parent = NULL;
  712. /* Figure out where to put new node */
  713. while (*newn) {
  714. struct gfs2_rgrpd *cur = rb_entry(*newn, struct gfs2_rgrpd,
  715. rd_node);
  716. parent = *newn;
  717. if (rgd->rd_addr < cur->rd_addr)
  718. newn = &((*newn)->rb_left);
  719. else if (rgd->rd_addr > cur->rd_addr)
  720. newn = &((*newn)->rb_right);
  721. else
  722. return -EEXIST;
  723. }
  724. rb_link_node(&rgd->rd_node, parent, newn);
  725. rb_insert_color(&rgd->rd_node, &sdp->sd_rindex_tree);
  726. sdp->sd_rgrps++;
  727. return 0;
  728. }
  729. /**
  730. * read_rindex_entry - Pull in a new resource index entry from the disk
  731. * @ip: Pointer to the rindex inode
  732. *
  733. * Returns: 0 on success, > 0 on EOF, error code otherwise
  734. */
  735. static int read_rindex_entry(struct gfs2_inode *ip)
  736. {
  737. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  738. loff_t pos = sdp->sd_rgrps * sizeof(struct gfs2_rindex);
  739. struct gfs2_rindex buf;
  740. int error;
  741. struct gfs2_rgrpd *rgd;
  742. if (pos >= i_size_read(&ip->i_inode))
  743. return 1;
  744. error = gfs2_internal_read(ip, (char *)&buf, &pos,
  745. sizeof(struct gfs2_rindex));
  746. if (error != sizeof(struct gfs2_rindex))
  747. return (error == 0) ? 1 : error;
  748. rgd = kmem_cache_zalloc(gfs2_rgrpd_cachep, GFP_NOFS);
  749. error = -ENOMEM;
  750. if (!rgd)
  751. return error;
  752. rgd->rd_sbd = sdp;
  753. rgd->rd_addr = be64_to_cpu(buf.ri_addr);
  754. rgd->rd_length = be32_to_cpu(buf.ri_length);
  755. rgd->rd_data0 = be64_to_cpu(buf.ri_data0);
  756. rgd->rd_data = be32_to_cpu(buf.ri_data);
  757. rgd->rd_bitbytes = be32_to_cpu(buf.ri_bitbytes);
  758. spin_lock_init(&rgd->rd_rsspin);
  759. error = compute_bitstructs(rgd);
  760. if (error)
  761. goto fail;
  762. error = gfs2_glock_get(sdp, rgd->rd_addr,
  763. &gfs2_rgrp_glops, CREATE, &rgd->rd_gl);
  764. if (error)
  765. goto fail;
  766. rgd->rd_gl->gl_object = rgd;
  767. rgd->rd_rgl = (struct gfs2_rgrp_lvb *)rgd->rd_gl->gl_lvb;
  768. rgd->rd_flags &= ~GFS2_RDF_UPTODATE;
  769. if (rgd->rd_data > sdp->sd_max_rg_data)
  770. sdp->sd_max_rg_data = rgd->rd_data;
  771. spin_lock(&sdp->sd_rindex_spin);
  772. error = rgd_insert(rgd);
  773. spin_unlock(&sdp->sd_rindex_spin);
  774. if (!error)
  775. return 0;
  776. error = 0; /* someone else read in the rgrp; free it and ignore it */
  777. gfs2_glock_put(rgd->rd_gl);
  778. fail:
  779. kfree(rgd->rd_bits);
  780. kmem_cache_free(gfs2_rgrpd_cachep, rgd);
  781. return error;
  782. }
  783. /**
  784. * gfs2_ri_update - Pull in a new resource index from the disk
  785. * @ip: pointer to the rindex inode
  786. *
  787. * Returns: 0 on successful update, error code otherwise
  788. */
  789. static int gfs2_ri_update(struct gfs2_inode *ip)
  790. {
  791. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  792. int error;
  793. do {
  794. error = read_rindex_entry(ip);
  795. } while (error == 0);
  796. if (error < 0)
  797. return error;
  798. sdp->sd_rindex_uptodate = 1;
  799. return 0;
  800. }
  801. /**
  802. * gfs2_rindex_update - Update the rindex if required
  803. * @sdp: The GFS2 superblock
  804. *
  805. * We grab a lock on the rindex inode to make sure that it doesn't
  806. * change whilst we are performing an operation. We keep this lock
  807. * for quite long periods of time compared to other locks. This
  808. * doesn't matter, since it is shared and it is very, very rarely
  809. * accessed in the exclusive mode (i.e. only when expanding the filesystem).
  810. *
  811. * This makes sure that we're using the latest copy of the resource index
  812. * special file, which might have been updated if someone expanded the
  813. * filesystem (via gfs2_grow utility), which adds new resource groups.
  814. *
  815. * Returns: 0 on succeess, error code otherwise
  816. */
  817. int gfs2_rindex_update(struct gfs2_sbd *sdp)
  818. {
  819. struct gfs2_inode *ip = GFS2_I(sdp->sd_rindex);
  820. struct gfs2_glock *gl = ip->i_gl;
  821. struct gfs2_holder ri_gh;
  822. int error = 0;
  823. int unlock_required = 0;
  824. /* Read new copy from disk if we don't have the latest */
  825. if (!sdp->sd_rindex_uptodate) {
  826. if (!gfs2_glock_is_locked_by_me(gl)) {
  827. error = gfs2_glock_nq_init(gl, LM_ST_SHARED, 0, &ri_gh);
  828. if (error)
  829. return error;
  830. unlock_required = 1;
  831. }
  832. if (!sdp->sd_rindex_uptodate)
  833. error = gfs2_ri_update(ip);
  834. if (unlock_required)
  835. gfs2_glock_dq_uninit(&ri_gh);
  836. }
  837. return error;
  838. }
  839. static void gfs2_rgrp_in(struct gfs2_rgrpd *rgd, const void *buf)
  840. {
  841. const struct gfs2_rgrp *str = buf;
  842. u32 rg_flags;
  843. rg_flags = be32_to_cpu(str->rg_flags);
  844. rg_flags &= ~GFS2_RDF_MASK;
  845. rgd->rd_flags &= GFS2_RDF_MASK;
  846. rgd->rd_flags |= rg_flags;
  847. rgd->rd_free = be32_to_cpu(str->rg_free);
  848. rgd->rd_dinodes = be32_to_cpu(str->rg_dinodes);
  849. rgd->rd_igeneration = be64_to_cpu(str->rg_igeneration);
  850. }
  851. static void gfs2_rgrp_out(struct gfs2_rgrpd *rgd, void *buf)
  852. {
  853. struct gfs2_rgrp *str = buf;
  854. str->rg_flags = cpu_to_be32(rgd->rd_flags & ~GFS2_RDF_MASK);
  855. str->rg_free = cpu_to_be32(rgd->rd_free);
  856. str->rg_dinodes = cpu_to_be32(rgd->rd_dinodes);
  857. str->__pad = cpu_to_be32(0);
  858. str->rg_igeneration = cpu_to_be64(rgd->rd_igeneration);
  859. memset(&str->rg_reserved, 0, sizeof(str->rg_reserved));
  860. }
  861. static int gfs2_rgrp_lvb_valid(struct gfs2_rgrpd *rgd)
  862. {
  863. struct gfs2_rgrp_lvb *rgl = rgd->rd_rgl;
  864. struct gfs2_rgrp *str = (struct gfs2_rgrp *)rgd->rd_bits[0].bi_bh->b_data;
  865. if (rgl->rl_flags != str->rg_flags || rgl->rl_free != str->rg_free ||
  866. rgl->rl_dinodes != str->rg_dinodes ||
  867. rgl->rl_igeneration != str->rg_igeneration)
  868. return 0;
  869. return 1;
  870. }
  871. static void gfs2_rgrp_ondisk2lvb(struct gfs2_rgrp_lvb *rgl, const void *buf)
  872. {
  873. const struct gfs2_rgrp *str = buf;
  874. rgl->rl_magic = cpu_to_be32(GFS2_MAGIC);
  875. rgl->rl_flags = str->rg_flags;
  876. rgl->rl_free = str->rg_free;
  877. rgl->rl_dinodes = str->rg_dinodes;
  878. rgl->rl_igeneration = str->rg_igeneration;
  879. rgl->__pad = 0UL;
  880. }
  881. static void update_rgrp_lvb_unlinked(struct gfs2_rgrpd *rgd, u32 change)
  882. {
  883. struct gfs2_rgrp_lvb *rgl = rgd->rd_rgl;
  884. u32 unlinked = be32_to_cpu(rgl->rl_unlinked) + change;
  885. rgl->rl_unlinked = cpu_to_be32(unlinked);
  886. }
  887. static u32 count_unlinked(struct gfs2_rgrpd *rgd)
  888. {
  889. struct gfs2_bitmap *bi;
  890. const u32 length = rgd->rd_length;
  891. const u8 *buffer = NULL;
  892. u32 i, goal, count = 0;
  893. for (i = 0, bi = rgd->rd_bits; i < length; i++, bi++) {
  894. goal = 0;
  895. buffer = bi->bi_bh->b_data + bi->bi_offset;
  896. WARN_ON(!buffer_uptodate(bi->bi_bh));
  897. while (goal < bi->bi_len * GFS2_NBBY) {
  898. goal = gfs2_bitfit(buffer, bi->bi_len, goal,
  899. GFS2_BLKST_UNLINKED);
  900. if (goal == BFITNOENT)
  901. break;
  902. count++;
  903. goal++;
  904. }
  905. }
  906. return count;
  907. }
  908. /**
  909. * gfs2_rgrp_bh_get - Read in a RG's header and bitmaps
  910. * @rgd: the struct gfs2_rgrpd describing the RG to read in
  911. *
  912. * Read in all of a Resource Group's header and bitmap blocks.
  913. * Caller must eventually call gfs2_rgrp_relse() to free the bitmaps.
  914. *
  915. * Returns: errno
  916. */
  917. int gfs2_rgrp_bh_get(struct gfs2_rgrpd *rgd)
  918. {
  919. struct gfs2_sbd *sdp = rgd->rd_sbd;
  920. struct gfs2_glock *gl = rgd->rd_gl;
  921. unsigned int length = rgd->rd_length;
  922. struct gfs2_bitmap *bi;
  923. unsigned int x, y;
  924. int error;
  925. if (rgd->rd_bits[0].bi_bh != NULL)
  926. return 0;
  927. for (x = 0; x < length; x++) {
  928. bi = rgd->rd_bits + x;
  929. error = gfs2_meta_read(gl, rgd->rd_addr + x, 0, &bi->bi_bh);
  930. if (error)
  931. goto fail;
  932. }
  933. for (y = length; y--;) {
  934. bi = rgd->rd_bits + y;
  935. error = gfs2_meta_wait(sdp, bi->bi_bh);
  936. if (error)
  937. goto fail;
  938. if (gfs2_metatype_check(sdp, bi->bi_bh, y ? GFS2_METATYPE_RB :
  939. GFS2_METATYPE_RG)) {
  940. error = -EIO;
  941. goto fail;
  942. }
  943. }
  944. if (!(rgd->rd_flags & GFS2_RDF_UPTODATE)) {
  945. for (x = 0; x < length; x++)
  946. clear_bit(GBF_FULL, &rgd->rd_bits[x].bi_flags);
  947. gfs2_rgrp_in(rgd, (rgd->rd_bits[0].bi_bh)->b_data);
  948. rgd->rd_flags |= (GFS2_RDF_UPTODATE | GFS2_RDF_CHECK);
  949. rgd->rd_free_clone = rgd->rd_free;
  950. }
  951. if (be32_to_cpu(GFS2_MAGIC) != rgd->rd_rgl->rl_magic) {
  952. rgd->rd_rgl->rl_unlinked = cpu_to_be32(count_unlinked(rgd));
  953. gfs2_rgrp_ondisk2lvb(rgd->rd_rgl,
  954. rgd->rd_bits[0].bi_bh->b_data);
  955. }
  956. else if (sdp->sd_args.ar_rgrplvb) {
  957. if (!gfs2_rgrp_lvb_valid(rgd)){
  958. gfs2_consist_rgrpd(rgd);
  959. error = -EIO;
  960. goto fail;
  961. }
  962. if (rgd->rd_rgl->rl_unlinked == 0)
  963. rgd->rd_flags &= ~GFS2_RDF_CHECK;
  964. }
  965. return 0;
  966. fail:
  967. while (x--) {
  968. bi = rgd->rd_bits + x;
  969. brelse(bi->bi_bh);
  970. bi->bi_bh = NULL;
  971. gfs2_assert_warn(sdp, !bi->bi_clone);
  972. }
  973. return error;
  974. }
  975. int update_rgrp_lvb(struct gfs2_rgrpd *rgd)
  976. {
  977. u32 rl_flags;
  978. if (rgd->rd_flags & GFS2_RDF_UPTODATE)
  979. return 0;
  980. if (be32_to_cpu(GFS2_MAGIC) != rgd->rd_rgl->rl_magic)
  981. return gfs2_rgrp_bh_get(rgd);
  982. rl_flags = be32_to_cpu(rgd->rd_rgl->rl_flags);
  983. rl_flags &= ~GFS2_RDF_MASK;
  984. rgd->rd_flags &= GFS2_RDF_MASK;
  985. rgd->rd_flags |= (rl_flags | GFS2_RDF_UPTODATE | GFS2_RDF_CHECK);
  986. if (rgd->rd_rgl->rl_unlinked == 0)
  987. rgd->rd_flags &= ~GFS2_RDF_CHECK;
  988. rgd->rd_free = be32_to_cpu(rgd->rd_rgl->rl_free);
  989. rgd->rd_free_clone = rgd->rd_free;
  990. rgd->rd_dinodes = be32_to_cpu(rgd->rd_rgl->rl_dinodes);
  991. rgd->rd_igeneration = be64_to_cpu(rgd->rd_rgl->rl_igeneration);
  992. return 0;
  993. }
  994. int gfs2_rgrp_go_lock(struct gfs2_holder *gh)
  995. {
  996. struct gfs2_rgrpd *rgd = gh->gh_gl->gl_object;
  997. struct gfs2_sbd *sdp = rgd->rd_sbd;
  998. if (gh->gh_flags & GL_SKIP && sdp->sd_args.ar_rgrplvb)
  999. return 0;
  1000. return gfs2_rgrp_bh_get((struct gfs2_rgrpd *)gh->gh_gl->gl_object);
  1001. }
  1002. /**
  1003. * gfs2_rgrp_go_unlock - Release RG bitmaps read in with gfs2_rgrp_bh_get()
  1004. * @gh: The glock holder for the resource group
  1005. *
  1006. */
  1007. void gfs2_rgrp_go_unlock(struct gfs2_holder *gh)
  1008. {
  1009. struct gfs2_rgrpd *rgd = gh->gh_gl->gl_object;
  1010. int x, length = rgd->rd_length;
  1011. for (x = 0; x < length; x++) {
  1012. struct gfs2_bitmap *bi = rgd->rd_bits + x;
  1013. if (bi->bi_bh) {
  1014. brelse(bi->bi_bh);
  1015. bi->bi_bh = NULL;
  1016. }
  1017. }
  1018. }
  1019. int gfs2_rgrp_send_discards(struct gfs2_sbd *sdp, u64 offset,
  1020. struct buffer_head *bh,
  1021. const struct gfs2_bitmap *bi, unsigned minlen, u64 *ptrimmed)
  1022. {
  1023. struct super_block *sb = sdp->sd_vfs;
  1024. struct block_device *bdev = sb->s_bdev;
  1025. const unsigned int sects_per_blk = sdp->sd_sb.sb_bsize /
  1026. bdev_logical_block_size(sb->s_bdev);
  1027. u64 blk;
  1028. sector_t start = 0;
  1029. sector_t nr_sects = 0;
  1030. int rv;
  1031. unsigned int x;
  1032. u32 trimmed = 0;
  1033. u8 diff;
  1034. for (x = 0; x < bi->bi_len; x++) {
  1035. const u8 *clone = bi->bi_clone ? bi->bi_clone : bi->bi_bh->b_data;
  1036. clone += bi->bi_offset;
  1037. clone += x;
  1038. if (bh) {
  1039. const u8 *orig = bh->b_data + bi->bi_offset + x;
  1040. diff = ~(*orig | (*orig >> 1)) & (*clone | (*clone >> 1));
  1041. } else {
  1042. diff = ~(*clone | (*clone >> 1));
  1043. }
  1044. diff &= 0x55;
  1045. if (diff == 0)
  1046. continue;
  1047. blk = offset + ((bi->bi_start + x) * GFS2_NBBY);
  1048. blk *= sects_per_blk; /* convert to sectors */
  1049. while(diff) {
  1050. if (diff & 1) {
  1051. if (nr_sects == 0)
  1052. goto start_new_extent;
  1053. if ((start + nr_sects) != blk) {
  1054. if (nr_sects >= minlen) {
  1055. rv = blkdev_issue_discard(bdev,
  1056. start, nr_sects,
  1057. GFP_NOFS, 0);
  1058. if (rv)
  1059. goto fail;
  1060. trimmed += nr_sects;
  1061. }
  1062. nr_sects = 0;
  1063. start_new_extent:
  1064. start = blk;
  1065. }
  1066. nr_sects += sects_per_blk;
  1067. }
  1068. diff >>= 2;
  1069. blk += sects_per_blk;
  1070. }
  1071. }
  1072. if (nr_sects >= minlen) {
  1073. rv = blkdev_issue_discard(bdev, start, nr_sects, GFP_NOFS, 0);
  1074. if (rv)
  1075. goto fail;
  1076. trimmed += nr_sects;
  1077. }
  1078. if (ptrimmed)
  1079. *ptrimmed = trimmed;
  1080. return 0;
  1081. fail:
  1082. if (sdp->sd_args.ar_discard)
  1083. fs_warn(sdp, "error %d on discard request, turning discards off for this filesystem", rv);
  1084. sdp->sd_args.ar_discard = 0;
  1085. return -EIO;
  1086. }
  1087. /**
  1088. * gfs2_fitrim - Generate discard requests for unused bits of the filesystem
  1089. * @filp: Any file on the filesystem
  1090. * @argp: Pointer to the arguments (also used to pass result)
  1091. *
  1092. * Returns: 0 on success, otherwise error code
  1093. */
  1094. int gfs2_fitrim(struct file *filp, void __user *argp)
  1095. {
  1096. struct inode *inode = filp->f_dentry->d_inode;
  1097. struct gfs2_sbd *sdp = GFS2_SB(inode);
  1098. struct request_queue *q = bdev_get_queue(sdp->sd_vfs->s_bdev);
  1099. struct buffer_head *bh;
  1100. struct gfs2_rgrpd *rgd;
  1101. struct gfs2_rgrpd *rgd_end;
  1102. struct gfs2_holder gh;
  1103. struct fstrim_range r;
  1104. int ret = 0;
  1105. u64 amt;
  1106. u64 trimmed = 0;
  1107. u64 start, end, minlen;
  1108. unsigned int x;
  1109. unsigned bs_shift = sdp->sd_sb.sb_bsize_shift;
  1110. if (!capable(CAP_SYS_ADMIN))
  1111. return -EPERM;
  1112. if (!blk_queue_discard(q))
  1113. return -EOPNOTSUPP;
  1114. if (copy_from_user(&r, argp, sizeof(r)))
  1115. return -EFAULT;
  1116. ret = gfs2_rindex_update(sdp);
  1117. if (ret)
  1118. return ret;
  1119. start = r.start >> bs_shift;
  1120. end = start + (r.len >> bs_shift);
  1121. minlen = max_t(u64, r.minlen,
  1122. q->limits.discard_granularity) >> bs_shift;
  1123. rgd = gfs2_blk2rgrpd(sdp, start, 0);
  1124. rgd_end = gfs2_blk2rgrpd(sdp, end - 1, 0);
  1125. if (end <= start ||
  1126. minlen > sdp->sd_max_rg_data ||
  1127. start > rgd_end->rd_data0 + rgd_end->rd_data)
  1128. return -EINVAL;
  1129. while (1) {
  1130. ret = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &gh);
  1131. if (ret)
  1132. goto out;
  1133. if (!(rgd->rd_flags & GFS2_RGF_TRIMMED)) {
  1134. /* Trim each bitmap in the rgrp */
  1135. for (x = 0; x < rgd->rd_length; x++) {
  1136. struct gfs2_bitmap *bi = rgd->rd_bits + x;
  1137. ret = gfs2_rgrp_send_discards(sdp,
  1138. rgd->rd_data0, NULL, bi, minlen,
  1139. &amt);
  1140. if (ret) {
  1141. gfs2_glock_dq_uninit(&gh);
  1142. goto out;
  1143. }
  1144. trimmed += amt;
  1145. }
  1146. /* Mark rgrp as having been trimmed */
  1147. ret = gfs2_trans_begin(sdp, RES_RG_HDR, 0);
  1148. if (ret == 0) {
  1149. bh = rgd->rd_bits[0].bi_bh;
  1150. rgd->rd_flags |= GFS2_RGF_TRIMMED;
  1151. gfs2_trans_add_bh(rgd->rd_gl, bh, 1);
  1152. gfs2_rgrp_out(rgd, bh->b_data);
  1153. gfs2_rgrp_ondisk2lvb(rgd->rd_rgl, bh->b_data);
  1154. gfs2_trans_end(sdp);
  1155. }
  1156. }
  1157. gfs2_glock_dq_uninit(&gh);
  1158. if (rgd == rgd_end)
  1159. break;
  1160. rgd = gfs2_rgrpd_get_next(rgd);
  1161. }
  1162. out:
  1163. r.len = trimmed << 9;
  1164. if (copy_to_user(argp, &r, sizeof(r)))
  1165. return -EFAULT;
  1166. return ret;
  1167. }
  1168. /**
  1169. * rs_insert - insert a new multi-block reservation into the rgrp's rb_tree
  1170. * @ip: the inode structure
  1171. *
  1172. */
  1173. static void rs_insert(struct gfs2_inode *ip)
  1174. {
  1175. struct rb_node **newn, *parent = NULL;
  1176. int rc;
  1177. struct gfs2_blkreserv *rs = ip->i_res;
  1178. struct gfs2_rgrpd *rgd = rs->rs_rbm.rgd;
  1179. u64 fsblock = gfs2_rbm_to_block(&rs->rs_rbm);
  1180. BUG_ON(gfs2_rs_active(rs));
  1181. spin_lock(&rgd->rd_rsspin);
  1182. newn = &rgd->rd_rstree.rb_node;
  1183. while (*newn) {
  1184. struct gfs2_blkreserv *cur =
  1185. rb_entry(*newn, struct gfs2_blkreserv, rs_node);
  1186. parent = *newn;
  1187. rc = rs_cmp(fsblock, rs->rs_free, cur);
  1188. if (rc > 0)
  1189. newn = &((*newn)->rb_right);
  1190. else if (rc < 0)
  1191. newn = &((*newn)->rb_left);
  1192. else {
  1193. spin_unlock(&rgd->rd_rsspin);
  1194. WARN_ON(1);
  1195. return;
  1196. }
  1197. }
  1198. rb_link_node(&rs->rs_node, parent, newn);
  1199. rb_insert_color(&rs->rs_node, &rgd->rd_rstree);
  1200. /* Do our rgrp accounting for the reservation */
  1201. rgd->rd_reserved += rs->rs_free; /* blocks reserved */
  1202. spin_unlock(&rgd->rd_rsspin);
  1203. trace_gfs2_rs(rs, TRACE_RS_INSERT);
  1204. }
  1205. /**
  1206. * rg_mblk_search - find a group of multiple free blocks to form a reservation
  1207. * @rgd: the resource group descriptor
  1208. * @ip: pointer to the inode for which we're reserving blocks
  1209. * @requested: number of blocks required for this allocation
  1210. *
  1211. */
  1212. static void rg_mblk_search(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip,
  1213. unsigned requested)
  1214. {
  1215. struct gfs2_rbm rbm = { .rgd = rgd, };
  1216. u64 goal;
  1217. struct gfs2_blkreserv *rs = ip->i_res;
  1218. u32 extlen;
  1219. u32 free_blocks = rgd->rd_free_clone - rgd->rd_reserved;
  1220. int ret;
  1221. extlen = max_t(u32, atomic_read(&rs->rs_sizehint), requested);
  1222. extlen = clamp(extlen, RGRP_RSRV_MINBLKS, free_blocks);
  1223. if ((rgd->rd_free_clone < rgd->rd_reserved) || (free_blocks < extlen))
  1224. return;
  1225. /* Find bitmap block that contains bits for goal block */
  1226. if (rgrp_contains_block(rgd, ip->i_goal))
  1227. goal = ip->i_goal;
  1228. else
  1229. goal = rgd->rd_last_alloc + rgd->rd_data0;
  1230. if (WARN_ON(gfs2_rbm_from_block(&rbm, goal)))
  1231. return;
  1232. ret = gfs2_rbm_find(&rbm, GFS2_BLKST_FREE, extlen, ip, true);
  1233. if (ret == 0) {
  1234. rs->rs_rbm = rbm;
  1235. rs->rs_free = extlen;
  1236. rs->rs_inum = ip->i_no_addr;
  1237. rs_insert(ip);
  1238. }
  1239. }
  1240. /**
  1241. * gfs2_next_unreserved_block - Return next block that is not reserved
  1242. * @rgd: The resource group
  1243. * @block: The starting block
  1244. * @length: The required length
  1245. * @ip: Ignore any reservations for this inode
  1246. *
  1247. * If the block does not appear in any reservation, then return the
  1248. * block number unchanged. If it does appear in the reservation, then
  1249. * keep looking through the tree of reservations in order to find the
  1250. * first block number which is not reserved.
  1251. */
  1252. static u64 gfs2_next_unreserved_block(struct gfs2_rgrpd *rgd, u64 block,
  1253. u32 length,
  1254. const struct gfs2_inode *ip)
  1255. {
  1256. struct gfs2_blkreserv *rs;
  1257. struct rb_node *n;
  1258. int rc;
  1259. spin_lock(&rgd->rd_rsspin);
  1260. n = rgd->rd_rstree.rb_node;
  1261. while (n) {
  1262. rs = rb_entry(n, struct gfs2_blkreserv, rs_node);
  1263. rc = rs_cmp(block, length, rs);
  1264. if (rc < 0)
  1265. n = n->rb_left;
  1266. else if (rc > 0)
  1267. n = n->rb_right;
  1268. else
  1269. break;
  1270. }
  1271. if (n) {
  1272. while ((rs_cmp(block, length, rs) == 0) && (ip->i_res != rs)) {
  1273. block = gfs2_rbm_to_block(&rs->rs_rbm) + rs->rs_free;
  1274. n = n->rb_right;
  1275. if (n == NULL)
  1276. break;
  1277. rs = rb_entry(n, struct gfs2_blkreserv, rs_node);
  1278. }
  1279. }
  1280. spin_unlock(&rgd->rd_rsspin);
  1281. return block;
  1282. }
  1283. /**
  1284. * gfs2_reservation_check_and_update - Check for reservations during block alloc
  1285. * @rbm: The current position in the resource group
  1286. * @ip: The inode for which we are searching for blocks
  1287. * @minext: The minimum extent length
  1288. *
  1289. * This checks the current position in the rgrp to see whether there is
  1290. * a reservation covering this block. If not then this function is a
  1291. * no-op. If there is, then the position is moved to the end of the
  1292. * contiguous reservation(s) so that we are pointing at the first
  1293. * non-reserved block.
  1294. *
  1295. * Returns: 0 if no reservation, 1 if @rbm has changed, otherwise an error
  1296. */
  1297. static int gfs2_reservation_check_and_update(struct gfs2_rbm *rbm,
  1298. const struct gfs2_inode *ip,
  1299. u32 minext)
  1300. {
  1301. u64 block = gfs2_rbm_to_block(rbm);
  1302. u32 extlen = 1;
  1303. u64 nblock;
  1304. int ret;
  1305. /*
  1306. * If we have a minimum extent length, then skip over any extent
  1307. * which is less than the min extent length in size.
  1308. */
  1309. if (minext) {
  1310. extlen = gfs2_free_extlen(rbm, minext);
  1311. nblock = block + extlen;
  1312. if (extlen < minext)
  1313. goto fail;
  1314. }
  1315. /*
  1316. * Check the extent which has been found against the reservations
  1317. * and skip if parts of it are already reserved
  1318. */
  1319. nblock = gfs2_next_unreserved_block(rbm->rgd, block, extlen, ip);
  1320. if (nblock == block)
  1321. return 0;
  1322. fail:
  1323. ret = gfs2_rbm_from_block(rbm, nblock);
  1324. if (ret < 0)
  1325. return ret;
  1326. return 1;
  1327. }
  1328. /**
  1329. * gfs2_rbm_find - Look for blocks of a particular state
  1330. * @rbm: Value/result starting position and final position
  1331. * @state: The state which we want to find
  1332. * @minext: The requested extent length (0 for a single block)
  1333. * @ip: If set, check for reservations
  1334. * @nowrap: Stop looking at the end of the rgrp, rather than wrapping
  1335. * around until we've reached the starting point.
  1336. *
  1337. * Side effects:
  1338. * - If looking for free blocks, we set GBF_FULL on each bitmap which
  1339. * has no free blocks in it.
  1340. *
  1341. * Returns: 0 on success, -ENOSPC if there is no block of the requested state
  1342. */
  1343. static int gfs2_rbm_find(struct gfs2_rbm *rbm, u8 state, u32 minext,
  1344. const struct gfs2_inode *ip, bool nowrap)
  1345. {
  1346. struct buffer_head *bh;
  1347. struct gfs2_bitmap *initial_bi;
  1348. u32 initial_offset;
  1349. u32 offset;
  1350. u8 *buffer;
  1351. int index;
  1352. int n = 0;
  1353. int iters = rbm->rgd->rd_length;
  1354. int ret;
  1355. /* If we are not starting at the beginning of a bitmap, then we
  1356. * need to add one to the bitmap count to ensure that we search
  1357. * the starting bitmap twice.
  1358. */
  1359. if (rbm->offset != 0)
  1360. iters++;
  1361. while(1) {
  1362. if (test_bit(GBF_FULL, &rbm->bi->bi_flags) &&
  1363. (state == GFS2_BLKST_FREE))
  1364. goto next_bitmap;
  1365. bh = rbm->bi->bi_bh;
  1366. buffer = bh->b_data + rbm->bi->bi_offset;
  1367. WARN_ON(!buffer_uptodate(bh));
  1368. if (state != GFS2_BLKST_UNLINKED && rbm->bi->bi_clone)
  1369. buffer = rbm->bi->bi_clone + rbm->bi->bi_offset;
  1370. initial_offset = rbm->offset;
  1371. offset = gfs2_bitfit(buffer, rbm->bi->bi_len, rbm->offset, state);
  1372. if (offset == BFITNOENT)
  1373. goto bitmap_full;
  1374. rbm->offset = offset;
  1375. if (ip == NULL)
  1376. return 0;
  1377. initial_bi = rbm->bi;
  1378. ret = gfs2_reservation_check_and_update(rbm, ip, minext);
  1379. if (ret == 0)
  1380. return 0;
  1381. if (ret > 0) {
  1382. n += (rbm->bi - initial_bi);
  1383. goto next_iter;
  1384. }
  1385. if (ret == -E2BIG) {
  1386. index = 0;
  1387. rbm->offset = 0;
  1388. n += (rbm->bi - initial_bi);
  1389. goto res_covered_end_of_rgrp;
  1390. }
  1391. return ret;
  1392. bitmap_full: /* Mark bitmap as full and fall through */
  1393. if ((state == GFS2_BLKST_FREE) && initial_offset == 0)
  1394. set_bit(GBF_FULL, &rbm->bi->bi_flags);
  1395. next_bitmap: /* Find next bitmap in the rgrp */
  1396. rbm->offset = 0;
  1397. index = rbm->bi - rbm->rgd->rd_bits;
  1398. index++;
  1399. if (index == rbm->rgd->rd_length)
  1400. index = 0;
  1401. res_covered_end_of_rgrp:
  1402. rbm->bi = &rbm->rgd->rd_bits[index];
  1403. if ((index == 0) && nowrap)
  1404. break;
  1405. n++;
  1406. next_iter:
  1407. if (n >= iters)
  1408. break;
  1409. }
  1410. return -ENOSPC;
  1411. }
  1412. /**
  1413. * try_rgrp_unlink - Look for any unlinked, allocated, but unused inodes
  1414. * @rgd: The rgrp
  1415. * @last_unlinked: block address of the last dinode we unlinked
  1416. * @skip: block address we should explicitly not unlink
  1417. *
  1418. * Returns: 0 if no error
  1419. * The inode, if one has been found, in inode.
  1420. */
  1421. static void try_rgrp_unlink(struct gfs2_rgrpd *rgd, u64 *last_unlinked, u64 skip)
  1422. {
  1423. u64 block;
  1424. struct gfs2_sbd *sdp = rgd->rd_sbd;
  1425. struct gfs2_glock *gl;
  1426. struct gfs2_inode *ip;
  1427. int error;
  1428. int found = 0;
  1429. struct gfs2_rbm rbm = { .rgd = rgd, .bi = rgd->rd_bits, .offset = 0 };
  1430. while (1) {
  1431. down_write(&sdp->sd_log_flush_lock);
  1432. error = gfs2_rbm_find(&rbm, GFS2_BLKST_UNLINKED, 0, NULL, true);
  1433. up_write(&sdp->sd_log_flush_lock);
  1434. if (error == -ENOSPC)
  1435. break;
  1436. if (WARN_ON_ONCE(error))
  1437. break;
  1438. block = gfs2_rbm_to_block(&rbm);
  1439. if (gfs2_rbm_from_block(&rbm, block + 1))
  1440. break;
  1441. if (*last_unlinked != NO_BLOCK && block <= *last_unlinked)
  1442. continue;
  1443. if (block == skip)
  1444. continue;
  1445. *last_unlinked = block;
  1446. error = gfs2_glock_get(sdp, block, &gfs2_inode_glops, CREATE, &gl);
  1447. if (error)
  1448. continue;
  1449. /* If the inode is already in cache, we can ignore it here
  1450. * because the existing inode disposal code will deal with
  1451. * it when all refs have gone away. Accessing gl_object like
  1452. * this is not safe in general. Here it is ok because we do
  1453. * not dereference the pointer, and we only need an approx
  1454. * answer to whether it is NULL or not.
  1455. */
  1456. ip = gl->gl_object;
  1457. if (ip || queue_work(gfs2_delete_workqueue, &gl->gl_delete) == 0)
  1458. gfs2_glock_put(gl);
  1459. else
  1460. found++;
  1461. /* Limit reclaim to sensible number of tasks */
  1462. if (found > NR_CPUS)
  1463. return;
  1464. }
  1465. rgd->rd_flags &= ~GFS2_RDF_CHECK;
  1466. return;
  1467. }
  1468. /**
  1469. * gfs2_rgrp_congested - Use stats to figure out whether an rgrp is congested
  1470. * @rgd: The rgrp in question
  1471. * @loops: An indication of how picky we can be (0=very, 1=less so)
  1472. *
  1473. * This function uses the recently added glock statistics in order to
  1474. * figure out whether a parciular resource group is suffering from
  1475. * contention from multiple nodes. This is done purely on the basis
  1476. * of timings, since this is the only data we have to work with and
  1477. * our aim here is to reject a resource group which is highly contended
  1478. * but (very important) not to do this too often in order to ensure that
  1479. * we do not land up introducing fragmentation by changing resource
  1480. * groups when not actually required.
  1481. *
  1482. * The calculation is fairly simple, we want to know whether the SRTTB
  1483. * (i.e. smoothed round trip time for blocking operations) to acquire
  1484. * the lock for this rgrp's glock is significantly greater than the
  1485. * time taken for resource groups on average. We introduce a margin in
  1486. * the form of the variable @var which is computed as the sum of the two
  1487. * respective variences, and multiplied by a factor depending on @loops
  1488. * and whether we have a lot of data to base the decision on. This is
  1489. * then tested against the square difference of the means in order to
  1490. * decide whether the result is statistically significant or not.
  1491. *
  1492. * Returns: A boolean verdict on the congestion status
  1493. */
  1494. static bool gfs2_rgrp_congested(const struct gfs2_rgrpd *rgd, int loops)
  1495. {
  1496. const struct gfs2_glock *gl = rgd->rd_gl;
  1497. const struct gfs2_sbd *sdp = gl->gl_sbd;
  1498. struct gfs2_lkstats *st;
  1499. s64 r_dcount, l_dcount;
  1500. s64 r_srttb, l_srttb;
  1501. s64 srttb_diff;
  1502. s64 sqr_diff;
  1503. s64 var;
  1504. preempt_disable();
  1505. st = &this_cpu_ptr(sdp->sd_lkstats)->lkstats[LM_TYPE_RGRP];
  1506. r_srttb = st->stats[GFS2_LKS_SRTTB];
  1507. r_dcount = st->stats[GFS2_LKS_DCOUNT];
  1508. var = st->stats[GFS2_LKS_SRTTVARB] +
  1509. gl->gl_stats.stats[GFS2_LKS_SRTTVARB];
  1510. preempt_enable();
  1511. l_srttb = gl->gl_stats.stats[GFS2_LKS_SRTTB];
  1512. l_dcount = gl->gl_stats.stats[GFS2_LKS_DCOUNT];
  1513. if ((l_dcount < 1) || (r_dcount < 1) || (r_srttb == 0))
  1514. return false;
  1515. srttb_diff = r_srttb - l_srttb;
  1516. sqr_diff = srttb_diff * srttb_diff;
  1517. var *= 2;
  1518. if (l_dcount < 8 || r_dcount < 8)
  1519. var *= 2;
  1520. if (loops == 1)
  1521. var *= 2;
  1522. return ((srttb_diff < 0) && (sqr_diff > var));
  1523. }
  1524. /**
  1525. * gfs2_rgrp_used_recently
  1526. * @rs: The block reservation with the rgrp to test
  1527. * @msecs: The time limit in milliseconds
  1528. *
  1529. * Returns: True if the rgrp glock has been used within the time limit
  1530. */
  1531. static bool gfs2_rgrp_used_recently(const struct gfs2_blkreserv *rs,
  1532. u64 msecs)
  1533. {
  1534. u64 tdiff;
  1535. tdiff = ktime_to_ns(ktime_sub(ktime_get_real(),
  1536. rs->rs_rbm.rgd->rd_gl->gl_dstamp));
  1537. return tdiff > (msecs * 1000 * 1000);
  1538. }
  1539. static bool gfs2_select_rgrp(struct gfs2_rgrpd **pos, const struct gfs2_rgrpd *begin)
  1540. {
  1541. struct gfs2_rgrpd *rgd = *pos;
  1542. rgd = gfs2_rgrpd_get_next(rgd);
  1543. if (rgd == NULL)
  1544. rgd = gfs2_rgrpd_get_next(NULL);
  1545. *pos = rgd;
  1546. if (rgd != begin) /* If we didn't wrap */
  1547. return true;
  1548. return false;
  1549. }
  1550. /**
  1551. * gfs2_inplace_reserve - Reserve space in the filesystem
  1552. * @ip: the inode to reserve space for
  1553. * @requested: the number of blocks to be reserved
  1554. *
  1555. * Returns: errno
  1556. */
  1557. int gfs2_inplace_reserve(struct gfs2_inode *ip, u32 requested)
  1558. {
  1559. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  1560. struct gfs2_rgrpd *begin = NULL;
  1561. struct gfs2_blkreserv *rs = ip->i_res;
  1562. int error = 0, rg_locked, flags = 0;
  1563. u64 last_unlinked = NO_BLOCK;
  1564. int loops = 0;
  1565. if (sdp->sd_args.ar_rgrplvb)
  1566. flags |= GL_SKIP;
  1567. if (gfs2_assert_warn(sdp, requested))
  1568. return -EINVAL;
  1569. if (gfs2_rs_active(rs)) {
  1570. begin = rs->rs_rbm.rgd;
  1571. flags = 0; /* Yoda: Do or do not. There is no try */
  1572. } else if (ip->i_rgd && rgrp_contains_block(ip->i_rgd, ip->i_goal)) {
  1573. rs->rs_rbm.rgd = begin = ip->i_rgd;
  1574. } else {
  1575. rs->rs_rbm.rgd = begin = gfs2_blk2rgrpd(sdp, ip->i_goal, 1);
  1576. }
  1577. if (rs->rs_rbm.rgd == NULL)
  1578. return -EBADSLT;
  1579. while (loops < 3) {
  1580. rg_locked = 1;
  1581. if (!gfs2_glock_is_locked_by_me(rs->rs_rbm.rgd->rd_gl)) {
  1582. rg_locked = 0;
  1583. if (!gfs2_rs_active(rs) && (loops < 2) &&
  1584. gfs2_rgrp_used_recently(rs, 1000) &&
  1585. gfs2_rgrp_congested(rs->rs_rbm.rgd, loops))
  1586. goto next_rgrp;
  1587. error = gfs2_glock_nq_init(rs->rs_rbm.rgd->rd_gl,
  1588. LM_ST_EXCLUSIVE, flags,
  1589. &rs->rs_rgd_gh);
  1590. if (unlikely(error))
  1591. return error;
  1592. if (!gfs2_rs_active(rs) && (loops < 2) &&
  1593. gfs2_rgrp_congested(rs->rs_rbm.rgd, loops))
  1594. goto skip_rgrp;
  1595. if (sdp->sd_args.ar_rgrplvb) {
  1596. error = update_rgrp_lvb(rs->rs_rbm.rgd);
  1597. if (unlikely(error)) {
  1598. gfs2_glock_dq_uninit(&rs->rs_rgd_gh);
  1599. return error;
  1600. }
  1601. }
  1602. }
  1603. /* Skip unuseable resource groups */
  1604. if (rs->rs_rbm.rgd->rd_flags & (GFS2_RGF_NOALLOC | GFS2_RDF_ERROR))
  1605. goto skip_rgrp;
  1606. if (sdp->sd_args.ar_rgrplvb)
  1607. gfs2_rgrp_bh_get(rs->rs_rbm.rgd);
  1608. /* Get a reservation if we don't already have one */
  1609. if (!gfs2_rs_active(rs))
  1610. rg_mblk_search(rs->rs_rbm.rgd, ip, requested);
  1611. /* Skip rgrps when we can't get a reservation on first pass */
  1612. if (!gfs2_rs_active(rs) && (loops < 1))
  1613. goto check_rgrp;
  1614. /* If rgrp has enough free space, use it */
  1615. if (rs->rs_rbm.rgd->rd_free_clone >= requested) {
  1616. ip->i_rgd = rs->rs_rbm.rgd;
  1617. return 0;
  1618. }
  1619. /* Drop reservation, if we couldn't use reserved rgrp */
  1620. if (gfs2_rs_active(rs))
  1621. gfs2_rs_deltree(ip, rs);
  1622. check_rgrp:
  1623. /* Check for unlinked inodes which can be reclaimed */
  1624. if (rs->rs_rbm.rgd->rd_flags & GFS2_RDF_CHECK)
  1625. try_rgrp_unlink(rs->rs_rbm.rgd, &last_unlinked,
  1626. ip->i_no_addr);
  1627. skip_rgrp:
  1628. /* Unlock rgrp if required */
  1629. if (!rg_locked)
  1630. gfs2_glock_dq_uninit(&rs->rs_rgd_gh);
  1631. next_rgrp:
  1632. /* Find the next rgrp, and continue looking */
  1633. if (gfs2_select_rgrp(&rs->rs_rbm.rgd, begin))
  1634. continue;
  1635. /* If we've scanned all the rgrps, but found no free blocks
  1636. * then this checks for some less likely conditions before
  1637. * trying again.
  1638. */
  1639. loops++;
  1640. /* Check that fs hasn't grown if writing to rindex */
  1641. if (ip == GFS2_I(sdp->sd_rindex) && !sdp->sd_rindex_uptodate) {
  1642. error = gfs2_ri_update(ip);
  1643. if (error)
  1644. return error;
  1645. }
  1646. /* Flushing the log may release space */
  1647. if (loops == 2)
  1648. gfs2_log_flush(sdp, NULL);
  1649. }
  1650. return -ENOSPC;
  1651. }
  1652. /**
  1653. * gfs2_inplace_release - release an inplace reservation
  1654. * @ip: the inode the reservation was taken out on
  1655. *
  1656. * Release a reservation made by gfs2_inplace_reserve().
  1657. */
  1658. void gfs2_inplace_release(struct gfs2_inode *ip)
  1659. {
  1660. struct gfs2_blkreserv *rs = ip->i_res;
  1661. if (rs->rs_rgd_gh.gh_gl)
  1662. gfs2_glock_dq_uninit(&rs->rs_rgd_gh);
  1663. }
  1664. /**
  1665. * gfs2_get_block_type - Check a block in a RG is of given type
  1666. * @rgd: the resource group holding the block
  1667. * @block: the block number
  1668. *
  1669. * Returns: The block type (GFS2_BLKST_*)
  1670. */
  1671. static unsigned char gfs2_get_block_type(struct gfs2_rgrpd *rgd, u64 block)
  1672. {
  1673. struct gfs2_rbm rbm = { .rgd = rgd, };
  1674. int ret;
  1675. ret = gfs2_rbm_from_block(&rbm, block);
  1676. WARN_ON_ONCE(ret != 0);
  1677. return gfs2_testbit(&rbm);
  1678. }
  1679. /**
  1680. * gfs2_alloc_extent - allocate an extent from a given bitmap
  1681. * @rbm: the resource group information
  1682. * @dinode: TRUE if the first block we allocate is for a dinode
  1683. * @n: The extent length (value/result)
  1684. *
  1685. * Add the bitmap buffer to the transaction.
  1686. * Set the found bits to @new_state to change block's allocation state.
  1687. */
  1688. static void gfs2_alloc_extent(const struct gfs2_rbm *rbm, bool dinode,
  1689. unsigned int *n)
  1690. {
  1691. struct gfs2_rbm pos = { .rgd = rbm->rgd, };
  1692. const unsigned int elen = *n;
  1693. u64 block;
  1694. int ret;
  1695. *n = 1;
  1696. block = gfs2_rbm_to_block(rbm);
  1697. gfs2_trans_add_bh(rbm->rgd->rd_gl, rbm->bi->bi_bh, 1);
  1698. gfs2_setbit(rbm, true, dinode ? GFS2_BLKST_DINODE : GFS2_BLKST_USED);
  1699. block++;
  1700. while (*n < elen) {
  1701. ret = gfs2_rbm_from_block(&pos, block);
  1702. if (ret || gfs2_testbit(&pos) != GFS2_BLKST_FREE)
  1703. break;
  1704. gfs2_trans_add_bh(pos.rgd->rd_gl, pos.bi->bi_bh, 1);
  1705. gfs2_setbit(&pos, true, GFS2_BLKST_USED);
  1706. (*n)++;
  1707. block++;
  1708. }
  1709. }
  1710. /**
  1711. * rgblk_free - Change alloc state of given block(s)
  1712. * @sdp: the filesystem
  1713. * @bstart: the start of a run of blocks to free
  1714. * @blen: the length of the block run (all must lie within ONE RG!)
  1715. * @new_state: GFS2_BLKST_XXX the after-allocation block state
  1716. *
  1717. * Returns: Resource group containing the block(s)
  1718. */
  1719. static struct gfs2_rgrpd *rgblk_free(struct gfs2_sbd *sdp, u64 bstart,
  1720. u32 blen, unsigned char new_state)
  1721. {
  1722. struct gfs2_rbm rbm;
  1723. rbm.rgd = gfs2_blk2rgrpd(sdp, bstart, 1);
  1724. if (!rbm.rgd) {
  1725. if (gfs2_consist(sdp))
  1726. fs_err(sdp, "block = %llu\n", (unsigned long long)bstart);
  1727. return NULL;
  1728. }
  1729. while (blen--) {
  1730. gfs2_rbm_from_block(&rbm, bstart);
  1731. bstart++;
  1732. if (!rbm.bi->bi_clone) {
  1733. rbm.bi->bi_clone = kmalloc(rbm.bi->bi_bh->b_size,
  1734. GFP_NOFS | __GFP_NOFAIL);
  1735. memcpy(rbm.bi->bi_clone + rbm.bi->bi_offset,
  1736. rbm.bi->bi_bh->b_data + rbm.bi->bi_offset,
  1737. rbm.bi->bi_len);
  1738. }
  1739. gfs2_trans_add_bh(rbm.rgd->rd_gl, rbm.bi->bi_bh, 1);
  1740. gfs2_setbit(&rbm, false, new_state);
  1741. }
  1742. return rbm.rgd;
  1743. }
  1744. /**
  1745. * gfs2_rgrp_dump - print out an rgrp
  1746. * @seq: The iterator
  1747. * @gl: The glock in question
  1748. *
  1749. */
  1750. int gfs2_rgrp_dump(struct seq_file *seq, const struct gfs2_glock *gl)
  1751. {
  1752. struct gfs2_rgrpd *rgd = gl->gl_object;
  1753. struct gfs2_blkreserv *trs;
  1754. const struct rb_node *n;
  1755. if (rgd == NULL)
  1756. return 0;
  1757. gfs2_print_dbg(seq, " R: n:%llu f:%02x b:%u/%u i:%u r:%u\n",
  1758. (unsigned long long)rgd->rd_addr, rgd->rd_flags,
  1759. rgd->rd_free, rgd->rd_free_clone, rgd->rd_dinodes,
  1760. rgd->rd_reserved);
  1761. spin_lock(&rgd->rd_rsspin);
  1762. for (n = rb_first(&rgd->rd_rstree); n; n = rb_next(&trs->rs_node)) {
  1763. trs = rb_entry(n, struct gfs2_blkreserv, rs_node);
  1764. dump_rs(seq, trs);
  1765. }
  1766. spin_unlock(&rgd->rd_rsspin);
  1767. return 0;
  1768. }
  1769. static void gfs2_rgrp_error(struct gfs2_rgrpd *rgd)
  1770. {
  1771. struct gfs2_sbd *sdp = rgd->rd_sbd;
  1772. fs_warn(sdp, "rgrp %llu has an error, marking it readonly until umount\n",
  1773. (unsigned long long)rgd->rd_addr);
  1774. fs_warn(sdp, "umount on all nodes and run fsck.gfs2 to fix the error\n");
  1775. gfs2_rgrp_dump(NULL, rgd->rd_gl);
  1776. rgd->rd_flags |= GFS2_RDF_ERROR;
  1777. }
  1778. /**
  1779. * gfs2_adjust_reservation - Adjust (or remove) a reservation after allocation
  1780. * @ip: The inode we have just allocated blocks for
  1781. * @rbm: The start of the allocated blocks
  1782. * @len: The extent length
  1783. *
  1784. * Adjusts a reservation after an allocation has taken place. If the
  1785. * reservation does not match the allocation, or if it is now empty
  1786. * then it is removed.
  1787. */
  1788. static void gfs2_adjust_reservation(struct gfs2_inode *ip,
  1789. const struct gfs2_rbm *rbm, unsigned len)
  1790. {
  1791. struct gfs2_blkreserv *rs = ip->i_res;
  1792. struct gfs2_rgrpd *rgd = rbm->rgd;
  1793. unsigned rlen;
  1794. u64 block;
  1795. int ret;
  1796. spin_lock(&rgd->rd_rsspin);
  1797. if (gfs2_rs_active(rs)) {
  1798. if (gfs2_rbm_eq(&rs->rs_rbm, rbm)) {
  1799. block = gfs2_rbm_to_block(rbm);
  1800. ret = gfs2_rbm_from_block(&rs->rs_rbm, block + len);
  1801. rlen = min(rs->rs_free, len);
  1802. rs->rs_free -= rlen;
  1803. rgd->rd_reserved -= rlen;
  1804. trace_gfs2_rs(rs, TRACE_RS_CLAIM);
  1805. if (rs->rs_free && !ret)
  1806. goto out;
  1807. }
  1808. __rs_deltree(ip, rs);
  1809. }
  1810. out:
  1811. spin_unlock(&rgd->rd_rsspin);
  1812. }
  1813. /**
  1814. * gfs2_alloc_blocks - Allocate one or more blocks of data and/or a dinode
  1815. * @ip: the inode to allocate the block for
  1816. * @bn: Used to return the starting block number
  1817. * @nblocks: requested number of blocks/extent length (value/result)
  1818. * @dinode: 1 if we're allocating a dinode block, else 0
  1819. * @generation: the generation number of the inode
  1820. *
  1821. * Returns: 0 or error
  1822. */
  1823. int gfs2_alloc_blocks(struct gfs2_inode *ip, u64 *bn, unsigned int *nblocks,
  1824. bool dinode, u64 *generation)
  1825. {
  1826. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  1827. struct buffer_head *dibh;
  1828. struct gfs2_rbm rbm = { .rgd = ip->i_rgd, };
  1829. unsigned int ndata;
  1830. u64 goal;
  1831. u64 block; /* block, within the file system scope */
  1832. int error;
  1833. if (gfs2_rs_active(ip->i_res))
  1834. goal = gfs2_rbm_to_block(&ip->i_res->rs_rbm);
  1835. else if (!dinode && rgrp_contains_block(rbm.rgd, ip->i_goal))
  1836. goal = ip->i_goal;
  1837. else
  1838. goal = rbm.rgd->rd_last_alloc + rbm.rgd->rd_data0;
  1839. gfs2_rbm_from_block(&rbm, goal);
  1840. error = gfs2_rbm_find(&rbm, GFS2_BLKST_FREE, 0, ip, false);
  1841. if (error == -ENOSPC) {
  1842. gfs2_rbm_from_block(&rbm, goal);
  1843. error = gfs2_rbm_find(&rbm, GFS2_BLKST_FREE, 0, NULL, false);
  1844. }
  1845. /* Since all blocks are reserved in advance, this shouldn't happen */
  1846. if (error) {
  1847. fs_warn(sdp, "inum=%llu error=%d, nblocks=%u, full=%d\n",
  1848. (unsigned long long)ip->i_no_addr, error, *nblocks,
  1849. test_bit(GBF_FULL, &rbm.rgd->rd_bits->bi_flags));
  1850. goto rgrp_error;
  1851. }
  1852. gfs2_alloc_extent(&rbm, dinode, nblocks);
  1853. block = gfs2_rbm_to_block(&rbm);
  1854. rbm.rgd->rd_last_alloc = block - rbm.rgd->rd_data0;
  1855. if (gfs2_rs_active(ip->i_res))
  1856. gfs2_adjust_reservation(ip, &rbm, *nblocks);
  1857. ndata = *nblocks;
  1858. if (dinode)
  1859. ndata--;
  1860. if (!dinode) {
  1861. ip->i_goal = block + ndata - 1;
  1862. error = gfs2_meta_inode_buffer(ip, &dibh);
  1863. if (error == 0) {
  1864. struct gfs2_dinode *di =
  1865. (struct gfs2_dinode *)dibh->b_data;
  1866. gfs2_trans_add_bh(ip->i_gl, dibh, 1);
  1867. di->di_goal_meta = di->di_goal_data =
  1868. cpu_to_be64(ip->i_goal);
  1869. brelse(dibh);
  1870. }
  1871. }
  1872. if (rbm.rgd->rd_free < *nblocks) {
  1873. printk(KERN_WARNING "nblocks=%u\n", *nblocks);
  1874. goto rgrp_error;
  1875. }
  1876. rbm.rgd->rd_free -= *nblocks;
  1877. if (dinode) {
  1878. rbm.rgd->rd_dinodes++;
  1879. *generation = rbm.rgd->rd_igeneration++;
  1880. if (*generation == 0)
  1881. *generation = rbm.rgd->rd_igeneration++;
  1882. }
  1883. gfs2_trans_add_bh(rbm.rgd->rd_gl, rbm.rgd->rd_bits[0].bi_bh, 1);
  1884. gfs2_rgrp_out(rbm.rgd, rbm.rgd->rd_bits[0].bi_bh->b_data);
  1885. gfs2_rgrp_ondisk2lvb(rbm.rgd->rd_rgl, rbm.rgd->rd_bits[0].bi_bh->b_data);
  1886. gfs2_statfs_change(sdp, 0, -(s64)*nblocks, dinode ? 1 : 0);
  1887. if (dinode)
  1888. gfs2_trans_add_unrevoke(sdp, block, 1);
  1889. /*
  1890. * This needs reviewing to see why we cannot do the quota change
  1891. * at this point in the dinode case.
  1892. */
  1893. if (ndata)
  1894. gfs2_quota_change(ip, ndata, ip->i_inode.i_uid,
  1895. ip->i_inode.i_gid);
  1896. rbm.rgd->rd_free_clone -= *nblocks;
  1897. trace_gfs2_block_alloc(ip, rbm.rgd, block, *nblocks,
  1898. dinode ? GFS2_BLKST_DINODE : GFS2_BLKST_USED);
  1899. *bn = block;
  1900. return 0;
  1901. rgrp_error:
  1902. gfs2_rgrp_error(rbm.rgd);
  1903. return -EIO;
  1904. }
  1905. /**
  1906. * __gfs2_free_blocks - free a contiguous run of block(s)
  1907. * @ip: the inode these blocks are being freed from
  1908. * @bstart: first block of a run of contiguous blocks
  1909. * @blen: the length of the block run
  1910. * @meta: 1 if the blocks represent metadata
  1911. *
  1912. */
  1913. void __gfs2_free_blocks(struct gfs2_inode *ip, u64 bstart, u32 blen, int meta)
  1914. {
  1915. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  1916. struct gfs2_rgrpd *rgd;
  1917. rgd = rgblk_free(sdp, bstart, blen, GFS2_BLKST_FREE);
  1918. if (!rgd)
  1919. return;
  1920. trace_gfs2_block_alloc(ip, rgd, bstart, blen, GFS2_BLKST_FREE);
  1921. rgd->rd_free += blen;
  1922. rgd->rd_flags &= ~GFS2_RGF_TRIMMED;
  1923. gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
  1924. gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
  1925. gfs2_rgrp_ondisk2lvb(rgd->rd_rgl, rgd->rd_bits[0].bi_bh->b_data);
  1926. /* Directories keep their data in the metadata address space */
  1927. if (meta || ip->i_depth)
  1928. gfs2_meta_wipe(ip, bstart, blen);
  1929. }
  1930. /**
  1931. * gfs2_free_meta - free a contiguous run of data block(s)
  1932. * @ip: the inode these blocks are being freed from
  1933. * @bstart: first block of a run of contiguous blocks
  1934. * @blen: the length of the block run
  1935. *
  1936. */
  1937. void gfs2_free_meta(struct gfs2_inode *ip, u64 bstart, u32 blen)
  1938. {
  1939. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  1940. __gfs2_free_blocks(ip, bstart, blen, 1);
  1941. gfs2_statfs_change(sdp, 0, +blen, 0);
  1942. gfs2_quota_change(ip, -(s64)blen, ip->i_inode.i_uid, ip->i_inode.i_gid);
  1943. }
  1944. void gfs2_unlink_di(struct inode *inode)
  1945. {
  1946. struct gfs2_inode *ip = GFS2_I(inode);
  1947. struct gfs2_sbd *sdp = GFS2_SB(inode);
  1948. struct gfs2_rgrpd *rgd;
  1949. u64 blkno = ip->i_no_addr;
  1950. rgd = rgblk_free(sdp, blkno, 1, GFS2_BLKST_UNLINKED);
  1951. if (!rgd)
  1952. return;
  1953. trace_gfs2_block_alloc(ip, rgd, blkno, 1, GFS2_BLKST_UNLINKED);
  1954. gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
  1955. gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
  1956. gfs2_rgrp_ondisk2lvb(rgd->rd_rgl, rgd->rd_bits[0].bi_bh->b_data);
  1957. update_rgrp_lvb_unlinked(rgd, 1);
  1958. }
  1959. static void gfs2_free_uninit_di(struct gfs2_rgrpd *rgd, u64 blkno)
  1960. {
  1961. struct gfs2_sbd *sdp = rgd->rd_sbd;
  1962. struct gfs2_rgrpd *tmp_rgd;
  1963. tmp_rgd = rgblk_free(sdp, blkno, 1, GFS2_BLKST_FREE);
  1964. if (!tmp_rgd)
  1965. return;
  1966. gfs2_assert_withdraw(sdp, rgd == tmp_rgd);
  1967. if (!rgd->rd_dinodes)
  1968. gfs2_consist_rgrpd(rgd);
  1969. rgd->rd_dinodes--;
  1970. rgd->rd_free++;
  1971. gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
  1972. gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
  1973. gfs2_rgrp_ondisk2lvb(rgd->rd_rgl, rgd->rd_bits[0].bi_bh->b_data);
  1974. update_rgrp_lvb_unlinked(rgd, -1);
  1975. gfs2_statfs_change(sdp, 0, +1, -1);
  1976. }
  1977. void gfs2_free_di(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip)
  1978. {
  1979. gfs2_free_uninit_di(rgd, ip->i_no_addr);
  1980. trace_gfs2_block_alloc(ip, rgd, ip->i_no_addr, 1, GFS2_BLKST_FREE);
  1981. gfs2_quota_change(ip, -1, ip->i_inode.i_uid, ip->i_inode.i_gid);
  1982. gfs2_meta_wipe(ip, ip->i_no_addr, 1);
  1983. }
  1984. /**
  1985. * gfs2_check_blk_type - Check the type of a block
  1986. * @sdp: The superblock
  1987. * @no_addr: The block number to check
  1988. * @type: The block type we are looking for
  1989. *
  1990. * Returns: 0 if the block type matches the expected type
  1991. * -ESTALE if it doesn't match
  1992. * or -ve errno if something went wrong while checking
  1993. */
  1994. int gfs2_check_blk_type(struct gfs2_sbd *sdp, u64 no_addr, unsigned int type)
  1995. {
  1996. struct gfs2_rgrpd *rgd;
  1997. struct gfs2_holder rgd_gh;
  1998. int error = -EINVAL;
  1999. rgd = gfs2_blk2rgrpd(sdp, no_addr, 1);
  2000. if (!rgd)
  2001. goto fail;
  2002. error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_SHARED, 0, &rgd_gh);
  2003. if (error)
  2004. goto fail;
  2005. if (gfs2_get_block_type(rgd, no_addr) != type)
  2006. error = -ESTALE;
  2007. gfs2_glock_dq_uninit(&rgd_gh);
  2008. fail:
  2009. return error;
  2010. }
  2011. /**
  2012. * gfs2_rlist_add - add a RG to a list of RGs
  2013. * @ip: the inode
  2014. * @rlist: the list of resource groups
  2015. * @block: the block
  2016. *
  2017. * Figure out what RG a block belongs to and add that RG to the list
  2018. *
  2019. * FIXME: Don't use NOFAIL
  2020. *
  2021. */
  2022. void gfs2_rlist_add(struct gfs2_inode *ip, struct gfs2_rgrp_list *rlist,
  2023. u64 block)
  2024. {
  2025. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  2026. struct gfs2_rgrpd *rgd;
  2027. struct gfs2_rgrpd **tmp;
  2028. unsigned int new_space;
  2029. unsigned int x;
  2030. if (gfs2_assert_warn(sdp, !rlist->rl_ghs))
  2031. return;
  2032. if (ip->i_rgd && rgrp_contains_block(ip->i_rgd, block))
  2033. rgd = ip->i_rgd;
  2034. else
  2035. rgd = gfs2_blk2rgrpd(sdp, block, 1);
  2036. if (!rgd) {
  2037. fs_err(sdp, "rlist_add: no rgrp for block %llu\n", (unsigned long long)block);
  2038. return;
  2039. }
  2040. ip->i_rgd = rgd;
  2041. for (x = 0; x < rlist->rl_rgrps; x++)
  2042. if (rlist->rl_rgd[x] == rgd)
  2043. return;
  2044. if (rlist->rl_rgrps == rlist->rl_space) {
  2045. new_space = rlist->rl_space + 10;
  2046. tmp = kcalloc(new_space, sizeof(struct gfs2_rgrpd *),
  2047. GFP_NOFS | __GFP_NOFAIL);
  2048. if (rlist->rl_rgd) {
  2049. memcpy(tmp, rlist->rl_rgd,
  2050. rlist->rl_space * sizeof(struct gfs2_rgrpd *));
  2051. kfree(rlist->rl_rgd);
  2052. }
  2053. rlist->rl_space = new_space;
  2054. rlist->rl_rgd = tmp;
  2055. }
  2056. rlist->rl_rgd[rlist->rl_rgrps++] = rgd;
  2057. }
  2058. /**
  2059. * gfs2_rlist_alloc - all RGs have been added to the rlist, now allocate
  2060. * and initialize an array of glock holders for them
  2061. * @rlist: the list of resource groups
  2062. * @state: the lock state to acquire the RG lock in
  2063. *
  2064. * FIXME: Don't use NOFAIL
  2065. *
  2066. */
  2067. void gfs2_rlist_alloc(struct gfs2_rgrp_list *rlist, unsigned int state)
  2068. {
  2069. unsigned int x;
  2070. rlist->rl_ghs = kcalloc(rlist->rl_rgrps, sizeof(struct gfs2_holder),
  2071. GFP_NOFS | __GFP_NOFAIL);
  2072. for (x = 0; x < rlist->rl_rgrps; x++)
  2073. gfs2_holder_init(rlist->rl_rgd[x]->rd_gl,
  2074. state, 0,
  2075. &rlist->rl_ghs[x]);
  2076. }
  2077. /**
  2078. * gfs2_rlist_free - free a resource group list
  2079. * @list: the list of resource groups
  2080. *
  2081. */
  2082. void gfs2_rlist_free(struct gfs2_rgrp_list *rlist)
  2083. {
  2084. unsigned int x;
  2085. kfree(rlist->rl_rgd);
  2086. if (rlist->rl_ghs) {
  2087. for (x = 0; x < rlist->rl_rgrps; x++)
  2088. gfs2_holder_uninit(&rlist->rl_ghs[x]);
  2089. kfree(rlist->rl_ghs);
  2090. rlist->rl_ghs = NULL;
  2091. }
  2092. }