disk-io.c 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592
  1. /*
  2. * Copyright (C) 2007 Oracle. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public
  6. * License v2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public
  14. * License along with this program; if not, write to the
  15. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16. * Boston, MA 021110-1307, USA.
  17. */
  18. #include <linux/fs.h>
  19. #include <linux/blkdev.h>
  20. #include <linux/scatterlist.h>
  21. #include <linux/swap.h>
  22. #include <linux/radix-tree.h>
  23. #include <linux/writeback.h>
  24. #include <linux/buffer_head.h>
  25. #include <linux/workqueue.h>
  26. #include <linux/kthread.h>
  27. #include <linux/freezer.h>
  28. #include <linux/crc32c.h>
  29. #include "compat.h"
  30. #include "ctree.h"
  31. #include "disk-io.h"
  32. #include "transaction.h"
  33. #include "btrfs_inode.h"
  34. #include "volumes.h"
  35. #include "print-tree.h"
  36. #include "async-thread.h"
  37. #include "locking.h"
  38. #include "tree-log.h"
  39. #include "free-space-cache.h"
  40. static struct extent_io_ops btree_extent_io_ops;
  41. static void end_workqueue_fn(struct btrfs_work *work);
  42. static void free_fs_root(struct btrfs_root *root);
  43. static atomic_t btrfs_bdi_num = ATOMIC_INIT(0);
  44. /*
  45. * end_io_wq structs are used to do processing in task context when an IO is
  46. * complete. This is used during reads to verify checksums, and it is used
  47. * by writes to insert metadata for new file extents after IO is complete.
  48. */
  49. struct end_io_wq {
  50. struct bio *bio;
  51. bio_end_io_t *end_io;
  52. void *private;
  53. struct btrfs_fs_info *info;
  54. int error;
  55. int metadata;
  56. struct list_head list;
  57. struct btrfs_work work;
  58. };
  59. /*
  60. * async submit bios are used to offload expensive checksumming
  61. * onto the worker threads. They checksum file and metadata bios
  62. * just before they are sent down the IO stack.
  63. */
  64. struct async_submit_bio {
  65. struct inode *inode;
  66. struct bio *bio;
  67. struct list_head list;
  68. extent_submit_bio_hook_t *submit_bio_start;
  69. extent_submit_bio_hook_t *submit_bio_done;
  70. int rw;
  71. int mirror_num;
  72. unsigned long bio_flags;
  73. struct btrfs_work work;
  74. };
  75. /* These are used to set the lockdep class on the extent buffer locks.
  76. * The class is set by the readpage_end_io_hook after the buffer has
  77. * passed csum validation but before the pages are unlocked.
  78. *
  79. * The lockdep class is also set by btrfs_init_new_buffer on freshly
  80. * allocated blocks.
  81. *
  82. * The class is based on the level in the tree block, which allows lockdep
  83. * to know that lower nodes nest inside the locks of higher nodes.
  84. *
  85. * We also add a check to make sure the highest level of the tree is
  86. * the same as our lockdep setup here. If BTRFS_MAX_LEVEL changes, this
  87. * code needs update as well.
  88. */
  89. #ifdef CONFIG_DEBUG_LOCK_ALLOC
  90. # if BTRFS_MAX_LEVEL != 8
  91. # error
  92. # endif
  93. static struct lock_class_key btrfs_eb_class[BTRFS_MAX_LEVEL + 1];
  94. static const char *btrfs_eb_name[BTRFS_MAX_LEVEL + 1] = {
  95. /* leaf */
  96. "btrfs-extent-00",
  97. "btrfs-extent-01",
  98. "btrfs-extent-02",
  99. "btrfs-extent-03",
  100. "btrfs-extent-04",
  101. "btrfs-extent-05",
  102. "btrfs-extent-06",
  103. "btrfs-extent-07",
  104. /* highest possible level */
  105. "btrfs-extent-08",
  106. };
  107. #endif
  108. /*
  109. * extents on the btree inode are pretty simple, there's one extent
  110. * that covers the entire device
  111. */
  112. static struct extent_map *btree_get_extent(struct inode *inode,
  113. struct page *page, size_t page_offset, u64 start, u64 len,
  114. int create)
  115. {
  116. struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
  117. struct extent_map *em;
  118. int ret;
  119. read_lock(&em_tree->lock);
  120. em = lookup_extent_mapping(em_tree, start, len);
  121. if (em) {
  122. em->bdev =
  123. BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
  124. read_unlock(&em_tree->lock);
  125. goto out;
  126. }
  127. read_unlock(&em_tree->lock);
  128. em = alloc_extent_map(GFP_NOFS);
  129. if (!em) {
  130. em = ERR_PTR(-ENOMEM);
  131. goto out;
  132. }
  133. em->start = 0;
  134. em->len = (u64)-1;
  135. em->block_len = (u64)-1;
  136. em->block_start = 0;
  137. em->bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
  138. write_lock(&em_tree->lock);
  139. ret = add_extent_mapping(em_tree, em);
  140. if (ret == -EEXIST) {
  141. u64 failed_start = em->start;
  142. u64 failed_len = em->len;
  143. free_extent_map(em);
  144. em = lookup_extent_mapping(em_tree, start, len);
  145. if (em) {
  146. ret = 0;
  147. } else {
  148. em = lookup_extent_mapping(em_tree, failed_start,
  149. failed_len);
  150. ret = -EIO;
  151. }
  152. } else if (ret) {
  153. free_extent_map(em);
  154. em = NULL;
  155. }
  156. write_unlock(&em_tree->lock);
  157. if (ret)
  158. em = ERR_PTR(ret);
  159. out:
  160. return em;
  161. }
  162. u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
  163. {
  164. return crc32c(seed, data, len);
  165. }
  166. void btrfs_csum_final(u32 crc, char *result)
  167. {
  168. *(__le32 *)result = ~cpu_to_le32(crc);
  169. }
  170. /*
  171. * compute the csum for a btree block, and either verify it or write it
  172. * into the csum field of the block.
  173. */
  174. static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
  175. int verify)
  176. {
  177. u16 csum_size =
  178. btrfs_super_csum_size(&root->fs_info->super_copy);
  179. char *result = NULL;
  180. unsigned long len;
  181. unsigned long cur_len;
  182. unsigned long offset = BTRFS_CSUM_SIZE;
  183. char *map_token = NULL;
  184. char *kaddr;
  185. unsigned long map_start;
  186. unsigned long map_len;
  187. int err;
  188. u32 crc = ~(u32)0;
  189. unsigned long inline_result;
  190. len = buf->len - offset;
  191. while (len > 0) {
  192. err = map_private_extent_buffer(buf, offset, 32,
  193. &map_token, &kaddr,
  194. &map_start, &map_len, KM_USER0);
  195. if (err)
  196. return 1;
  197. cur_len = min(len, map_len - (offset - map_start));
  198. crc = btrfs_csum_data(root, kaddr + offset - map_start,
  199. crc, cur_len);
  200. len -= cur_len;
  201. offset += cur_len;
  202. unmap_extent_buffer(buf, map_token, KM_USER0);
  203. }
  204. if (csum_size > sizeof(inline_result)) {
  205. result = kzalloc(csum_size * sizeof(char), GFP_NOFS);
  206. if (!result)
  207. return 1;
  208. } else {
  209. result = (char *)&inline_result;
  210. }
  211. btrfs_csum_final(crc, result);
  212. if (verify) {
  213. if (memcmp_extent_buffer(buf, result, 0, csum_size)) {
  214. u32 val;
  215. u32 found = 0;
  216. memcpy(&found, result, csum_size);
  217. read_extent_buffer(buf, &val, 0, csum_size);
  218. if (printk_ratelimit()) {
  219. printk(KERN_INFO "btrfs: %s checksum verify "
  220. "failed on %llu wanted %X found %X "
  221. "level %d\n",
  222. root->fs_info->sb->s_id,
  223. (unsigned long long)buf->start, val, found,
  224. btrfs_header_level(buf));
  225. }
  226. if (result != (char *)&inline_result)
  227. kfree(result);
  228. return 1;
  229. }
  230. } else {
  231. write_extent_buffer(buf, result, 0, csum_size);
  232. }
  233. if (result != (char *)&inline_result)
  234. kfree(result);
  235. return 0;
  236. }
  237. /*
  238. * we can't consider a given block up to date unless the transid of the
  239. * block matches the transid in the parent node's pointer. This is how we
  240. * detect blocks that either didn't get written at all or got written
  241. * in the wrong place.
  242. */
  243. static int verify_parent_transid(struct extent_io_tree *io_tree,
  244. struct extent_buffer *eb, u64 parent_transid)
  245. {
  246. int ret;
  247. if (!parent_transid || btrfs_header_generation(eb) == parent_transid)
  248. return 0;
  249. lock_extent(io_tree, eb->start, eb->start + eb->len - 1, GFP_NOFS);
  250. if (extent_buffer_uptodate(io_tree, eb) &&
  251. btrfs_header_generation(eb) == parent_transid) {
  252. ret = 0;
  253. goto out;
  254. }
  255. if (printk_ratelimit()) {
  256. printk("parent transid verify failed on %llu wanted %llu "
  257. "found %llu\n",
  258. (unsigned long long)eb->start,
  259. (unsigned long long)parent_transid,
  260. (unsigned long long)btrfs_header_generation(eb));
  261. }
  262. ret = 1;
  263. clear_extent_buffer_uptodate(io_tree, eb);
  264. out:
  265. unlock_extent(io_tree, eb->start, eb->start + eb->len - 1,
  266. GFP_NOFS);
  267. return ret;
  268. }
  269. /*
  270. * helper to read a given tree block, doing retries as required when
  271. * the checksums don't match and we have alternate mirrors to try.
  272. */
  273. static int btree_read_extent_buffer_pages(struct btrfs_root *root,
  274. struct extent_buffer *eb,
  275. u64 start, u64 parent_transid)
  276. {
  277. struct extent_io_tree *io_tree;
  278. int ret;
  279. int num_copies = 0;
  280. int mirror_num = 0;
  281. io_tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
  282. while (1) {
  283. ret = read_extent_buffer_pages(io_tree, eb, start, 1,
  284. btree_get_extent, mirror_num);
  285. if (!ret &&
  286. !verify_parent_transid(io_tree, eb, parent_transid))
  287. return ret;
  288. num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
  289. eb->start, eb->len);
  290. if (num_copies == 1)
  291. return ret;
  292. mirror_num++;
  293. if (mirror_num > num_copies)
  294. return ret;
  295. }
  296. return -EIO;
  297. }
  298. /*
  299. * checksum a dirty tree block before IO. This has extra checks to make sure
  300. * we only fill in the checksum field in the first page of a multi-page block
  301. */
  302. static int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
  303. {
  304. struct extent_io_tree *tree;
  305. u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
  306. u64 found_start;
  307. int found_level;
  308. unsigned long len;
  309. struct extent_buffer *eb;
  310. int ret;
  311. tree = &BTRFS_I(page->mapping->host)->io_tree;
  312. if (page->private == EXTENT_PAGE_PRIVATE)
  313. goto out;
  314. if (!page->private)
  315. goto out;
  316. len = page->private >> 2;
  317. WARN_ON(len == 0);
  318. eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
  319. ret = btree_read_extent_buffer_pages(root, eb, start + PAGE_CACHE_SIZE,
  320. btrfs_header_generation(eb));
  321. BUG_ON(ret);
  322. found_start = btrfs_header_bytenr(eb);
  323. if (found_start != start) {
  324. WARN_ON(1);
  325. goto err;
  326. }
  327. if (eb->first_page != page) {
  328. WARN_ON(1);
  329. goto err;
  330. }
  331. if (!PageUptodate(page)) {
  332. WARN_ON(1);
  333. goto err;
  334. }
  335. found_level = btrfs_header_level(eb);
  336. csum_tree_block(root, eb, 0);
  337. err:
  338. free_extent_buffer(eb);
  339. out:
  340. return 0;
  341. }
  342. static int check_tree_block_fsid(struct btrfs_root *root,
  343. struct extent_buffer *eb)
  344. {
  345. struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
  346. u8 fsid[BTRFS_UUID_SIZE];
  347. int ret = 1;
  348. read_extent_buffer(eb, fsid, (unsigned long)btrfs_header_fsid(eb),
  349. BTRFS_FSID_SIZE);
  350. while (fs_devices) {
  351. if (!memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE)) {
  352. ret = 0;
  353. break;
  354. }
  355. fs_devices = fs_devices->seed;
  356. }
  357. return ret;
  358. }
  359. #ifdef CONFIG_DEBUG_LOCK_ALLOC
  360. void btrfs_set_buffer_lockdep_class(struct extent_buffer *eb, int level)
  361. {
  362. lockdep_set_class_and_name(&eb->lock,
  363. &btrfs_eb_class[level],
  364. btrfs_eb_name[level]);
  365. }
  366. #endif
  367. static int btree_readpage_end_io_hook(struct page *page, u64 start, u64 end,
  368. struct extent_state *state)
  369. {
  370. struct extent_io_tree *tree;
  371. u64 found_start;
  372. int found_level;
  373. unsigned long len;
  374. struct extent_buffer *eb;
  375. struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
  376. int ret = 0;
  377. tree = &BTRFS_I(page->mapping->host)->io_tree;
  378. if (page->private == EXTENT_PAGE_PRIVATE)
  379. goto out;
  380. if (!page->private)
  381. goto out;
  382. len = page->private >> 2;
  383. WARN_ON(len == 0);
  384. eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
  385. found_start = btrfs_header_bytenr(eb);
  386. if (found_start != start) {
  387. if (printk_ratelimit()) {
  388. printk(KERN_INFO "btrfs bad tree block start "
  389. "%llu %llu\n",
  390. (unsigned long long)found_start,
  391. (unsigned long long)eb->start);
  392. }
  393. ret = -EIO;
  394. goto err;
  395. }
  396. if (eb->first_page != page) {
  397. printk(KERN_INFO "btrfs bad first page %lu %lu\n",
  398. eb->first_page->index, page->index);
  399. WARN_ON(1);
  400. ret = -EIO;
  401. goto err;
  402. }
  403. if (check_tree_block_fsid(root, eb)) {
  404. if (printk_ratelimit()) {
  405. printk(KERN_INFO "btrfs bad fsid on block %llu\n",
  406. (unsigned long long)eb->start);
  407. }
  408. ret = -EIO;
  409. goto err;
  410. }
  411. found_level = btrfs_header_level(eb);
  412. btrfs_set_buffer_lockdep_class(eb, found_level);
  413. ret = csum_tree_block(root, eb, 1);
  414. if (ret)
  415. ret = -EIO;
  416. end = min_t(u64, eb->len, PAGE_CACHE_SIZE);
  417. end = eb->start + end - 1;
  418. err:
  419. free_extent_buffer(eb);
  420. out:
  421. return ret;
  422. }
  423. static void end_workqueue_bio(struct bio *bio, int err)
  424. {
  425. struct end_io_wq *end_io_wq = bio->bi_private;
  426. struct btrfs_fs_info *fs_info;
  427. fs_info = end_io_wq->info;
  428. end_io_wq->error = err;
  429. end_io_wq->work.func = end_workqueue_fn;
  430. end_io_wq->work.flags = 0;
  431. if (bio->bi_rw & (1 << BIO_RW)) {
  432. if (end_io_wq->metadata)
  433. btrfs_queue_worker(&fs_info->endio_meta_write_workers,
  434. &end_io_wq->work);
  435. else
  436. btrfs_queue_worker(&fs_info->endio_write_workers,
  437. &end_io_wq->work);
  438. } else {
  439. if (end_io_wq->metadata)
  440. btrfs_queue_worker(&fs_info->endio_meta_workers,
  441. &end_io_wq->work);
  442. else
  443. btrfs_queue_worker(&fs_info->endio_workers,
  444. &end_io_wq->work);
  445. }
  446. }
  447. int btrfs_bio_wq_end_io(struct btrfs_fs_info *info, struct bio *bio,
  448. int metadata)
  449. {
  450. struct end_io_wq *end_io_wq;
  451. end_io_wq = kmalloc(sizeof(*end_io_wq), GFP_NOFS);
  452. if (!end_io_wq)
  453. return -ENOMEM;
  454. end_io_wq->private = bio->bi_private;
  455. end_io_wq->end_io = bio->bi_end_io;
  456. end_io_wq->info = info;
  457. end_io_wq->error = 0;
  458. end_io_wq->bio = bio;
  459. end_io_wq->metadata = metadata;
  460. bio->bi_private = end_io_wq;
  461. bio->bi_end_io = end_workqueue_bio;
  462. return 0;
  463. }
  464. unsigned long btrfs_async_submit_limit(struct btrfs_fs_info *info)
  465. {
  466. unsigned long limit = min_t(unsigned long,
  467. info->workers.max_workers,
  468. info->fs_devices->open_devices);
  469. return 256 * limit;
  470. }
  471. int btrfs_congested_async(struct btrfs_fs_info *info, int iodone)
  472. {
  473. return atomic_read(&info->nr_async_bios) >
  474. btrfs_async_submit_limit(info);
  475. }
  476. static void run_one_async_start(struct btrfs_work *work)
  477. {
  478. struct btrfs_fs_info *fs_info;
  479. struct async_submit_bio *async;
  480. async = container_of(work, struct async_submit_bio, work);
  481. fs_info = BTRFS_I(async->inode)->root->fs_info;
  482. async->submit_bio_start(async->inode, async->rw, async->bio,
  483. async->mirror_num, async->bio_flags);
  484. }
  485. static void run_one_async_done(struct btrfs_work *work)
  486. {
  487. struct btrfs_fs_info *fs_info;
  488. struct async_submit_bio *async;
  489. int limit;
  490. async = container_of(work, struct async_submit_bio, work);
  491. fs_info = BTRFS_I(async->inode)->root->fs_info;
  492. limit = btrfs_async_submit_limit(fs_info);
  493. limit = limit * 2 / 3;
  494. atomic_dec(&fs_info->nr_async_submits);
  495. if (atomic_read(&fs_info->nr_async_submits) < limit &&
  496. waitqueue_active(&fs_info->async_submit_wait))
  497. wake_up(&fs_info->async_submit_wait);
  498. async->submit_bio_done(async->inode, async->rw, async->bio,
  499. async->mirror_num, async->bio_flags);
  500. }
  501. static void run_one_async_free(struct btrfs_work *work)
  502. {
  503. struct async_submit_bio *async;
  504. async = container_of(work, struct async_submit_bio, work);
  505. kfree(async);
  506. }
  507. int btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct inode *inode,
  508. int rw, struct bio *bio, int mirror_num,
  509. unsigned long bio_flags,
  510. extent_submit_bio_hook_t *submit_bio_start,
  511. extent_submit_bio_hook_t *submit_bio_done)
  512. {
  513. struct async_submit_bio *async;
  514. async = kmalloc(sizeof(*async), GFP_NOFS);
  515. if (!async)
  516. return -ENOMEM;
  517. async->inode = inode;
  518. async->rw = rw;
  519. async->bio = bio;
  520. async->mirror_num = mirror_num;
  521. async->submit_bio_start = submit_bio_start;
  522. async->submit_bio_done = submit_bio_done;
  523. async->work.func = run_one_async_start;
  524. async->work.ordered_func = run_one_async_done;
  525. async->work.ordered_free = run_one_async_free;
  526. async->work.flags = 0;
  527. async->bio_flags = bio_flags;
  528. atomic_inc(&fs_info->nr_async_submits);
  529. if (rw & (1 << BIO_RW_SYNCIO))
  530. btrfs_set_work_high_prio(&async->work);
  531. btrfs_queue_worker(&fs_info->workers, &async->work);
  532. while (atomic_read(&fs_info->async_submit_draining) &&
  533. atomic_read(&fs_info->nr_async_submits)) {
  534. wait_event(fs_info->async_submit_wait,
  535. (atomic_read(&fs_info->nr_async_submits) == 0));
  536. }
  537. return 0;
  538. }
  539. static int btree_csum_one_bio(struct bio *bio)
  540. {
  541. struct bio_vec *bvec = bio->bi_io_vec;
  542. int bio_index = 0;
  543. struct btrfs_root *root;
  544. WARN_ON(bio->bi_vcnt <= 0);
  545. while (bio_index < bio->bi_vcnt) {
  546. root = BTRFS_I(bvec->bv_page->mapping->host)->root;
  547. csum_dirty_buffer(root, bvec->bv_page);
  548. bio_index++;
  549. bvec++;
  550. }
  551. return 0;
  552. }
  553. static int __btree_submit_bio_start(struct inode *inode, int rw,
  554. struct bio *bio, int mirror_num,
  555. unsigned long bio_flags)
  556. {
  557. /*
  558. * when we're called for a write, we're already in the async
  559. * submission context. Just jump into btrfs_map_bio
  560. */
  561. btree_csum_one_bio(bio);
  562. return 0;
  563. }
  564. static int __btree_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
  565. int mirror_num, unsigned long bio_flags)
  566. {
  567. /*
  568. * when we're called for a write, we're already in the async
  569. * submission context. Just jump into btrfs_map_bio
  570. */
  571. return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, mirror_num, 1);
  572. }
  573. static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
  574. int mirror_num, unsigned long bio_flags)
  575. {
  576. int ret;
  577. ret = btrfs_bio_wq_end_io(BTRFS_I(inode)->root->fs_info,
  578. bio, 1);
  579. BUG_ON(ret);
  580. if (!(rw & (1 << BIO_RW))) {
  581. /*
  582. * called for a read, do the setup so that checksum validation
  583. * can happen in the async kernel threads
  584. */
  585. return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio,
  586. mirror_num, 0);
  587. }
  588. /*
  589. * kthread helpers are used to submit writes so that checksumming
  590. * can happen in parallel across all CPUs
  591. */
  592. return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
  593. inode, rw, bio, mirror_num, 0,
  594. __btree_submit_bio_start,
  595. __btree_submit_bio_done);
  596. }
  597. static int btree_writepage(struct page *page, struct writeback_control *wbc)
  598. {
  599. struct extent_io_tree *tree;
  600. struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
  601. struct extent_buffer *eb;
  602. int was_dirty;
  603. tree = &BTRFS_I(page->mapping->host)->io_tree;
  604. if (!(current->flags & PF_MEMALLOC)) {
  605. return extent_write_full_page(tree, page,
  606. btree_get_extent, wbc);
  607. }
  608. redirty_page_for_writepage(wbc, page);
  609. eb = btrfs_find_tree_block(root, page_offset(page),
  610. PAGE_CACHE_SIZE);
  611. WARN_ON(!eb);
  612. was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
  613. if (!was_dirty) {
  614. spin_lock(&root->fs_info->delalloc_lock);
  615. root->fs_info->dirty_metadata_bytes += PAGE_CACHE_SIZE;
  616. spin_unlock(&root->fs_info->delalloc_lock);
  617. }
  618. free_extent_buffer(eb);
  619. unlock_page(page);
  620. return 0;
  621. }
  622. static int btree_writepages(struct address_space *mapping,
  623. struct writeback_control *wbc)
  624. {
  625. struct extent_io_tree *tree;
  626. tree = &BTRFS_I(mapping->host)->io_tree;
  627. if (wbc->sync_mode == WB_SYNC_NONE) {
  628. struct btrfs_root *root = BTRFS_I(mapping->host)->root;
  629. u64 num_dirty;
  630. unsigned long thresh = 32 * 1024 * 1024;
  631. if (wbc->for_kupdate)
  632. return 0;
  633. /* this is a bit racy, but that's ok */
  634. num_dirty = root->fs_info->dirty_metadata_bytes;
  635. if (num_dirty < thresh)
  636. return 0;
  637. }
  638. return extent_writepages(tree, mapping, btree_get_extent, wbc);
  639. }
  640. static int btree_readpage(struct file *file, struct page *page)
  641. {
  642. struct extent_io_tree *tree;
  643. tree = &BTRFS_I(page->mapping->host)->io_tree;
  644. return extent_read_full_page(tree, page, btree_get_extent);
  645. }
  646. static int btree_releasepage(struct page *page, gfp_t gfp_flags)
  647. {
  648. struct extent_io_tree *tree;
  649. struct extent_map_tree *map;
  650. int ret;
  651. if (PageWriteback(page) || PageDirty(page))
  652. return 0;
  653. tree = &BTRFS_I(page->mapping->host)->io_tree;
  654. map = &BTRFS_I(page->mapping->host)->extent_tree;
  655. ret = try_release_extent_state(map, tree, page, gfp_flags);
  656. if (!ret)
  657. return 0;
  658. ret = try_release_extent_buffer(tree, page);
  659. if (ret == 1) {
  660. ClearPagePrivate(page);
  661. set_page_private(page, 0);
  662. page_cache_release(page);
  663. }
  664. return ret;
  665. }
  666. static void btree_invalidatepage(struct page *page, unsigned long offset)
  667. {
  668. struct extent_io_tree *tree;
  669. tree = &BTRFS_I(page->mapping->host)->io_tree;
  670. extent_invalidatepage(tree, page, offset);
  671. btree_releasepage(page, GFP_NOFS);
  672. if (PagePrivate(page)) {
  673. printk(KERN_WARNING "btrfs warning page private not zero "
  674. "on page %llu\n", (unsigned long long)page_offset(page));
  675. ClearPagePrivate(page);
  676. set_page_private(page, 0);
  677. page_cache_release(page);
  678. }
  679. }
  680. static struct address_space_operations btree_aops = {
  681. .readpage = btree_readpage,
  682. .writepage = btree_writepage,
  683. .writepages = btree_writepages,
  684. .releasepage = btree_releasepage,
  685. .invalidatepage = btree_invalidatepage,
  686. .sync_page = block_sync_page,
  687. };
  688. int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize,
  689. u64 parent_transid)
  690. {
  691. struct extent_buffer *buf = NULL;
  692. struct inode *btree_inode = root->fs_info->btree_inode;
  693. int ret = 0;
  694. buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
  695. if (!buf)
  696. return 0;
  697. read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
  698. buf, 0, 0, btree_get_extent, 0);
  699. free_extent_buffer(buf);
  700. return ret;
  701. }
  702. struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
  703. u64 bytenr, u32 blocksize)
  704. {
  705. struct inode *btree_inode = root->fs_info->btree_inode;
  706. struct extent_buffer *eb;
  707. eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
  708. bytenr, blocksize, GFP_NOFS);
  709. return eb;
  710. }
  711. struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
  712. u64 bytenr, u32 blocksize)
  713. {
  714. struct inode *btree_inode = root->fs_info->btree_inode;
  715. struct extent_buffer *eb;
  716. eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
  717. bytenr, blocksize, NULL, GFP_NOFS);
  718. return eb;
  719. }
  720. int btrfs_write_tree_block(struct extent_buffer *buf)
  721. {
  722. return btrfs_fdatawrite_range(buf->first_page->mapping, buf->start,
  723. buf->start + buf->len - 1, WB_SYNC_ALL);
  724. }
  725. int btrfs_wait_tree_block_writeback(struct extent_buffer *buf)
  726. {
  727. return btrfs_wait_on_page_writeback_range(buf->first_page->mapping,
  728. buf->start >> PAGE_CACHE_SHIFT,
  729. (buf->start + buf->len - 1) >>
  730. PAGE_CACHE_SHIFT);
  731. }
  732. struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
  733. u32 blocksize, u64 parent_transid)
  734. {
  735. struct extent_buffer *buf = NULL;
  736. struct inode *btree_inode = root->fs_info->btree_inode;
  737. struct extent_io_tree *io_tree;
  738. int ret;
  739. io_tree = &BTRFS_I(btree_inode)->io_tree;
  740. buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
  741. if (!buf)
  742. return NULL;
  743. ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
  744. if (ret == 0)
  745. set_bit(EXTENT_BUFFER_UPTODATE, &buf->bflags);
  746. return buf;
  747. }
  748. int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
  749. struct extent_buffer *buf)
  750. {
  751. struct inode *btree_inode = root->fs_info->btree_inode;
  752. if (btrfs_header_generation(buf) ==
  753. root->fs_info->running_transaction->transid) {
  754. btrfs_assert_tree_locked(buf);
  755. if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)) {
  756. spin_lock(&root->fs_info->delalloc_lock);
  757. if (root->fs_info->dirty_metadata_bytes >= buf->len)
  758. root->fs_info->dirty_metadata_bytes -= buf->len;
  759. else
  760. WARN_ON(1);
  761. spin_unlock(&root->fs_info->delalloc_lock);
  762. }
  763. /* ugh, clear_extent_buffer_dirty needs to lock the page */
  764. btrfs_set_lock_blocking(buf);
  765. clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
  766. buf);
  767. }
  768. return 0;
  769. }
  770. static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
  771. u32 stripesize, struct btrfs_root *root,
  772. struct btrfs_fs_info *fs_info,
  773. u64 objectid)
  774. {
  775. root->node = NULL;
  776. root->commit_root = NULL;
  777. root->sectorsize = sectorsize;
  778. root->nodesize = nodesize;
  779. root->leafsize = leafsize;
  780. root->stripesize = stripesize;
  781. root->ref_cows = 0;
  782. root->track_dirty = 0;
  783. root->fs_info = fs_info;
  784. root->objectid = objectid;
  785. root->last_trans = 0;
  786. root->highest_objectid = 0;
  787. root->name = NULL;
  788. root->in_sysfs = 0;
  789. root->inode_tree.rb_node = NULL;
  790. INIT_LIST_HEAD(&root->dirty_list);
  791. INIT_LIST_HEAD(&root->orphan_list);
  792. INIT_LIST_HEAD(&root->root_list);
  793. spin_lock_init(&root->node_lock);
  794. spin_lock_init(&root->list_lock);
  795. spin_lock_init(&root->inode_lock);
  796. mutex_init(&root->objectid_mutex);
  797. mutex_init(&root->log_mutex);
  798. init_waitqueue_head(&root->log_writer_wait);
  799. init_waitqueue_head(&root->log_commit_wait[0]);
  800. init_waitqueue_head(&root->log_commit_wait[1]);
  801. atomic_set(&root->log_commit[0], 0);
  802. atomic_set(&root->log_commit[1], 0);
  803. atomic_set(&root->log_writers, 0);
  804. root->log_batch = 0;
  805. root->log_transid = 0;
  806. extent_io_tree_init(&root->dirty_log_pages,
  807. fs_info->btree_inode->i_mapping, GFP_NOFS);
  808. memset(&root->root_key, 0, sizeof(root->root_key));
  809. memset(&root->root_item, 0, sizeof(root->root_item));
  810. memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
  811. memset(&root->root_kobj, 0, sizeof(root->root_kobj));
  812. root->defrag_trans_start = fs_info->generation;
  813. init_completion(&root->kobj_unregister);
  814. root->defrag_running = 0;
  815. root->defrag_level = 0;
  816. root->root_key.objectid = objectid;
  817. root->anon_super.s_root = NULL;
  818. root->anon_super.s_dev = 0;
  819. INIT_LIST_HEAD(&root->anon_super.s_list);
  820. INIT_LIST_HEAD(&root->anon_super.s_instances);
  821. init_rwsem(&root->anon_super.s_umount);
  822. return 0;
  823. }
  824. static int find_and_setup_root(struct btrfs_root *tree_root,
  825. struct btrfs_fs_info *fs_info,
  826. u64 objectid,
  827. struct btrfs_root *root)
  828. {
  829. int ret;
  830. u32 blocksize;
  831. u64 generation;
  832. __setup_root(tree_root->nodesize, tree_root->leafsize,
  833. tree_root->sectorsize, tree_root->stripesize,
  834. root, fs_info, objectid);
  835. ret = btrfs_find_last_root(tree_root, objectid,
  836. &root->root_item, &root->root_key);
  837. if (ret > 0)
  838. return -ENOENT;
  839. BUG_ON(ret);
  840. generation = btrfs_root_generation(&root->root_item);
  841. blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
  842. root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
  843. blocksize, generation);
  844. BUG_ON(!root->node);
  845. root->commit_root = btrfs_root_node(root);
  846. return 0;
  847. }
  848. int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
  849. struct btrfs_fs_info *fs_info)
  850. {
  851. struct extent_buffer *eb;
  852. struct btrfs_root *log_root_tree = fs_info->log_root_tree;
  853. u64 start = 0;
  854. u64 end = 0;
  855. int ret;
  856. if (!log_root_tree)
  857. return 0;
  858. while (1) {
  859. ret = find_first_extent_bit(&log_root_tree->dirty_log_pages,
  860. 0, &start, &end, EXTENT_DIRTY);
  861. if (ret)
  862. break;
  863. clear_extent_dirty(&log_root_tree->dirty_log_pages,
  864. start, end, GFP_NOFS);
  865. }
  866. eb = fs_info->log_root_tree->node;
  867. WARN_ON(btrfs_header_level(eb) != 0);
  868. WARN_ON(btrfs_header_nritems(eb) != 0);
  869. ret = btrfs_free_reserved_extent(fs_info->tree_root,
  870. eb->start, eb->len);
  871. BUG_ON(ret);
  872. free_extent_buffer(eb);
  873. kfree(fs_info->log_root_tree);
  874. fs_info->log_root_tree = NULL;
  875. return 0;
  876. }
  877. static struct btrfs_root *alloc_log_tree(struct btrfs_trans_handle *trans,
  878. struct btrfs_fs_info *fs_info)
  879. {
  880. struct btrfs_root *root;
  881. struct btrfs_root *tree_root = fs_info->tree_root;
  882. struct extent_buffer *leaf;
  883. root = kzalloc(sizeof(*root), GFP_NOFS);
  884. if (!root)
  885. return ERR_PTR(-ENOMEM);
  886. __setup_root(tree_root->nodesize, tree_root->leafsize,
  887. tree_root->sectorsize, tree_root->stripesize,
  888. root, fs_info, BTRFS_TREE_LOG_OBJECTID);
  889. root->root_key.objectid = BTRFS_TREE_LOG_OBJECTID;
  890. root->root_key.type = BTRFS_ROOT_ITEM_KEY;
  891. root->root_key.offset = BTRFS_TREE_LOG_OBJECTID;
  892. /*
  893. * log trees do not get reference counted because they go away
  894. * before a real commit is actually done. They do store pointers
  895. * to file data extents, and those reference counts still get
  896. * updated (along with back refs to the log tree).
  897. */
  898. root->ref_cows = 0;
  899. leaf = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
  900. BTRFS_TREE_LOG_OBJECTID, NULL, 0, 0, 0);
  901. if (IS_ERR(leaf)) {
  902. kfree(root);
  903. return ERR_CAST(leaf);
  904. }
  905. memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
  906. btrfs_set_header_bytenr(leaf, leaf->start);
  907. btrfs_set_header_generation(leaf, trans->transid);
  908. btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
  909. btrfs_set_header_owner(leaf, BTRFS_TREE_LOG_OBJECTID);
  910. root->node = leaf;
  911. write_extent_buffer(root->node, root->fs_info->fsid,
  912. (unsigned long)btrfs_header_fsid(root->node),
  913. BTRFS_FSID_SIZE);
  914. btrfs_mark_buffer_dirty(root->node);
  915. btrfs_tree_unlock(root->node);
  916. return root;
  917. }
  918. int btrfs_init_log_root_tree(struct btrfs_trans_handle *trans,
  919. struct btrfs_fs_info *fs_info)
  920. {
  921. struct btrfs_root *log_root;
  922. log_root = alloc_log_tree(trans, fs_info);
  923. if (IS_ERR(log_root))
  924. return PTR_ERR(log_root);
  925. WARN_ON(fs_info->log_root_tree);
  926. fs_info->log_root_tree = log_root;
  927. return 0;
  928. }
  929. int btrfs_add_log_tree(struct btrfs_trans_handle *trans,
  930. struct btrfs_root *root)
  931. {
  932. struct btrfs_root *log_root;
  933. struct btrfs_inode_item *inode_item;
  934. log_root = alloc_log_tree(trans, root->fs_info);
  935. if (IS_ERR(log_root))
  936. return PTR_ERR(log_root);
  937. log_root->last_trans = trans->transid;
  938. log_root->root_key.offset = root->root_key.objectid;
  939. inode_item = &log_root->root_item.inode;
  940. inode_item->generation = cpu_to_le64(1);
  941. inode_item->size = cpu_to_le64(3);
  942. inode_item->nlink = cpu_to_le32(1);
  943. inode_item->nbytes = cpu_to_le64(root->leafsize);
  944. inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
  945. btrfs_set_root_node(&log_root->root_item, log_root->node);
  946. WARN_ON(root->log_root);
  947. root->log_root = log_root;
  948. root->log_transid = 0;
  949. return 0;
  950. }
  951. struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_root *tree_root,
  952. struct btrfs_key *location)
  953. {
  954. struct btrfs_root *root;
  955. struct btrfs_fs_info *fs_info = tree_root->fs_info;
  956. struct btrfs_path *path;
  957. struct extent_buffer *l;
  958. u64 generation;
  959. u32 blocksize;
  960. int ret = 0;
  961. root = kzalloc(sizeof(*root), GFP_NOFS);
  962. if (!root)
  963. return ERR_PTR(-ENOMEM);
  964. if (location->offset == (u64)-1) {
  965. ret = find_and_setup_root(tree_root, fs_info,
  966. location->objectid, root);
  967. if (ret) {
  968. kfree(root);
  969. return ERR_PTR(ret);
  970. }
  971. goto out;
  972. }
  973. __setup_root(tree_root->nodesize, tree_root->leafsize,
  974. tree_root->sectorsize, tree_root->stripesize,
  975. root, fs_info, location->objectid);
  976. path = btrfs_alloc_path();
  977. BUG_ON(!path);
  978. ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
  979. if (ret == 0) {
  980. l = path->nodes[0];
  981. read_extent_buffer(l, &root->root_item,
  982. btrfs_item_ptr_offset(l, path->slots[0]),
  983. sizeof(root->root_item));
  984. memcpy(&root->root_key, location, sizeof(*location));
  985. }
  986. btrfs_free_path(path);
  987. if (ret) {
  988. if (ret > 0)
  989. ret = -ENOENT;
  990. return ERR_PTR(ret);
  991. }
  992. generation = btrfs_root_generation(&root->root_item);
  993. blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
  994. root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
  995. blocksize, generation);
  996. root->commit_root = btrfs_root_node(root);
  997. BUG_ON(!root->node);
  998. out:
  999. if (location->objectid != BTRFS_TREE_LOG_OBJECTID)
  1000. root->ref_cows = 1;
  1001. return root;
  1002. }
  1003. struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
  1004. u64 root_objectid)
  1005. {
  1006. struct btrfs_root *root;
  1007. if (root_objectid == BTRFS_ROOT_TREE_OBJECTID)
  1008. return fs_info->tree_root;
  1009. if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID)
  1010. return fs_info->extent_root;
  1011. root = radix_tree_lookup(&fs_info->fs_roots_radix,
  1012. (unsigned long)root_objectid);
  1013. return root;
  1014. }
  1015. struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
  1016. struct btrfs_key *location)
  1017. {
  1018. struct btrfs_root *root;
  1019. int ret;
  1020. if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
  1021. return fs_info->tree_root;
  1022. if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
  1023. return fs_info->extent_root;
  1024. if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
  1025. return fs_info->chunk_root;
  1026. if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
  1027. return fs_info->dev_root;
  1028. if (location->objectid == BTRFS_CSUM_TREE_OBJECTID)
  1029. return fs_info->csum_root;
  1030. again:
  1031. spin_lock(&fs_info->fs_roots_radix_lock);
  1032. root = radix_tree_lookup(&fs_info->fs_roots_radix,
  1033. (unsigned long)location->objectid);
  1034. spin_unlock(&fs_info->fs_roots_radix_lock);
  1035. if (root)
  1036. return root;
  1037. ret = btrfs_find_orphan_item(fs_info->tree_root, location->objectid);
  1038. if (ret == 0)
  1039. ret = -ENOENT;
  1040. if (ret < 0)
  1041. return ERR_PTR(ret);
  1042. root = btrfs_read_fs_root_no_radix(fs_info->tree_root, location);
  1043. if (IS_ERR(root))
  1044. return root;
  1045. WARN_ON(btrfs_root_refs(&root->root_item) == 0);
  1046. set_anon_super(&root->anon_super, NULL);
  1047. ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
  1048. if (ret)
  1049. goto fail;
  1050. spin_lock(&fs_info->fs_roots_radix_lock);
  1051. ret = radix_tree_insert(&fs_info->fs_roots_radix,
  1052. (unsigned long)root->root_key.objectid,
  1053. root);
  1054. if (ret == 0)
  1055. root->in_radix = 1;
  1056. spin_unlock(&fs_info->fs_roots_radix_lock);
  1057. radix_tree_preload_end();
  1058. if (ret) {
  1059. if (ret == -EEXIST) {
  1060. free_fs_root(root);
  1061. goto again;
  1062. }
  1063. goto fail;
  1064. }
  1065. ret = btrfs_find_dead_roots(fs_info->tree_root,
  1066. root->root_key.objectid);
  1067. WARN_ON(ret);
  1068. if (!(fs_info->sb->s_flags & MS_RDONLY))
  1069. btrfs_orphan_cleanup(root);
  1070. return root;
  1071. fail:
  1072. free_fs_root(root);
  1073. return ERR_PTR(ret);
  1074. }
  1075. struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
  1076. struct btrfs_key *location,
  1077. const char *name, int namelen)
  1078. {
  1079. return btrfs_read_fs_root_no_name(fs_info, location);
  1080. #if 0
  1081. struct btrfs_root *root;
  1082. int ret;
  1083. root = btrfs_read_fs_root_no_name(fs_info, location);
  1084. if (!root)
  1085. return NULL;
  1086. if (root->in_sysfs)
  1087. return root;
  1088. ret = btrfs_set_root_name(root, name, namelen);
  1089. if (ret) {
  1090. free_extent_buffer(root->node);
  1091. kfree(root);
  1092. return ERR_PTR(ret);
  1093. }
  1094. ret = btrfs_sysfs_add_root(root);
  1095. if (ret) {
  1096. free_extent_buffer(root->node);
  1097. kfree(root->name);
  1098. kfree(root);
  1099. return ERR_PTR(ret);
  1100. }
  1101. root->in_sysfs = 1;
  1102. return root;
  1103. #endif
  1104. }
  1105. static int btrfs_congested_fn(void *congested_data, int bdi_bits)
  1106. {
  1107. struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
  1108. int ret = 0;
  1109. struct btrfs_device *device;
  1110. struct backing_dev_info *bdi;
  1111. list_for_each_entry(device, &info->fs_devices->devices, dev_list) {
  1112. if (!device->bdev)
  1113. continue;
  1114. bdi = blk_get_backing_dev_info(device->bdev);
  1115. if (bdi && bdi_congested(bdi, bdi_bits)) {
  1116. ret = 1;
  1117. break;
  1118. }
  1119. }
  1120. return ret;
  1121. }
  1122. /*
  1123. * this unplugs every device on the box, and it is only used when page
  1124. * is null
  1125. */
  1126. static void __unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
  1127. {
  1128. struct btrfs_device *device;
  1129. struct btrfs_fs_info *info;
  1130. info = (struct btrfs_fs_info *)bdi->unplug_io_data;
  1131. list_for_each_entry(device, &info->fs_devices->devices, dev_list) {
  1132. if (!device->bdev)
  1133. continue;
  1134. bdi = blk_get_backing_dev_info(device->bdev);
  1135. if (bdi->unplug_io_fn)
  1136. bdi->unplug_io_fn(bdi, page);
  1137. }
  1138. }
  1139. static void btrfs_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
  1140. {
  1141. struct inode *inode;
  1142. struct extent_map_tree *em_tree;
  1143. struct extent_map *em;
  1144. struct address_space *mapping;
  1145. u64 offset;
  1146. /* the generic O_DIRECT read code does this */
  1147. if (1 || !page) {
  1148. __unplug_io_fn(bdi, page);
  1149. return;
  1150. }
  1151. /*
  1152. * page->mapping may change at any time. Get a consistent copy
  1153. * and use that for everything below
  1154. */
  1155. smp_mb();
  1156. mapping = page->mapping;
  1157. if (!mapping)
  1158. return;
  1159. inode = mapping->host;
  1160. /*
  1161. * don't do the expensive searching for a small number of
  1162. * devices
  1163. */
  1164. if (BTRFS_I(inode)->root->fs_info->fs_devices->open_devices <= 2) {
  1165. __unplug_io_fn(bdi, page);
  1166. return;
  1167. }
  1168. offset = page_offset(page);
  1169. em_tree = &BTRFS_I(inode)->extent_tree;
  1170. read_lock(&em_tree->lock);
  1171. em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
  1172. read_unlock(&em_tree->lock);
  1173. if (!em) {
  1174. __unplug_io_fn(bdi, page);
  1175. return;
  1176. }
  1177. if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
  1178. free_extent_map(em);
  1179. __unplug_io_fn(bdi, page);
  1180. return;
  1181. }
  1182. offset = offset - em->start;
  1183. btrfs_unplug_page(&BTRFS_I(inode)->root->fs_info->mapping_tree,
  1184. em->block_start + offset, page);
  1185. free_extent_map(em);
  1186. }
  1187. /*
  1188. * If this fails, caller must call bdi_destroy() to get rid of the
  1189. * bdi again.
  1190. */
  1191. static int setup_bdi(struct btrfs_fs_info *info, struct backing_dev_info *bdi)
  1192. {
  1193. int err;
  1194. bdi->capabilities = BDI_CAP_MAP_COPY;
  1195. err = bdi_init(bdi);
  1196. if (err)
  1197. return err;
  1198. err = bdi_register(bdi, NULL, "btrfs-%d",
  1199. atomic_inc_return(&btrfs_bdi_num));
  1200. if (err) {
  1201. bdi_destroy(bdi);
  1202. return err;
  1203. }
  1204. bdi->ra_pages = default_backing_dev_info.ra_pages;
  1205. bdi->unplug_io_fn = btrfs_unplug_io_fn;
  1206. bdi->unplug_io_data = info;
  1207. bdi->congested_fn = btrfs_congested_fn;
  1208. bdi->congested_data = info;
  1209. return 0;
  1210. }
  1211. static int bio_ready_for_csum(struct bio *bio)
  1212. {
  1213. u64 length = 0;
  1214. u64 buf_len = 0;
  1215. u64 start = 0;
  1216. struct page *page;
  1217. struct extent_io_tree *io_tree = NULL;
  1218. struct btrfs_fs_info *info = NULL;
  1219. struct bio_vec *bvec;
  1220. int i;
  1221. int ret;
  1222. bio_for_each_segment(bvec, bio, i) {
  1223. page = bvec->bv_page;
  1224. if (page->private == EXTENT_PAGE_PRIVATE) {
  1225. length += bvec->bv_len;
  1226. continue;
  1227. }
  1228. if (!page->private) {
  1229. length += bvec->bv_len;
  1230. continue;
  1231. }
  1232. length = bvec->bv_len;
  1233. buf_len = page->private >> 2;
  1234. start = page_offset(page) + bvec->bv_offset;
  1235. io_tree = &BTRFS_I(page->mapping->host)->io_tree;
  1236. info = BTRFS_I(page->mapping->host)->root->fs_info;
  1237. }
  1238. /* are we fully contained in this bio? */
  1239. if (buf_len <= length)
  1240. return 1;
  1241. ret = extent_range_uptodate(io_tree, start + length,
  1242. start + buf_len - 1);
  1243. return ret;
  1244. }
  1245. /*
  1246. * called by the kthread helper functions to finally call the bio end_io
  1247. * functions. This is where read checksum verification actually happens
  1248. */
  1249. static void end_workqueue_fn(struct btrfs_work *work)
  1250. {
  1251. struct bio *bio;
  1252. struct end_io_wq *end_io_wq;
  1253. struct btrfs_fs_info *fs_info;
  1254. int error;
  1255. end_io_wq = container_of(work, struct end_io_wq, work);
  1256. bio = end_io_wq->bio;
  1257. fs_info = end_io_wq->info;
  1258. /* metadata bio reads are special because the whole tree block must
  1259. * be checksummed at once. This makes sure the entire block is in
  1260. * ram and up to date before trying to verify things. For
  1261. * blocksize <= pagesize, it is basically a noop
  1262. */
  1263. if (!(bio->bi_rw & (1 << BIO_RW)) && end_io_wq->metadata &&
  1264. !bio_ready_for_csum(bio)) {
  1265. btrfs_queue_worker(&fs_info->endio_meta_workers,
  1266. &end_io_wq->work);
  1267. return;
  1268. }
  1269. error = end_io_wq->error;
  1270. bio->bi_private = end_io_wq->private;
  1271. bio->bi_end_io = end_io_wq->end_io;
  1272. kfree(end_io_wq);
  1273. bio_endio(bio, error);
  1274. }
  1275. static int cleaner_kthread(void *arg)
  1276. {
  1277. struct btrfs_root *root = arg;
  1278. do {
  1279. smp_mb();
  1280. if (root->fs_info->closing)
  1281. break;
  1282. vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
  1283. if (!(root->fs_info->sb->s_flags & MS_RDONLY) &&
  1284. mutex_trylock(&root->fs_info->cleaner_mutex)) {
  1285. btrfs_clean_old_snapshots(root);
  1286. mutex_unlock(&root->fs_info->cleaner_mutex);
  1287. }
  1288. if (freezing(current)) {
  1289. refrigerator();
  1290. } else {
  1291. smp_mb();
  1292. if (root->fs_info->closing)
  1293. break;
  1294. set_current_state(TASK_INTERRUPTIBLE);
  1295. schedule();
  1296. __set_current_state(TASK_RUNNING);
  1297. }
  1298. } while (!kthread_should_stop());
  1299. return 0;
  1300. }
  1301. static int transaction_kthread(void *arg)
  1302. {
  1303. struct btrfs_root *root = arg;
  1304. struct btrfs_trans_handle *trans;
  1305. struct btrfs_transaction *cur;
  1306. unsigned long now;
  1307. unsigned long delay;
  1308. int ret;
  1309. do {
  1310. smp_mb();
  1311. if (root->fs_info->closing)
  1312. break;
  1313. delay = HZ * 30;
  1314. vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
  1315. mutex_lock(&root->fs_info->transaction_kthread_mutex);
  1316. mutex_lock(&root->fs_info->trans_mutex);
  1317. cur = root->fs_info->running_transaction;
  1318. if (!cur) {
  1319. mutex_unlock(&root->fs_info->trans_mutex);
  1320. goto sleep;
  1321. }
  1322. now = get_seconds();
  1323. if (now < cur->start_time || now - cur->start_time < 30) {
  1324. mutex_unlock(&root->fs_info->trans_mutex);
  1325. delay = HZ * 5;
  1326. goto sleep;
  1327. }
  1328. mutex_unlock(&root->fs_info->trans_mutex);
  1329. trans = btrfs_start_transaction(root, 1);
  1330. ret = btrfs_commit_transaction(trans, root);
  1331. sleep:
  1332. wake_up_process(root->fs_info->cleaner_kthread);
  1333. mutex_unlock(&root->fs_info->transaction_kthread_mutex);
  1334. if (freezing(current)) {
  1335. refrigerator();
  1336. } else {
  1337. if (root->fs_info->closing)
  1338. break;
  1339. set_current_state(TASK_INTERRUPTIBLE);
  1340. schedule_timeout(delay);
  1341. __set_current_state(TASK_RUNNING);
  1342. }
  1343. } while (!kthread_should_stop());
  1344. return 0;
  1345. }
  1346. struct btrfs_root *open_ctree(struct super_block *sb,
  1347. struct btrfs_fs_devices *fs_devices,
  1348. char *options)
  1349. {
  1350. u32 sectorsize;
  1351. u32 nodesize;
  1352. u32 leafsize;
  1353. u32 blocksize;
  1354. u32 stripesize;
  1355. u64 generation;
  1356. u64 features;
  1357. struct btrfs_key location;
  1358. struct buffer_head *bh;
  1359. struct btrfs_root *extent_root = kzalloc(sizeof(struct btrfs_root),
  1360. GFP_NOFS);
  1361. struct btrfs_root *csum_root = kzalloc(sizeof(struct btrfs_root),
  1362. GFP_NOFS);
  1363. struct btrfs_root *tree_root = kzalloc(sizeof(struct btrfs_root),
  1364. GFP_NOFS);
  1365. struct btrfs_fs_info *fs_info = kzalloc(sizeof(*fs_info),
  1366. GFP_NOFS);
  1367. struct btrfs_root *chunk_root = kzalloc(sizeof(struct btrfs_root),
  1368. GFP_NOFS);
  1369. struct btrfs_root *dev_root = kzalloc(sizeof(struct btrfs_root),
  1370. GFP_NOFS);
  1371. struct btrfs_root *log_tree_root;
  1372. int ret;
  1373. int err = -EINVAL;
  1374. struct btrfs_super_block *disk_super;
  1375. if (!extent_root || !tree_root || !fs_info ||
  1376. !chunk_root || !dev_root || !csum_root) {
  1377. err = -ENOMEM;
  1378. goto fail;
  1379. }
  1380. ret = init_srcu_struct(&fs_info->subvol_srcu);
  1381. if (ret) {
  1382. err = ret;
  1383. goto fail;
  1384. }
  1385. ret = setup_bdi(fs_info, &fs_info->bdi);
  1386. if (ret) {
  1387. err = ret;
  1388. goto fail_srcu;
  1389. }
  1390. fs_info->btree_inode = new_inode(sb);
  1391. if (!fs_info->btree_inode) {
  1392. err = -ENOMEM;
  1393. goto fail_bdi;
  1394. }
  1395. INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_ATOMIC);
  1396. INIT_LIST_HEAD(&fs_info->trans_list);
  1397. INIT_LIST_HEAD(&fs_info->dead_roots);
  1398. INIT_LIST_HEAD(&fs_info->hashers);
  1399. INIT_LIST_HEAD(&fs_info->delalloc_inodes);
  1400. INIT_LIST_HEAD(&fs_info->ordered_operations);
  1401. INIT_LIST_HEAD(&fs_info->caching_block_groups);
  1402. spin_lock_init(&fs_info->delalloc_lock);
  1403. spin_lock_init(&fs_info->new_trans_lock);
  1404. spin_lock_init(&fs_info->ref_cache_lock);
  1405. spin_lock_init(&fs_info->fs_roots_radix_lock);
  1406. init_completion(&fs_info->kobj_unregister);
  1407. fs_info->tree_root = tree_root;
  1408. fs_info->extent_root = extent_root;
  1409. fs_info->csum_root = csum_root;
  1410. fs_info->chunk_root = chunk_root;
  1411. fs_info->dev_root = dev_root;
  1412. fs_info->fs_devices = fs_devices;
  1413. INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
  1414. INIT_LIST_HEAD(&fs_info->space_info);
  1415. btrfs_mapping_init(&fs_info->mapping_tree);
  1416. atomic_set(&fs_info->nr_async_submits, 0);
  1417. atomic_set(&fs_info->async_delalloc_pages, 0);
  1418. atomic_set(&fs_info->async_submit_draining, 0);
  1419. atomic_set(&fs_info->nr_async_bios, 0);
  1420. fs_info->sb = sb;
  1421. fs_info->max_extent = (u64)-1;
  1422. fs_info->max_inline = 8192 * 1024;
  1423. fs_info->metadata_ratio = 0;
  1424. fs_info->thread_pool_size = min_t(unsigned long,
  1425. num_online_cpus() + 2, 8);
  1426. INIT_LIST_HEAD(&fs_info->ordered_extents);
  1427. spin_lock_init(&fs_info->ordered_extent_lock);
  1428. sb->s_blocksize = 4096;
  1429. sb->s_blocksize_bits = blksize_bits(4096);
  1430. fs_info->btree_inode->i_ino = BTRFS_BTREE_INODE_OBJECTID;
  1431. fs_info->btree_inode->i_nlink = 1;
  1432. /*
  1433. * we set the i_size on the btree inode to the max possible int.
  1434. * the real end of the address space is determined by all of
  1435. * the devices in the system
  1436. */
  1437. fs_info->btree_inode->i_size = OFFSET_MAX;
  1438. fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
  1439. fs_info->btree_inode->i_mapping->backing_dev_info = &fs_info->bdi;
  1440. RB_CLEAR_NODE(&BTRFS_I(fs_info->btree_inode)->rb_node);
  1441. extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
  1442. fs_info->btree_inode->i_mapping,
  1443. GFP_NOFS);
  1444. extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
  1445. GFP_NOFS);
  1446. BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
  1447. BTRFS_I(fs_info->btree_inode)->root = tree_root;
  1448. memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
  1449. sizeof(struct btrfs_key));
  1450. BTRFS_I(fs_info->btree_inode)->dummy_inode = 1;
  1451. insert_inode_hash(fs_info->btree_inode);
  1452. spin_lock_init(&fs_info->block_group_cache_lock);
  1453. fs_info->block_group_cache_tree.rb_node = NULL;
  1454. extent_io_tree_init(&fs_info->freed_extents[0],
  1455. fs_info->btree_inode->i_mapping, GFP_NOFS);
  1456. extent_io_tree_init(&fs_info->freed_extents[1],
  1457. fs_info->btree_inode->i_mapping, GFP_NOFS);
  1458. fs_info->pinned_extents = &fs_info->freed_extents[0];
  1459. fs_info->do_barriers = 1;
  1460. mutex_init(&fs_info->trans_mutex);
  1461. mutex_init(&fs_info->ordered_operations_mutex);
  1462. mutex_init(&fs_info->tree_log_mutex);
  1463. mutex_init(&fs_info->chunk_mutex);
  1464. mutex_init(&fs_info->transaction_kthread_mutex);
  1465. mutex_init(&fs_info->cleaner_mutex);
  1466. mutex_init(&fs_info->volume_mutex);
  1467. init_rwsem(&fs_info->extent_commit_sem);
  1468. init_rwsem(&fs_info->subvol_sem);
  1469. btrfs_init_free_cluster(&fs_info->meta_alloc_cluster);
  1470. btrfs_init_free_cluster(&fs_info->data_alloc_cluster);
  1471. init_waitqueue_head(&fs_info->transaction_throttle);
  1472. init_waitqueue_head(&fs_info->transaction_wait);
  1473. init_waitqueue_head(&fs_info->async_submit_wait);
  1474. __setup_root(4096, 4096, 4096, 4096, tree_root,
  1475. fs_info, BTRFS_ROOT_TREE_OBJECTID);
  1476. bh = btrfs_read_dev_super(fs_devices->latest_bdev);
  1477. if (!bh)
  1478. goto fail_iput;
  1479. memcpy(&fs_info->super_copy, bh->b_data, sizeof(fs_info->super_copy));
  1480. memcpy(&fs_info->super_for_commit, &fs_info->super_copy,
  1481. sizeof(fs_info->super_for_commit));
  1482. brelse(bh);
  1483. memcpy(fs_info->fsid, fs_info->super_copy.fsid, BTRFS_FSID_SIZE);
  1484. disk_super = &fs_info->super_copy;
  1485. if (!btrfs_super_root(disk_super))
  1486. goto fail_iput;
  1487. ret = btrfs_parse_options(tree_root, options);
  1488. if (ret) {
  1489. err = ret;
  1490. goto fail_iput;
  1491. }
  1492. features = btrfs_super_incompat_flags(disk_super) &
  1493. ~BTRFS_FEATURE_INCOMPAT_SUPP;
  1494. if (features) {
  1495. printk(KERN_ERR "BTRFS: couldn't mount because of "
  1496. "unsupported optional features (%Lx).\n",
  1497. (unsigned long long)features);
  1498. err = -EINVAL;
  1499. goto fail_iput;
  1500. }
  1501. features = btrfs_super_incompat_flags(disk_super);
  1502. if (!(features & BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF)) {
  1503. features |= BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF;
  1504. btrfs_set_super_incompat_flags(disk_super, features);
  1505. }
  1506. features = btrfs_super_compat_ro_flags(disk_super) &
  1507. ~BTRFS_FEATURE_COMPAT_RO_SUPP;
  1508. if (!(sb->s_flags & MS_RDONLY) && features) {
  1509. printk(KERN_ERR "BTRFS: couldn't mount RDWR because of "
  1510. "unsupported option features (%Lx).\n",
  1511. (unsigned long long)features);
  1512. err = -EINVAL;
  1513. goto fail_iput;
  1514. }
  1515. btrfs_init_workers(&fs_info->generic_worker,
  1516. "genwork", 1, NULL);
  1517. btrfs_init_workers(&fs_info->workers, "worker",
  1518. fs_info->thread_pool_size,
  1519. &fs_info->generic_worker);
  1520. btrfs_init_workers(&fs_info->delalloc_workers, "delalloc",
  1521. fs_info->thread_pool_size,
  1522. &fs_info->generic_worker);
  1523. btrfs_init_workers(&fs_info->submit_workers, "submit",
  1524. min_t(u64, fs_devices->num_devices,
  1525. fs_info->thread_pool_size),
  1526. &fs_info->generic_worker);
  1527. btrfs_init_workers(&fs_info->enospc_workers, "enospc",
  1528. fs_info->thread_pool_size,
  1529. &fs_info->generic_worker);
  1530. /* a higher idle thresh on the submit workers makes it much more
  1531. * likely that bios will be send down in a sane order to the
  1532. * devices
  1533. */
  1534. fs_info->submit_workers.idle_thresh = 64;
  1535. fs_info->workers.idle_thresh = 16;
  1536. fs_info->workers.ordered = 1;
  1537. fs_info->delalloc_workers.idle_thresh = 2;
  1538. fs_info->delalloc_workers.ordered = 1;
  1539. btrfs_init_workers(&fs_info->fixup_workers, "fixup", 1,
  1540. &fs_info->generic_worker);
  1541. btrfs_init_workers(&fs_info->endio_workers, "endio",
  1542. fs_info->thread_pool_size,
  1543. &fs_info->generic_worker);
  1544. btrfs_init_workers(&fs_info->endio_meta_workers, "endio-meta",
  1545. fs_info->thread_pool_size,
  1546. &fs_info->generic_worker);
  1547. btrfs_init_workers(&fs_info->endio_meta_write_workers,
  1548. "endio-meta-write", fs_info->thread_pool_size,
  1549. &fs_info->generic_worker);
  1550. btrfs_init_workers(&fs_info->endio_write_workers, "endio-write",
  1551. fs_info->thread_pool_size,
  1552. &fs_info->generic_worker);
  1553. /*
  1554. * endios are largely parallel and should have a very
  1555. * low idle thresh
  1556. */
  1557. fs_info->endio_workers.idle_thresh = 4;
  1558. fs_info->endio_meta_workers.idle_thresh = 4;
  1559. fs_info->endio_write_workers.idle_thresh = 2;
  1560. fs_info->endio_meta_write_workers.idle_thresh = 2;
  1561. btrfs_start_workers(&fs_info->workers, 1);
  1562. btrfs_start_workers(&fs_info->generic_worker, 1);
  1563. btrfs_start_workers(&fs_info->submit_workers, 1);
  1564. btrfs_start_workers(&fs_info->delalloc_workers, 1);
  1565. btrfs_start_workers(&fs_info->fixup_workers, 1);
  1566. btrfs_start_workers(&fs_info->endio_workers, 1);
  1567. btrfs_start_workers(&fs_info->endio_meta_workers, 1);
  1568. btrfs_start_workers(&fs_info->endio_meta_write_workers, 1);
  1569. btrfs_start_workers(&fs_info->endio_write_workers, 1);
  1570. btrfs_start_workers(&fs_info->enospc_workers, 1);
  1571. fs_info->bdi.ra_pages *= btrfs_super_num_devices(disk_super);
  1572. fs_info->bdi.ra_pages = max(fs_info->bdi.ra_pages,
  1573. 4 * 1024 * 1024 / PAGE_CACHE_SIZE);
  1574. nodesize = btrfs_super_nodesize(disk_super);
  1575. leafsize = btrfs_super_leafsize(disk_super);
  1576. sectorsize = btrfs_super_sectorsize(disk_super);
  1577. stripesize = btrfs_super_stripesize(disk_super);
  1578. tree_root->nodesize = nodesize;
  1579. tree_root->leafsize = leafsize;
  1580. tree_root->sectorsize = sectorsize;
  1581. tree_root->stripesize = stripesize;
  1582. sb->s_blocksize = sectorsize;
  1583. sb->s_blocksize_bits = blksize_bits(sectorsize);
  1584. if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
  1585. sizeof(disk_super->magic))) {
  1586. printk(KERN_INFO "btrfs: valid FS not found on %s\n", sb->s_id);
  1587. goto fail_sb_buffer;
  1588. }
  1589. mutex_lock(&fs_info->chunk_mutex);
  1590. ret = btrfs_read_sys_array(tree_root);
  1591. mutex_unlock(&fs_info->chunk_mutex);
  1592. if (ret) {
  1593. printk(KERN_WARNING "btrfs: failed to read the system "
  1594. "array on %s\n", sb->s_id);
  1595. goto fail_sb_buffer;
  1596. }
  1597. blocksize = btrfs_level_size(tree_root,
  1598. btrfs_super_chunk_root_level(disk_super));
  1599. generation = btrfs_super_chunk_root_generation(disk_super);
  1600. __setup_root(nodesize, leafsize, sectorsize, stripesize,
  1601. chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
  1602. chunk_root->node = read_tree_block(chunk_root,
  1603. btrfs_super_chunk_root(disk_super),
  1604. blocksize, generation);
  1605. BUG_ON(!chunk_root->node);
  1606. if (!test_bit(EXTENT_BUFFER_UPTODATE, &chunk_root->node->bflags)) {
  1607. printk(KERN_WARNING "btrfs: failed to read chunk root on %s\n",
  1608. sb->s_id);
  1609. goto fail_chunk_root;
  1610. }
  1611. btrfs_set_root_node(&chunk_root->root_item, chunk_root->node);
  1612. chunk_root->commit_root = btrfs_root_node(chunk_root);
  1613. read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
  1614. (unsigned long)btrfs_header_chunk_tree_uuid(chunk_root->node),
  1615. BTRFS_UUID_SIZE);
  1616. mutex_lock(&fs_info->chunk_mutex);
  1617. ret = btrfs_read_chunk_tree(chunk_root);
  1618. mutex_unlock(&fs_info->chunk_mutex);
  1619. if (ret) {
  1620. printk(KERN_WARNING "btrfs: failed to read chunk tree on %s\n",
  1621. sb->s_id);
  1622. goto fail_chunk_root;
  1623. }
  1624. btrfs_close_extra_devices(fs_devices);
  1625. blocksize = btrfs_level_size(tree_root,
  1626. btrfs_super_root_level(disk_super));
  1627. generation = btrfs_super_generation(disk_super);
  1628. tree_root->node = read_tree_block(tree_root,
  1629. btrfs_super_root(disk_super),
  1630. blocksize, generation);
  1631. if (!tree_root->node)
  1632. goto fail_chunk_root;
  1633. if (!test_bit(EXTENT_BUFFER_UPTODATE, &tree_root->node->bflags)) {
  1634. printk(KERN_WARNING "btrfs: failed to read tree root on %s\n",
  1635. sb->s_id);
  1636. goto fail_tree_root;
  1637. }
  1638. btrfs_set_root_node(&tree_root->root_item, tree_root->node);
  1639. tree_root->commit_root = btrfs_root_node(tree_root);
  1640. ret = find_and_setup_root(tree_root, fs_info,
  1641. BTRFS_EXTENT_TREE_OBJECTID, extent_root);
  1642. if (ret)
  1643. goto fail_tree_root;
  1644. extent_root->track_dirty = 1;
  1645. ret = find_and_setup_root(tree_root, fs_info,
  1646. BTRFS_DEV_TREE_OBJECTID, dev_root);
  1647. if (ret)
  1648. goto fail_extent_root;
  1649. dev_root->track_dirty = 1;
  1650. ret = find_and_setup_root(tree_root, fs_info,
  1651. BTRFS_CSUM_TREE_OBJECTID, csum_root);
  1652. if (ret)
  1653. goto fail_dev_root;
  1654. csum_root->track_dirty = 1;
  1655. btrfs_read_block_groups(extent_root);
  1656. fs_info->generation = generation;
  1657. fs_info->last_trans_committed = generation;
  1658. fs_info->data_alloc_profile = (u64)-1;
  1659. fs_info->metadata_alloc_profile = (u64)-1;
  1660. fs_info->system_alloc_profile = fs_info->metadata_alloc_profile;
  1661. fs_info->cleaner_kthread = kthread_run(cleaner_kthread, tree_root,
  1662. "btrfs-cleaner");
  1663. if (IS_ERR(fs_info->cleaner_kthread))
  1664. goto fail_csum_root;
  1665. fs_info->transaction_kthread = kthread_run(transaction_kthread,
  1666. tree_root,
  1667. "btrfs-transaction");
  1668. if (IS_ERR(fs_info->transaction_kthread))
  1669. goto fail_cleaner;
  1670. if (!btrfs_test_opt(tree_root, SSD) &&
  1671. !btrfs_test_opt(tree_root, NOSSD) &&
  1672. !fs_info->fs_devices->rotating) {
  1673. printk(KERN_INFO "Btrfs detected SSD devices, enabling SSD "
  1674. "mode\n");
  1675. btrfs_set_opt(fs_info->mount_opt, SSD);
  1676. }
  1677. if (btrfs_super_log_root(disk_super) != 0) {
  1678. u64 bytenr = btrfs_super_log_root(disk_super);
  1679. if (fs_devices->rw_devices == 0) {
  1680. printk(KERN_WARNING "Btrfs log replay required "
  1681. "on RO media\n");
  1682. err = -EIO;
  1683. goto fail_trans_kthread;
  1684. }
  1685. blocksize =
  1686. btrfs_level_size(tree_root,
  1687. btrfs_super_log_root_level(disk_super));
  1688. log_tree_root = kzalloc(sizeof(struct btrfs_root),
  1689. GFP_NOFS);
  1690. __setup_root(nodesize, leafsize, sectorsize, stripesize,
  1691. log_tree_root, fs_info, BTRFS_TREE_LOG_OBJECTID);
  1692. log_tree_root->node = read_tree_block(tree_root, bytenr,
  1693. blocksize,
  1694. generation + 1);
  1695. ret = btrfs_recover_log_trees(log_tree_root);
  1696. BUG_ON(ret);
  1697. if (sb->s_flags & MS_RDONLY) {
  1698. ret = btrfs_commit_super(tree_root);
  1699. BUG_ON(ret);
  1700. }
  1701. }
  1702. ret = btrfs_find_orphan_roots(tree_root);
  1703. BUG_ON(ret);
  1704. if (!(sb->s_flags & MS_RDONLY)) {
  1705. ret = btrfs_recover_relocation(tree_root);
  1706. BUG_ON(ret);
  1707. }
  1708. location.objectid = BTRFS_FS_TREE_OBJECTID;
  1709. location.type = BTRFS_ROOT_ITEM_KEY;
  1710. location.offset = (u64)-1;
  1711. fs_info->fs_root = btrfs_read_fs_root_no_name(fs_info, &location);
  1712. if (!fs_info->fs_root)
  1713. goto fail_trans_kthread;
  1714. return tree_root;
  1715. fail_trans_kthread:
  1716. kthread_stop(fs_info->transaction_kthread);
  1717. fail_cleaner:
  1718. kthread_stop(fs_info->cleaner_kthread);
  1719. /*
  1720. * make sure we're done with the btree inode before we stop our
  1721. * kthreads
  1722. */
  1723. filemap_write_and_wait(fs_info->btree_inode->i_mapping);
  1724. invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
  1725. fail_csum_root:
  1726. free_extent_buffer(csum_root->node);
  1727. free_extent_buffer(csum_root->commit_root);
  1728. fail_dev_root:
  1729. free_extent_buffer(dev_root->node);
  1730. free_extent_buffer(dev_root->commit_root);
  1731. fail_extent_root:
  1732. free_extent_buffer(extent_root->node);
  1733. free_extent_buffer(extent_root->commit_root);
  1734. fail_tree_root:
  1735. free_extent_buffer(tree_root->node);
  1736. free_extent_buffer(tree_root->commit_root);
  1737. fail_chunk_root:
  1738. free_extent_buffer(chunk_root->node);
  1739. free_extent_buffer(chunk_root->commit_root);
  1740. fail_sb_buffer:
  1741. btrfs_stop_workers(&fs_info->generic_worker);
  1742. btrfs_stop_workers(&fs_info->fixup_workers);
  1743. btrfs_stop_workers(&fs_info->delalloc_workers);
  1744. btrfs_stop_workers(&fs_info->workers);
  1745. btrfs_stop_workers(&fs_info->endio_workers);
  1746. btrfs_stop_workers(&fs_info->endio_meta_workers);
  1747. btrfs_stop_workers(&fs_info->endio_meta_write_workers);
  1748. btrfs_stop_workers(&fs_info->endio_write_workers);
  1749. btrfs_stop_workers(&fs_info->submit_workers);
  1750. btrfs_stop_workers(&fs_info->enospc_workers);
  1751. fail_iput:
  1752. invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
  1753. iput(fs_info->btree_inode);
  1754. btrfs_close_devices(fs_info->fs_devices);
  1755. btrfs_mapping_tree_free(&fs_info->mapping_tree);
  1756. fail_bdi:
  1757. bdi_destroy(&fs_info->bdi);
  1758. fail_srcu:
  1759. cleanup_srcu_struct(&fs_info->subvol_srcu);
  1760. fail:
  1761. kfree(extent_root);
  1762. kfree(tree_root);
  1763. kfree(fs_info);
  1764. kfree(chunk_root);
  1765. kfree(dev_root);
  1766. kfree(csum_root);
  1767. return ERR_PTR(err);
  1768. }
  1769. static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate)
  1770. {
  1771. char b[BDEVNAME_SIZE];
  1772. if (uptodate) {
  1773. set_buffer_uptodate(bh);
  1774. } else {
  1775. if (!buffer_eopnotsupp(bh) && printk_ratelimit()) {
  1776. printk(KERN_WARNING "lost page write due to "
  1777. "I/O error on %s\n",
  1778. bdevname(bh->b_bdev, b));
  1779. }
  1780. /* note, we dont' set_buffer_write_io_error because we have
  1781. * our own ways of dealing with the IO errors
  1782. */
  1783. clear_buffer_uptodate(bh);
  1784. }
  1785. unlock_buffer(bh);
  1786. put_bh(bh);
  1787. }
  1788. struct buffer_head *btrfs_read_dev_super(struct block_device *bdev)
  1789. {
  1790. struct buffer_head *bh;
  1791. struct buffer_head *latest = NULL;
  1792. struct btrfs_super_block *super;
  1793. int i;
  1794. u64 transid = 0;
  1795. u64 bytenr;
  1796. /* we would like to check all the supers, but that would make
  1797. * a btrfs mount succeed after a mkfs from a different FS.
  1798. * So, we need to add a special mount option to scan for
  1799. * later supers, using BTRFS_SUPER_MIRROR_MAX instead
  1800. */
  1801. for (i = 0; i < 1; i++) {
  1802. bytenr = btrfs_sb_offset(i);
  1803. if (bytenr + 4096 >= i_size_read(bdev->bd_inode))
  1804. break;
  1805. bh = __bread(bdev, bytenr / 4096, 4096);
  1806. if (!bh)
  1807. continue;
  1808. super = (struct btrfs_super_block *)bh->b_data;
  1809. if (btrfs_super_bytenr(super) != bytenr ||
  1810. strncmp((char *)(&super->magic), BTRFS_MAGIC,
  1811. sizeof(super->magic))) {
  1812. brelse(bh);
  1813. continue;
  1814. }
  1815. if (!latest || btrfs_super_generation(super) > transid) {
  1816. brelse(latest);
  1817. latest = bh;
  1818. transid = btrfs_super_generation(super);
  1819. } else {
  1820. brelse(bh);
  1821. }
  1822. }
  1823. return latest;
  1824. }
  1825. /*
  1826. * this should be called twice, once with wait == 0 and
  1827. * once with wait == 1. When wait == 0 is done, all the buffer heads
  1828. * we write are pinned.
  1829. *
  1830. * They are released when wait == 1 is done.
  1831. * max_mirrors must be the same for both runs, and it indicates how
  1832. * many supers on this one device should be written.
  1833. *
  1834. * max_mirrors == 0 means to write them all.
  1835. */
  1836. static int write_dev_supers(struct btrfs_device *device,
  1837. struct btrfs_super_block *sb,
  1838. int do_barriers, int wait, int max_mirrors)
  1839. {
  1840. struct buffer_head *bh;
  1841. int i;
  1842. int ret;
  1843. int errors = 0;
  1844. u32 crc;
  1845. u64 bytenr;
  1846. int last_barrier = 0;
  1847. if (max_mirrors == 0)
  1848. max_mirrors = BTRFS_SUPER_MIRROR_MAX;
  1849. /* make sure only the last submit_bh does a barrier */
  1850. if (do_barriers) {
  1851. for (i = 0; i < max_mirrors; i++) {
  1852. bytenr = btrfs_sb_offset(i);
  1853. if (bytenr + BTRFS_SUPER_INFO_SIZE >=
  1854. device->total_bytes)
  1855. break;
  1856. last_barrier = i;
  1857. }
  1858. }
  1859. for (i = 0; i < max_mirrors; i++) {
  1860. bytenr = btrfs_sb_offset(i);
  1861. if (bytenr + BTRFS_SUPER_INFO_SIZE >= device->total_bytes)
  1862. break;
  1863. if (wait) {
  1864. bh = __find_get_block(device->bdev, bytenr / 4096,
  1865. BTRFS_SUPER_INFO_SIZE);
  1866. BUG_ON(!bh);
  1867. wait_on_buffer(bh);
  1868. if (!buffer_uptodate(bh))
  1869. errors++;
  1870. /* drop our reference */
  1871. brelse(bh);
  1872. /* drop the reference from the wait == 0 run */
  1873. brelse(bh);
  1874. continue;
  1875. } else {
  1876. btrfs_set_super_bytenr(sb, bytenr);
  1877. crc = ~(u32)0;
  1878. crc = btrfs_csum_data(NULL, (char *)sb +
  1879. BTRFS_CSUM_SIZE, crc,
  1880. BTRFS_SUPER_INFO_SIZE -
  1881. BTRFS_CSUM_SIZE);
  1882. btrfs_csum_final(crc, sb->csum);
  1883. /*
  1884. * one reference for us, and we leave it for the
  1885. * caller
  1886. */
  1887. bh = __getblk(device->bdev, bytenr / 4096,
  1888. BTRFS_SUPER_INFO_SIZE);
  1889. memcpy(bh->b_data, sb, BTRFS_SUPER_INFO_SIZE);
  1890. /* one reference for submit_bh */
  1891. get_bh(bh);
  1892. set_buffer_uptodate(bh);
  1893. lock_buffer(bh);
  1894. bh->b_end_io = btrfs_end_buffer_write_sync;
  1895. }
  1896. if (i == last_barrier && do_barriers && device->barriers) {
  1897. ret = submit_bh(WRITE_BARRIER, bh);
  1898. if (ret == -EOPNOTSUPP) {
  1899. printk("btrfs: disabling barriers on dev %s\n",
  1900. device->name);
  1901. set_buffer_uptodate(bh);
  1902. device->barriers = 0;
  1903. /* one reference for submit_bh */
  1904. get_bh(bh);
  1905. lock_buffer(bh);
  1906. ret = submit_bh(WRITE_SYNC, bh);
  1907. }
  1908. } else {
  1909. ret = submit_bh(WRITE_SYNC, bh);
  1910. }
  1911. if (ret)
  1912. errors++;
  1913. }
  1914. return errors < i ? 0 : -1;
  1915. }
  1916. int write_all_supers(struct btrfs_root *root, int max_mirrors)
  1917. {
  1918. struct list_head *head;
  1919. struct btrfs_device *dev;
  1920. struct btrfs_super_block *sb;
  1921. struct btrfs_dev_item *dev_item;
  1922. int ret;
  1923. int do_barriers;
  1924. int max_errors;
  1925. int total_errors = 0;
  1926. u64 flags;
  1927. max_errors = btrfs_super_num_devices(&root->fs_info->super_copy) - 1;
  1928. do_barriers = !btrfs_test_opt(root, NOBARRIER);
  1929. sb = &root->fs_info->super_for_commit;
  1930. dev_item = &sb->dev_item;
  1931. mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
  1932. head = &root->fs_info->fs_devices->devices;
  1933. list_for_each_entry(dev, head, dev_list) {
  1934. if (!dev->bdev) {
  1935. total_errors++;
  1936. continue;
  1937. }
  1938. if (!dev->in_fs_metadata || !dev->writeable)
  1939. continue;
  1940. btrfs_set_stack_device_generation(dev_item, 0);
  1941. btrfs_set_stack_device_type(dev_item, dev->type);
  1942. btrfs_set_stack_device_id(dev_item, dev->devid);
  1943. btrfs_set_stack_device_total_bytes(dev_item, dev->total_bytes);
  1944. btrfs_set_stack_device_bytes_used(dev_item, dev->bytes_used);
  1945. btrfs_set_stack_device_io_align(dev_item, dev->io_align);
  1946. btrfs_set_stack_device_io_width(dev_item, dev->io_width);
  1947. btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
  1948. memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
  1949. memcpy(dev_item->fsid, dev->fs_devices->fsid, BTRFS_UUID_SIZE);
  1950. flags = btrfs_super_flags(sb);
  1951. btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
  1952. ret = write_dev_supers(dev, sb, do_barriers, 0, max_mirrors);
  1953. if (ret)
  1954. total_errors++;
  1955. }
  1956. if (total_errors > max_errors) {
  1957. printk(KERN_ERR "btrfs: %d errors while writing supers\n",
  1958. total_errors);
  1959. BUG();
  1960. }
  1961. total_errors = 0;
  1962. list_for_each_entry(dev, head, dev_list) {
  1963. if (!dev->bdev)
  1964. continue;
  1965. if (!dev->in_fs_metadata || !dev->writeable)
  1966. continue;
  1967. ret = write_dev_supers(dev, sb, do_barriers, 1, max_mirrors);
  1968. if (ret)
  1969. total_errors++;
  1970. }
  1971. mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
  1972. if (total_errors > max_errors) {
  1973. printk(KERN_ERR "btrfs: %d errors while writing supers\n",
  1974. total_errors);
  1975. BUG();
  1976. }
  1977. return 0;
  1978. }
  1979. int write_ctree_super(struct btrfs_trans_handle *trans,
  1980. struct btrfs_root *root, int max_mirrors)
  1981. {
  1982. int ret;
  1983. ret = write_all_supers(root, max_mirrors);
  1984. return ret;
  1985. }
  1986. int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
  1987. {
  1988. spin_lock(&fs_info->fs_roots_radix_lock);
  1989. radix_tree_delete(&fs_info->fs_roots_radix,
  1990. (unsigned long)root->root_key.objectid);
  1991. spin_unlock(&fs_info->fs_roots_radix_lock);
  1992. if (btrfs_root_refs(&root->root_item) == 0)
  1993. synchronize_srcu(&fs_info->subvol_srcu);
  1994. free_fs_root(root);
  1995. return 0;
  1996. }
  1997. static void free_fs_root(struct btrfs_root *root)
  1998. {
  1999. WARN_ON(!RB_EMPTY_ROOT(&root->inode_tree));
  2000. if (root->anon_super.s_dev) {
  2001. down_write(&root->anon_super.s_umount);
  2002. kill_anon_super(&root->anon_super);
  2003. }
  2004. free_extent_buffer(root->node);
  2005. free_extent_buffer(root->commit_root);
  2006. kfree(root->name);
  2007. kfree(root);
  2008. }
  2009. static int del_fs_roots(struct btrfs_fs_info *fs_info)
  2010. {
  2011. int ret;
  2012. struct btrfs_root *gang[8];
  2013. int i;
  2014. while (!list_empty(&fs_info->dead_roots)) {
  2015. gang[0] = list_entry(fs_info->dead_roots.next,
  2016. struct btrfs_root, root_list);
  2017. list_del(&gang[0]->root_list);
  2018. if (gang[0]->in_radix) {
  2019. btrfs_free_fs_root(fs_info, gang[0]);
  2020. } else {
  2021. free_extent_buffer(gang[0]->node);
  2022. free_extent_buffer(gang[0]->commit_root);
  2023. kfree(gang[0]);
  2024. }
  2025. }
  2026. while (1) {
  2027. ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
  2028. (void **)gang, 0,
  2029. ARRAY_SIZE(gang));
  2030. if (!ret)
  2031. break;
  2032. for (i = 0; i < ret; i++)
  2033. btrfs_free_fs_root(fs_info, gang[i]);
  2034. }
  2035. return 0;
  2036. }
  2037. int btrfs_cleanup_fs_roots(struct btrfs_fs_info *fs_info)
  2038. {
  2039. u64 root_objectid = 0;
  2040. struct btrfs_root *gang[8];
  2041. int i;
  2042. int ret;
  2043. while (1) {
  2044. ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
  2045. (void **)gang, root_objectid,
  2046. ARRAY_SIZE(gang));
  2047. if (!ret)
  2048. break;
  2049. root_objectid = gang[ret - 1]->root_key.objectid + 1;
  2050. for (i = 0; i < ret; i++) {
  2051. root_objectid = gang[i]->root_key.objectid;
  2052. btrfs_orphan_cleanup(gang[i]);
  2053. }
  2054. root_objectid++;
  2055. }
  2056. return 0;
  2057. }
  2058. int btrfs_commit_super(struct btrfs_root *root)
  2059. {
  2060. struct btrfs_trans_handle *trans;
  2061. int ret;
  2062. mutex_lock(&root->fs_info->cleaner_mutex);
  2063. btrfs_clean_old_snapshots(root);
  2064. mutex_unlock(&root->fs_info->cleaner_mutex);
  2065. trans = btrfs_start_transaction(root, 1);
  2066. ret = btrfs_commit_transaction(trans, root);
  2067. BUG_ON(ret);
  2068. /* run commit again to drop the original snapshot */
  2069. trans = btrfs_start_transaction(root, 1);
  2070. btrfs_commit_transaction(trans, root);
  2071. ret = btrfs_write_and_wait_transaction(NULL, root);
  2072. BUG_ON(ret);
  2073. ret = write_ctree_super(NULL, root, 0);
  2074. return ret;
  2075. }
  2076. int close_ctree(struct btrfs_root *root)
  2077. {
  2078. struct btrfs_fs_info *fs_info = root->fs_info;
  2079. int ret;
  2080. fs_info->closing = 1;
  2081. smp_mb();
  2082. kthread_stop(root->fs_info->transaction_kthread);
  2083. kthread_stop(root->fs_info->cleaner_kthread);
  2084. if (!(fs_info->sb->s_flags & MS_RDONLY)) {
  2085. ret = btrfs_commit_super(root);
  2086. if (ret)
  2087. printk(KERN_ERR "btrfs: commit super ret %d\n", ret);
  2088. }
  2089. fs_info->closing = 2;
  2090. smp_mb();
  2091. if (fs_info->delalloc_bytes) {
  2092. printk(KERN_INFO "btrfs: at unmount delalloc count %llu\n",
  2093. (unsigned long long)fs_info->delalloc_bytes);
  2094. }
  2095. if (fs_info->total_ref_cache_size) {
  2096. printk(KERN_INFO "btrfs: at umount reference cache size %llu\n",
  2097. (unsigned long long)fs_info->total_ref_cache_size);
  2098. }
  2099. free_extent_buffer(fs_info->extent_root->node);
  2100. free_extent_buffer(fs_info->extent_root->commit_root);
  2101. free_extent_buffer(fs_info->tree_root->node);
  2102. free_extent_buffer(fs_info->tree_root->commit_root);
  2103. free_extent_buffer(root->fs_info->chunk_root->node);
  2104. free_extent_buffer(root->fs_info->chunk_root->commit_root);
  2105. free_extent_buffer(root->fs_info->dev_root->node);
  2106. free_extent_buffer(root->fs_info->dev_root->commit_root);
  2107. free_extent_buffer(root->fs_info->csum_root->node);
  2108. free_extent_buffer(root->fs_info->csum_root->commit_root);
  2109. btrfs_free_block_groups(root->fs_info);
  2110. del_fs_roots(fs_info);
  2111. iput(fs_info->btree_inode);
  2112. btrfs_stop_workers(&fs_info->generic_worker);
  2113. btrfs_stop_workers(&fs_info->fixup_workers);
  2114. btrfs_stop_workers(&fs_info->delalloc_workers);
  2115. btrfs_stop_workers(&fs_info->workers);
  2116. btrfs_stop_workers(&fs_info->endio_workers);
  2117. btrfs_stop_workers(&fs_info->endio_meta_workers);
  2118. btrfs_stop_workers(&fs_info->endio_meta_write_workers);
  2119. btrfs_stop_workers(&fs_info->endio_write_workers);
  2120. btrfs_stop_workers(&fs_info->submit_workers);
  2121. btrfs_stop_workers(&fs_info->enospc_workers);
  2122. btrfs_close_devices(fs_info->fs_devices);
  2123. btrfs_mapping_tree_free(&fs_info->mapping_tree);
  2124. bdi_destroy(&fs_info->bdi);
  2125. cleanup_srcu_struct(&fs_info->subvol_srcu);
  2126. kfree(fs_info->extent_root);
  2127. kfree(fs_info->tree_root);
  2128. kfree(fs_info->chunk_root);
  2129. kfree(fs_info->dev_root);
  2130. kfree(fs_info->csum_root);
  2131. return 0;
  2132. }
  2133. int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid)
  2134. {
  2135. int ret;
  2136. struct inode *btree_inode = buf->first_page->mapping->host;
  2137. ret = extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf);
  2138. if (!ret)
  2139. return ret;
  2140. ret = verify_parent_transid(&BTRFS_I(btree_inode)->io_tree, buf,
  2141. parent_transid);
  2142. return !ret;
  2143. }
  2144. int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
  2145. {
  2146. struct inode *btree_inode = buf->first_page->mapping->host;
  2147. return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
  2148. buf);
  2149. }
  2150. void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
  2151. {
  2152. struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
  2153. u64 transid = btrfs_header_generation(buf);
  2154. struct inode *btree_inode = root->fs_info->btree_inode;
  2155. int was_dirty;
  2156. btrfs_assert_tree_locked(buf);
  2157. if (transid != root->fs_info->generation) {
  2158. printk(KERN_CRIT "btrfs transid mismatch buffer %llu, "
  2159. "found %llu running %llu\n",
  2160. (unsigned long long)buf->start,
  2161. (unsigned long long)transid,
  2162. (unsigned long long)root->fs_info->generation);
  2163. WARN_ON(1);
  2164. }
  2165. was_dirty = set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
  2166. buf);
  2167. if (!was_dirty) {
  2168. spin_lock(&root->fs_info->delalloc_lock);
  2169. root->fs_info->dirty_metadata_bytes += buf->len;
  2170. spin_unlock(&root->fs_info->delalloc_lock);
  2171. }
  2172. }
  2173. void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
  2174. {
  2175. /*
  2176. * looks as though older kernels can get into trouble with
  2177. * this code, they end up stuck in balance_dirty_pages forever
  2178. */
  2179. u64 num_dirty;
  2180. unsigned long thresh = 32 * 1024 * 1024;
  2181. if (current->flags & PF_MEMALLOC)
  2182. return;
  2183. num_dirty = root->fs_info->dirty_metadata_bytes;
  2184. if (num_dirty > thresh) {
  2185. balance_dirty_pages_ratelimited_nr(
  2186. root->fs_info->btree_inode->i_mapping, 1);
  2187. }
  2188. return;
  2189. }
  2190. int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid)
  2191. {
  2192. struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
  2193. int ret;
  2194. ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
  2195. if (ret == 0)
  2196. set_bit(EXTENT_BUFFER_UPTODATE, &buf->bflags);
  2197. return ret;
  2198. }
  2199. int btree_lock_page_hook(struct page *page)
  2200. {
  2201. struct inode *inode = page->mapping->host;
  2202. struct btrfs_root *root = BTRFS_I(inode)->root;
  2203. struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
  2204. struct extent_buffer *eb;
  2205. unsigned long len;
  2206. u64 bytenr = page_offset(page);
  2207. if (page->private == EXTENT_PAGE_PRIVATE)
  2208. goto out;
  2209. len = page->private >> 2;
  2210. eb = find_extent_buffer(io_tree, bytenr, len, GFP_NOFS);
  2211. if (!eb)
  2212. goto out;
  2213. btrfs_tree_lock(eb);
  2214. btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
  2215. if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
  2216. spin_lock(&root->fs_info->delalloc_lock);
  2217. if (root->fs_info->dirty_metadata_bytes >= eb->len)
  2218. root->fs_info->dirty_metadata_bytes -= eb->len;
  2219. else
  2220. WARN_ON(1);
  2221. spin_unlock(&root->fs_info->delalloc_lock);
  2222. }
  2223. btrfs_tree_unlock(eb);
  2224. free_extent_buffer(eb);
  2225. out:
  2226. lock_page(page);
  2227. return 0;
  2228. }
  2229. static struct extent_io_ops btree_extent_io_ops = {
  2230. .write_cache_pages_lock_hook = btree_lock_page_hook,
  2231. .readpage_end_io_hook = btree_readpage_end_io_hook,
  2232. .submit_bio_hook = btree_submit_bio_hook,
  2233. /* note we're sharing with inode.c for the merge bio hook */
  2234. .merge_bio_hook = btrfs_merge_bio_hook,
  2235. };