xfs_buf.c 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  1. /*
  2. * Copyright (c) 2000-2006 Silicon Graphics, Inc.
  3. * All Rights Reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it would be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write the Free Software Foundation,
  16. * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include "xfs.h"
  19. #include <linux/stddef.h>
  20. #include <linux/errno.h>
  21. #include <linux/gfp.h>
  22. #include <linux/pagemap.h>
  23. #include <linux/init.h>
  24. #include <linux/vmalloc.h>
  25. #include <linux/bio.h>
  26. #include <linux/sysctl.h>
  27. #include <linux/proc_fs.h>
  28. #include <linux/workqueue.h>
  29. #include <linux/percpu.h>
  30. #include <linux/blkdev.h>
  31. #include <linux/hash.h>
  32. #include <linux/kthread.h>
  33. #include <linux/migrate.h>
  34. #include <linux/backing-dev.h>
  35. #include <linux/freezer.h>
  36. #include <linux/list_sort.h>
  37. #include "xfs_sb.h"
  38. #include "xfs_inum.h"
  39. #include "xfs_ag.h"
  40. #include "xfs_dmapi.h"
  41. #include "xfs_mount.h"
  42. #include "xfs_trace.h"
  43. static kmem_zone_t *xfs_buf_zone;
  44. STATIC int xfsbufd(void *);
  45. STATIC int xfsbufd_wakeup(int, gfp_t);
  46. STATIC void xfs_buf_delwri_queue(xfs_buf_t *, int);
  47. static struct shrinker xfs_buf_shake = {
  48. .shrink = xfsbufd_wakeup,
  49. .seeks = DEFAULT_SEEKS,
  50. };
  51. static struct workqueue_struct *xfslogd_workqueue;
  52. struct workqueue_struct *xfsdatad_workqueue;
  53. struct workqueue_struct *xfsconvertd_workqueue;
  54. #ifdef XFS_BUF_LOCK_TRACKING
  55. # define XB_SET_OWNER(bp) ((bp)->b_last_holder = current->pid)
  56. # define XB_CLEAR_OWNER(bp) ((bp)->b_last_holder = -1)
  57. # define XB_GET_OWNER(bp) ((bp)->b_last_holder)
  58. #else
  59. # define XB_SET_OWNER(bp) do { } while (0)
  60. # define XB_CLEAR_OWNER(bp) do { } while (0)
  61. # define XB_GET_OWNER(bp) do { } while (0)
  62. #endif
  63. #define xb_to_gfp(flags) \
  64. ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : \
  65. ((flags) & XBF_DONT_BLOCK) ? GFP_NOFS : GFP_KERNEL) | __GFP_NOWARN)
  66. #define xb_to_km(flags) \
  67. (((flags) & XBF_DONT_BLOCK) ? KM_NOFS : KM_SLEEP)
  68. #define xfs_buf_allocate(flags) \
  69. kmem_zone_alloc(xfs_buf_zone, xb_to_km(flags))
  70. #define xfs_buf_deallocate(bp) \
  71. kmem_zone_free(xfs_buf_zone, (bp));
  72. static inline int
  73. xfs_buf_is_vmapped(
  74. struct xfs_buf *bp)
  75. {
  76. /*
  77. * Return true if the buffer is vmapped.
  78. *
  79. * The XBF_MAPPED flag is set if the buffer should be mapped, but the
  80. * code is clever enough to know it doesn't have to map a single page,
  81. * so the check has to be both for XBF_MAPPED and bp->b_page_count > 1.
  82. */
  83. return (bp->b_flags & XBF_MAPPED) && bp->b_page_count > 1;
  84. }
  85. static inline int
  86. xfs_buf_vmap_len(
  87. struct xfs_buf *bp)
  88. {
  89. return (bp->b_page_count * PAGE_SIZE) - bp->b_offset;
  90. }
  91. /*
  92. * Page Region interfaces.
  93. *
  94. * For pages in filesystems where the blocksize is smaller than the
  95. * pagesize, we use the page->private field (long) to hold a bitmap
  96. * of uptodate regions within the page.
  97. *
  98. * Each such region is "bytes per page / bits per long" bytes long.
  99. *
  100. * NBPPR == number-of-bytes-per-page-region
  101. * BTOPR == bytes-to-page-region (rounded up)
  102. * BTOPRT == bytes-to-page-region-truncated (rounded down)
  103. */
  104. #if (BITS_PER_LONG == 32)
  105. #define PRSHIFT (PAGE_CACHE_SHIFT - 5) /* (32 == 1<<5) */
  106. #elif (BITS_PER_LONG == 64)
  107. #define PRSHIFT (PAGE_CACHE_SHIFT - 6) /* (64 == 1<<6) */
  108. #else
  109. #error BITS_PER_LONG must be 32 or 64
  110. #endif
  111. #define NBPPR (PAGE_CACHE_SIZE/BITS_PER_LONG)
  112. #define BTOPR(b) (((unsigned int)(b) + (NBPPR - 1)) >> PRSHIFT)
  113. #define BTOPRT(b) (((unsigned int)(b) >> PRSHIFT))
  114. STATIC unsigned long
  115. page_region_mask(
  116. size_t offset,
  117. size_t length)
  118. {
  119. unsigned long mask;
  120. int first, final;
  121. first = BTOPR(offset);
  122. final = BTOPRT(offset + length - 1);
  123. first = min(first, final);
  124. mask = ~0UL;
  125. mask <<= BITS_PER_LONG - (final - first);
  126. mask >>= BITS_PER_LONG - (final);
  127. ASSERT(offset + length <= PAGE_CACHE_SIZE);
  128. ASSERT((final - first) < BITS_PER_LONG && (final - first) >= 0);
  129. return mask;
  130. }
  131. STATIC void
  132. set_page_region(
  133. struct page *page,
  134. size_t offset,
  135. size_t length)
  136. {
  137. set_page_private(page,
  138. page_private(page) | page_region_mask(offset, length));
  139. if (page_private(page) == ~0UL)
  140. SetPageUptodate(page);
  141. }
  142. STATIC int
  143. test_page_region(
  144. struct page *page,
  145. size_t offset,
  146. size_t length)
  147. {
  148. unsigned long mask = page_region_mask(offset, length);
  149. return (mask && (page_private(page) & mask) == mask);
  150. }
  151. /*
  152. * Internal xfs_buf_t object manipulation
  153. */
  154. STATIC void
  155. _xfs_buf_initialize(
  156. xfs_buf_t *bp,
  157. xfs_buftarg_t *target,
  158. xfs_off_t range_base,
  159. size_t range_length,
  160. xfs_buf_flags_t flags)
  161. {
  162. /*
  163. * We don't want certain flags to appear in b_flags.
  164. */
  165. flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD);
  166. memset(bp, 0, sizeof(xfs_buf_t));
  167. atomic_set(&bp->b_hold, 1);
  168. init_completion(&bp->b_iowait);
  169. INIT_LIST_HEAD(&bp->b_list);
  170. INIT_LIST_HEAD(&bp->b_hash_list);
  171. init_MUTEX_LOCKED(&bp->b_sema); /* held, no waiters */
  172. XB_SET_OWNER(bp);
  173. bp->b_target = target;
  174. bp->b_file_offset = range_base;
  175. /*
  176. * Set buffer_length and count_desired to the same value initially.
  177. * I/O routines should use count_desired, which will be the same in
  178. * most cases but may be reset (e.g. XFS recovery).
  179. */
  180. bp->b_buffer_length = bp->b_count_desired = range_length;
  181. bp->b_flags = flags;
  182. bp->b_bn = XFS_BUF_DADDR_NULL;
  183. atomic_set(&bp->b_pin_count, 0);
  184. init_waitqueue_head(&bp->b_waiters);
  185. XFS_STATS_INC(xb_create);
  186. trace_xfs_buf_init(bp, _RET_IP_);
  187. }
  188. /*
  189. * Allocate a page array capable of holding a specified number
  190. * of pages, and point the page buf at it.
  191. */
  192. STATIC int
  193. _xfs_buf_get_pages(
  194. xfs_buf_t *bp,
  195. int page_count,
  196. xfs_buf_flags_t flags)
  197. {
  198. /* Make sure that we have a page list */
  199. if (bp->b_pages == NULL) {
  200. bp->b_offset = xfs_buf_poff(bp->b_file_offset);
  201. bp->b_page_count = page_count;
  202. if (page_count <= XB_PAGES) {
  203. bp->b_pages = bp->b_page_array;
  204. } else {
  205. bp->b_pages = kmem_alloc(sizeof(struct page *) *
  206. page_count, xb_to_km(flags));
  207. if (bp->b_pages == NULL)
  208. return -ENOMEM;
  209. }
  210. memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
  211. }
  212. return 0;
  213. }
  214. /*
  215. * Frees b_pages if it was allocated.
  216. */
  217. STATIC void
  218. _xfs_buf_free_pages(
  219. xfs_buf_t *bp)
  220. {
  221. if (bp->b_pages != bp->b_page_array) {
  222. kmem_free(bp->b_pages);
  223. bp->b_pages = NULL;
  224. }
  225. }
  226. /*
  227. * Releases the specified buffer.
  228. *
  229. * The modification state of any associated pages is left unchanged.
  230. * The buffer most not be on any hash - use xfs_buf_rele instead for
  231. * hashed and refcounted buffers
  232. */
  233. void
  234. xfs_buf_free(
  235. xfs_buf_t *bp)
  236. {
  237. trace_xfs_buf_free(bp, _RET_IP_);
  238. ASSERT(list_empty(&bp->b_hash_list));
  239. if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) {
  240. uint i;
  241. if (xfs_buf_is_vmapped(bp))
  242. vm_unmap_ram(bp->b_addr - bp->b_offset,
  243. bp->b_page_count);
  244. for (i = 0; i < bp->b_page_count; i++) {
  245. struct page *page = bp->b_pages[i];
  246. if (bp->b_flags & _XBF_PAGE_CACHE)
  247. ASSERT(!PagePrivate(page));
  248. page_cache_release(page);
  249. }
  250. }
  251. _xfs_buf_free_pages(bp);
  252. xfs_buf_deallocate(bp);
  253. }
  254. /*
  255. * Finds all pages for buffer in question and builds it's page list.
  256. */
  257. STATIC int
  258. _xfs_buf_lookup_pages(
  259. xfs_buf_t *bp,
  260. uint flags)
  261. {
  262. struct address_space *mapping = bp->b_target->bt_mapping;
  263. size_t blocksize = bp->b_target->bt_bsize;
  264. size_t size = bp->b_count_desired;
  265. size_t nbytes, offset;
  266. gfp_t gfp_mask = xb_to_gfp(flags);
  267. unsigned short page_count, i;
  268. pgoff_t first;
  269. xfs_off_t end;
  270. int error;
  271. end = bp->b_file_offset + bp->b_buffer_length;
  272. page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
  273. error = _xfs_buf_get_pages(bp, page_count, flags);
  274. if (unlikely(error))
  275. return error;
  276. bp->b_flags |= _XBF_PAGE_CACHE;
  277. offset = bp->b_offset;
  278. first = bp->b_file_offset >> PAGE_CACHE_SHIFT;
  279. for (i = 0; i < bp->b_page_count; i++) {
  280. struct page *page;
  281. uint retries = 0;
  282. retry:
  283. page = find_or_create_page(mapping, first + i, gfp_mask);
  284. if (unlikely(page == NULL)) {
  285. if (flags & XBF_READ_AHEAD) {
  286. bp->b_page_count = i;
  287. for (i = 0; i < bp->b_page_count; i++)
  288. unlock_page(bp->b_pages[i]);
  289. return -ENOMEM;
  290. }
  291. /*
  292. * This could deadlock.
  293. *
  294. * But until all the XFS lowlevel code is revamped to
  295. * handle buffer allocation failures we can't do much.
  296. */
  297. if (!(++retries % 100))
  298. printk(KERN_ERR
  299. "XFS: possible memory allocation "
  300. "deadlock in %s (mode:0x%x)\n",
  301. __func__, gfp_mask);
  302. XFS_STATS_INC(xb_page_retries);
  303. xfsbufd_wakeup(0, gfp_mask);
  304. congestion_wait(BLK_RW_ASYNC, HZ/50);
  305. goto retry;
  306. }
  307. XFS_STATS_INC(xb_page_found);
  308. nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
  309. size -= nbytes;
  310. ASSERT(!PagePrivate(page));
  311. if (!PageUptodate(page)) {
  312. page_count--;
  313. if (blocksize >= PAGE_CACHE_SIZE) {
  314. if (flags & XBF_READ)
  315. bp->b_flags |= _XBF_PAGE_LOCKED;
  316. } else if (!PagePrivate(page)) {
  317. if (test_page_region(page, offset, nbytes))
  318. page_count++;
  319. }
  320. }
  321. bp->b_pages[i] = page;
  322. offset = 0;
  323. }
  324. if (!(bp->b_flags & _XBF_PAGE_LOCKED)) {
  325. for (i = 0; i < bp->b_page_count; i++)
  326. unlock_page(bp->b_pages[i]);
  327. }
  328. if (page_count == bp->b_page_count)
  329. bp->b_flags |= XBF_DONE;
  330. return error;
  331. }
  332. /*
  333. * Map buffer into kernel address-space if nessecary.
  334. */
  335. STATIC int
  336. _xfs_buf_map_pages(
  337. xfs_buf_t *bp,
  338. uint flags)
  339. {
  340. /* A single page buffer is always mappable */
  341. if (bp->b_page_count == 1) {
  342. bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
  343. bp->b_flags |= XBF_MAPPED;
  344. } else if (flags & XBF_MAPPED) {
  345. bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
  346. -1, PAGE_KERNEL);
  347. if (unlikely(bp->b_addr == NULL))
  348. return -ENOMEM;
  349. bp->b_addr += bp->b_offset;
  350. bp->b_flags |= XBF_MAPPED;
  351. }
  352. return 0;
  353. }
  354. /*
  355. * Finding and Reading Buffers
  356. */
  357. /*
  358. * Look up, and creates if absent, a lockable buffer for
  359. * a given range of an inode. The buffer is returned
  360. * locked. If other overlapping buffers exist, they are
  361. * released before the new buffer is created and locked,
  362. * which may imply that this call will block until those buffers
  363. * are unlocked. No I/O is implied by this call.
  364. */
  365. xfs_buf_t *
  366. _xfs_buf_find(
  367. xfs_buftarg_t *btp, /* block device target */
  368. xfs_off_t ioff, /* starting offset of range */
  369. size_t isize, /* length of range */
  370. xfs_buf_flags_t flags,
  371. xfs_buf_t *new_bp)
  372. {
  373. xfs_off_t range_base;
  374. size_t range_length;
  375. xfs_bufhash_t *hash;
  376. xfs_buf_t *bp, *n;
  377. range_base = (ioff << BBSHIFT);
  378. range_length = (isize << BBSHIFT);
  379. /* Check for IOs smaller than the sector size / not sector aligned */
  380. ASSERT(!(range_length < (1 << btp->bt_sshift)));
  381. ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
  382. hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)];
  383. spin_lock(&hash->bh_lock);
  384. list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
  385. ASSERT(btp == bp->b_target);
  386. if (bp->b_file_offset == range_base &&
  387. bp->b_buffer_length == range_length) {
  388. /*
  389. * If we look at something, bring it to the
  390. * front of the list for next time.
  391. */
  392. atomic_inc(&bp->b_hold);
  393. list_move(&bp->b_hash_list, &hash->bh_list);
  394. goto found;
  395. }
  396. }
  397. /* No match found */
  398. if (new_bp) {
  399. _xfs_buf_initialize(new_bp, btp, range_base,
  400. range_length, flags);
  401. new_bp->b_hash = hash;
  402. list_add(&new_bp->b_hash_list, &hash->bh_list);
  403. } else {
  404. XFS_STATS_INC(xb_miss_locked);
  405. }
  406. spin_unlock(&hash->bh_lock);
  407. return new_bp;
  408. found:
  409. spin_unlock(&hash->bh_lock);
  410. /* Attempt to get the semaphore without sleeping,
  411. * if this does not work then we need to drop the
  412. * spinlock and do a hard attempt on the semaphore.
  413. */
  414. if (down_trylock(&bp->b_sema)) {
  415. if (!(flags & XBF_TRYLOCK)) {
  416. /* wait for buffer ownership */
  417. xfs_buf_lock(bp);
  418. XFS_STATS_INC(xb_get_locked_waited);
  419. } else {
  420. /* We asked for a trylock and failed, no need
  421. * to look at file offset and length here, we
  422. * know that this buffer at least overlaps our
  423. * buffer and is locked, therefore our buffer
  424. * either does not exist, or is this buffer.
  425. */
  426. xfs_buf_rele(bp);
  427. XFS_STATS_INC(xb_busy_locked);
  428. return NULL;
  429. }
  430. } else {
  431. /* trylock worked */
  432. XB_SET_OWNER(bp);
  433. }
  434. if (bp->b_flags & XBF_STALE) {
  435. ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
  436. bp->b_flags &= XBF_MAPPED;
  437. }
  438. trace_xfs_buf_find(bp, flags, _RET_IP_);
  439. XFS_STATS_INC(xb_get_locked);
  440. return bp;
  441. }
  442. /*
  443. * Assembles a buffer covering the specified range.
  444. * Storage in memory for all portions of the buffer will be allocated,
  445. * although backing storage may not be.
  446. */
  447. xfs_buf_t *
  448. xfs_buf_get(
  449. xfs_buftarg_t *target,/* target for buffer */
  450. xfs_off_t ioff, /* starting offset of range */
  451. size_t isize, /* length of range */
  452. xfs_buf_flags_t flags)
  453. {
  454. xfs_buf_t *bp, *new_bp;
  455. int error = 0, i;
  456. new_bp = xfs_buf_allocate(flags);
  457. if (unlikely(!new_bp))
  458. return NULL;
  459. bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
  460. if (bp == new_bp) {
  461. error = _xfs_buf_lookup_pages(bp, flags);
  462. if (error)
  463. goto no_buffer;
  464. } else {
  465. xfs_buf_deallocate(new_bp);
  466. if (unlikely(bp == NULL))
  467. return NULL;
  468. }
  469. for (i = 0; i < bp->b_page_count; i++)
  470. mark_page_accessed(bp->b_pages[i]);
  471. if (!(bp->b_flags & XBF_MAPPED)) {
  472. error = _xfs_buf_map_pages(bp, flags);
  473. if (unlikely(error)) {
  474. printk(KERN_WARNING "%s: failed to map pages\n",
  475. __func__);
  476. goto no_buffer;
  477. }
  478. }
  479. XFS_STATS_INC(xb_get);
  480. /*
  481. * Always fill in the block number now, the mapped cases can do
  482. * their own overlay of this later.
  483. */
  484. bp->b_bn = ioff;
  485. bp->b_count_desired = bp->b_buffer_length;
  486. trace_xfs_buf_get(bp, flags, _RET_IP_);
  487. return bp;
  488. no_buffer:
  489. if (flags & (XBF_LOCK | XBF_TRYLOCK))
  490. xfs_buf_unlock(bp);
  491. xfs_buf_rele(bp);
  492. return NULL;
  493. }
  494. STATIC int
  495. _xfs_buf_read(
  496. xfs_buf_t *bp,
  497. xfs_buf_flags_t flags)
  498. {
  499. int status;
  500. ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE)));
  501. ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
  502. bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
  503. XBF_READ_AHEAD | _XBF_RUN_QUEUES);
  504. bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | \
  505. XBF_READ_AHEAD | _XBF_RUN_QUEUES);
  506. status = xfs_buf_iorequest(bp);
  507. if (!status && !(flags & XBF_ASYNC))
  508. status = xfs_buf_iowait(bp);
  509. return status;
  510. }
  511. xfs_buf_t *
  512. xfs_buf_read(
  513. xfs_buftarg_t *target,
  514. xfs_off_t ioff,
  515. size_t isize,
  516. xfs_buf_flags_t flags)
  517. {
  518. xfs_buf_t *bp;
  519. flags |= XBF_READ;
  520. bp = xfs_buf_get(target, ioff, isize, flags);
  521. if (bp) {
  522. trace_xfs_buf_read(bp, flags, _RET_IP_);
  523. if (!XFS_BUF_ISDONE(bp)) {
  524. XFS_STATS_INC(xb_get_read);
  525. _xfs_buf_read(bp, flags);
  526. } else if (flags & XBF_ASYNC) {
  527. /*
  528. * Read ahead call which is already satisfied,
  529. * drop the buffer
  530. */
  531. goto no_buffer;
  532. } else {
  533. /* We do not want read in the flags */
  534. bp->b_flags &= ~XBF_READ;
  535. }
  536. }
  537. return bp;
  538. no_buffer:
  539. if (flags & (XBF_LOCK | XBF_TRYLOCK))
  540. xfs_buf_unlock(bp);
  541. xfs_buf_rele(bp);
  542. return NULL;
  543. }
  544. /*
  545. * If we are not low on memory then do the readahead in a deadlock
  546. * safe manner.
  547. */
  548. void
  549. xfs_buf_readahead(
  550. xfs_buftarg_t *target,
  551. xfs_off_t ioff,
  552. size_t isize,
  553. xfs_buf_flags_t flags)
  554. {
  555. struct backing_dev_info *bdi;
  556. bdi = target->bt_mapping->backing_dev_info;
  557. if (bdi_read_congested(bdi))
  558. return;
  559. flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
  560. xfs_buf_read(target, ioff, isize, flags);
  561. }
  562. xfs_buf_t *
  563. xfs_buf_get_empty(
  564. size_t len,
  565. xfs_buftarg_t *target)
  566. {
  567. xfs_buf_t *bp;
  568. bp = xfs_buf_allocate(0);
  569. if (bp)
  570. _xfs_buf_initialize(bp, target, 0, len, 0);
  571. return bp;
  572. }
  573. static inline struct page *
  574. mem_to_page(
  575. void *addr)
  576. {
  577. if ((!is_vmalloc_addr(addr))) {
  578. return virt_to_page(addr);
  579. } else {
  580. return vmalloc_to_page(addr);
  581. }
  582. }
  583. int
  584. xfs_buf_associate_memory(
  585. xfs_buf_t *bp,
  586. void *mem,
  587. size_t len)
  588. {
  589. int rval;
  590. int i = 0;
  591. unsigned long pageaddr;
  592. unsigned long offset;
  593. size_t buflen;
  594. int page_count;
  595. pageaddr = (unsigned long)mem & PAGE_CACHE_MASK;
  596. offset = (unsigned long)mem - pageaddr;
  597. buflen = PAGE_CACHE_ALIGN(len + offset);
  598. page_count = buflen >> PAGE_CACHE_SHIFT;
  599. /* Free any previous set of page pointers */
  600. if (bp->b_pages)
  601. _xfs_buf_free_pages(bp);
  602. bp->b_pages = NULL;
  603. bp->b_addr = mem;
  604. rval = _xfs_buf_get_pages(bp, page_count, XBF_DONT_BLOCK);
  605. if (rval)
  606. return rval;
  607. bp->b_offset = offset;
  608. for (i = 0; i < bp->b_page_count; i++) {
  609. bp->b_pages[i] = mem_to_page((void *)pageaddr);
  610. pageaddr += PAGE_CACHE_SIZE;
  611. }
  612. bp->b_count_desired = len;
  613. bp->b_buffer_length = buflen;
  614. bp->b_flags |= XBF_MAPPED;
  615. bp->b_flags &= ~_XBF_PAGE_LOCKED;
  616. return 0;
  617. }
  618. xfs_buf_t *
  619. xfs_buf_get_noaddr(
  620. size_t len,
  621. xfs_buftarg_t *target)
  622. {
  623. unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
  624. int error, i;
  625. xfs_buf_t *bp;
  626. bp = xfs_buf_allocate(0);
  627. if (unlikely(bp == NULL))
  628. goto fail;
  629. _xfs_buf_initialize(bp, target, 0, len, 0);
  630. error = _xfs_buf_get_pages(bp, page_count, 0);
  631. if (error)
  632. goto fail_free_buf;
  633. for (i = 0; i < page_count; i++) {
  634. bp->b_pages[i] = alloc_page(GFP_KERNEL);
  635. if (!bp->b_pages[i])
  636. goto fail_free_mem;
  637. }
  638. bp->b_flags |= _XBF_PAGES;
  639. error = _xfs_buf_map_pages(bp, XBF_MAPPED);
  640. if (unlikely(error)) {
  641. printk(KERN_WARNING "%s: failed to map pages\n",
  642. __func__);
  643. goto fail_free_mem;
  644. }
  645. xfs_buf_unlock(bp);
  646. trace_xfs_buf_get_noaddr(bp, _RET_IP_);
  647. return bp;
  648. fail_free_mem:
  649. while (--i >= 0)
  650. __free_page(bp->b_pages[i]);
  651. _xfs_buf_free_pages(bp);
  652. fail_free_buf:
  653. xfs_buf_deallocate(bp);
  654. fail:
  655. return NULL;
  656. }
  657. /*
  658. * Increment reference count on buffer, to hold the buffer concurrently
  659. * with another thread which may release (free) the buffer asynchronously.
  660. * Must hold the buffer already to call this function.
  661. */
  662. void
  663. xfs_buf_hold(
  664. xfs_buf_t *bp)
  665. {
  666. trace_xfs_buf_hold(bp, _RET_IP_);
  667. atomic_inc(&bp->b_hold);
  668. }
  669. /*
  670. * Releases a hold on the specified buffer. If the
  671. * the hold count is 1, calls xfs_buf_free.
  672. */
  673. void
  674. xfs_buf_rele(
  675. xfs_buf_t *bp)
  676. {
  677. xfs_bufhash_t *hash = bp->b_hash;
  678. trace_xfs_buf_rele(bp, _RET_IP_);
  679. if (unlikely(!hash)) {
  680. ASSERT(!bp->b_relse);
  681. if (atomic_dec_and_test(&bp->b_hold))
  682. xfs_buf_free(bp);
  683. return;
  684. }
  685. ASSERT(atomic_read(&bp->b_hold) > 0);
  686. if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) {
  687. if (bp->b_relse) {
  688. atomic_inc(&bp->b_hold);
  689. spin_unlock(&hash->bh_lock);
  690. (*(bp->b_relse)) (bp);
  691. } else if (bp->b_flags & XBF_FS_MANAGED) {
  692. spin_unlock(&hash->bh_lock);
  693. } else {
  694. ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
  695. list_del_init(&bp->b_hash_list);
  696. spin_unlock(&hash->bh_lock);
  697. xfs_buf_free(bp);
  698. }
  699. }
  700. }
  701. /*
  702. * Mutual exclusion on buffers. Locking model:
  703. *
  704. * Buffers associated with inodes for which buffer locking
  705. * is not enabled are not protected by semaphores, and are
  706. * assumed to be exclusively owned by the caller. There is a
  707. * spinlock in the buffer, used by the caller when concurrent
  708. * access is possible.
  709. */
  710. /*
  711. * Locks a buffer object, if it is not already locked.
  712. * Note that this in no way locks the underlying pages, so it is only
  713. * useful for synchronizing concurrent use of buffer objects, not for
  714. * synchronizing independent access to the underlying pages.
  715. */
  716. int
  717. xfs_buf_cond_lock(
  718. xfs_buf_t *bp)
  719. {
  720. int locked;
  721. locked = down_trylock(&bp->b_sema) == 0;
  722. if (locked)
  723. XB_SET_OWNER(bp);
  724. trace_xfs_buf_cond_lock(bp, _RET_IP_);
  725. return locked ? 0 : -EBUSY;
  726. }
  727. int
  728. xfs_buf_lock_value(
  729. xfs_buf_t *bp)
  730. {
  731. return bp->b_sema.count;
  732. }
  733. /*
  734. * Locks a buffer object.
  735. * Note that this in no way locks the underlying pages, so it is only
  736. * useful for synchronizing concurrent use of buffer objects, not for
  737. * synchronizing independent access to the underlying pages.
  738. */
  739. void
  740. xfs_buf_lock(
  741. xfs_buf_t *bp)
  742. {
  743. trace_xfs_buf_lock(bp, _RET_IP_);
  744. if (atomic_read(&bp->b_io_remaining))
  745. blk_run_address_space(bp->b_target->bt_mapping);
  746. down(&bp->b_sema);
  747. XB_SET_OWNER(bp);
  748. trace_xfs_buf_lock_done(bp, _RET_IP_);
  749. }
  750. /*
  751. * Releases the lock on the buffer object.
  752. * If the buffer is marked delwri but is not queued, do so before we
  753. * unlock the buffer as we need to set flags correctly. We also need to
  754. * take a reference for the delwri queue because the unlocker is going to
  755. * drop their's and they don't know we just queued it.
  756. */
  757. void
  758. xfs_buf_unlock(
  759. xfs_buf_t *bp)
  760. {
  761. if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
  762. atomic_inc(&bp->b_hold);
  763. bp->b_flags |= XBF_ASYNC;
  764. xfs_buf_delwri_queue(bp, 0);
  765. }
  766. XB_CLEAR_OWNER(bp);
  767. up(&bp->b_sema);
  768. trace_xfs_buf_unlock(bp, _RET_IP_);
  769. }
  770. /*
  771. * Pinning Buffer Storage in Memory
  772. * Ensure that no attempt to force a buffer to disk will succeed.
  773. */
  774. void
  775. xfs_buf_pin(
  776. xfs_buf_t *bp)
  777. {
  778. trace_xfs_buf_pin(bp, _RET_IP_);
  779. atomic_inc(&bp->b_pin_count);
  780. }
  781. void
  782. xfs_buf_unpin(
  783. xfs_buf_t *bp)
  784. {
  785. trace_xfs_buf_unpin(bp, _RET_IP_);
  786. if (atomic_dec_and_test(&bp->b_pin_count))
  787. wake_up_all(&bp->b_waiters);
  788. }
  789. int
  790. xfs_buf_ispin(
  791. xfs_buf_t *bp)
  792. {
  793. return atomic_read(&bp->b_pin_count);
  794. }
  795. STATIC void
  796. xfs_buf_wait_unpin(
  797. xfs_buf_t *bp)
  798. {
  799. DECLARE_WAITQUEUE (wait, current);
  800. if (atomic_read(&bp->b_pin_count) == 0)
  801. return;
  802. add_wait_queue(&bp->b_waiters, &wait);
  803. for (;;) {
  804. set_current_state(TASK_UNINTERRUPTIBLE);
  805. if (atomic_read(&bp->b_pin_count) == 0)
  806. break;
  807. if (atomic_read(&bp->b_io_remaining))
  808. blk_run_address_space(bp->b_target->bt_mapping);
  809. schedule();
  810. }
  811. remove_wait_queue(&bp->b_waiters, &wait);
  812. set_current_state(TASK_RUNNING);
  813. }
  814. /*
  815. * Buffer Utility Routines
  816. */
  817. STATIC void
  818. xfs_buf_iodone_work(
  819. struct work_struct *work)
  820. {
  821. xfs_buf_t *bp =
  822. container_of(work, xfs_buf_t, b_iodone_work);
  823. /*
  824. * We can get an EOPNOTSUPP to ordered writes. Here we clear the
  825. * ordered flag and reissue them. Because we can't tell the higher
  826. * layers directly that they should not issue ordered I/O anymore, they
  827. * need to check if the _XFS_BARRIER_FAILED flag was set during I/O completion.
  828. */
  829. if ((bp->b_error == EOPNOTSUPP) &&
  830. (bp->b_flags & (XBF_ORDERED|XBF_ASYNC)) == (XBF_ORDERED|XBF_ASYNC)) {
  831. trace_xfs_buf_ordered_retry(bp, _RET_IP_);
  832. bp->b_flags &= ~XBF_ORDERED;
  833. bp->b_flags |= _XFS_BARRIER_FAILED;
  834. xfs_buf_iorequest(bp);
  835. } else if (bp->b_iodone)
  836. (*(bp->b_iodone))(bp);
  837. else if (bp->b_flags & XBF_ASYNC)
  838. xfs_buf_relse(bp);
  839. }
  840. void
  841. xfs_buf_ioend(
  842. xfs_buf_t *bp,
  843. int schedule)
  844. {
  845. trace_xfs_buf_iodone(bp, _RET_IP_);
  846. bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
  847. if (bp->b_error == 0)
  848. bp->b_flags |= XBF_DONE;
  849. if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
  850. if (schedule) {
  851. INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
  852. queue_work(xfslogd_workqueue, &bp->b_iodone_work);
  853. } else {
  854. xfs_buf_iodone_work(&bp->b_iodone_work);
  855. }
  856. } else {
  857. complete(&bp->b_iowait);
  858. }
  859. }
  860. void
  861. xfs_buf_ioerror(
  862. xfs_buf_t *bp,
  863. int error)
  864. {
  865. ASSERT(error >= 0 && error <= 0xffff);
  866. bp->b_error = (unsigned short)error;
  867. trace_xfs_buf_ioerror(bp, error, _RET_IP_);
  868. }
  869. int
  870. xfs_bwrite(
  871. struct xfs_mount *mp,
  872. struct xfs_buf *bp)
  873. {
  874. int iowait = (bp->b_flags & XBF_ASYNC) == 0;
  875. int error = 0;
  876. bp->b_strat = xfs_bdstrat_cb;
  877. bp->b_mount = mp;
  878. bp->b_flags |= XBF_WRITE;
  879. if (!iowait)
  880. bp->b_flags |= _XBF_RUN_QUEUES;
  881. xfs_buf_delwri_dequeue(bp);
  882. xfs_buf_iostrategy(bp);
  883. if (iowait) {
  884. error = xfs_buf_iowait(bp);
  885. if (error)
  886. xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
  887. xfs_buf_relse(bp);
  888. }
  889. return error;
  890. }
  891. void
  892. xfs_bdwrite(
  893. void *mp,
  894. struct xfs_buf *bp)
  895. {
  896. trace_xfs_buf_bdwrite(bp, _RET_IP_);
  897. bp->b_strat = xfs_bdstrat_cb;
  898. bp->b_mount = mp;
  899. bp->b_flags &= ~XBF_READ;
  900. bp->b_flags |= (XBF_DELWRI | XBF_ASYNC);
  901. xfs_buf_delwri_queue(bp, 1);
  902. }
  903. /*
  904. * Called when we want to stop a buffer from getting written or read.
  905. * We attach the EIO error, muck with its flags, and call biodone
  906. * so that the proper iodone callbacks get called.
  907. */
  908. STATIC int
  909. xfs_bioerror(
  910. xfs_buf_t *bp)
  911. {
  912. #ifdef XFSERRORDEBUG
  913. ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
  914. #endif
  915. /*
  916. * No need to wait until the buffer is unpinned, we aren't flushing it.
  917. */
  918. XFS_BUF_ERROR(bp, EIO);
  919. /*
  920. * We're calling biodone, so delete XBF_DONE flag.
  921. */
  922. XFS_BUF_UNREAD(bp);
  923. XFS_BUF_UNDELAYWRITE(bp);
  924. XFS_BUF_UNDONE(bp);
  925. XFS_BUF_STALE(bp);
  926. XFS_BUF_CLR_BDSTRAT_FUNC(bp);
  927. xfs_biodone(bp);
  928. return EIO;
  929. }
  930. /*
  931. * Same as xfs_bioerror, except that we are releasing the buffer
  932. * here ourselves, and avoiding the biodone call.
  933. * This is meant for userdata errors; metadata bufs come with
  934. * iodone functions attached, so that we can track down errors.
  935. */
  936. STATIC int
  937. xfs_bioerror_relse(
  938. struct xfs_buf *bp)
  939. {
  940. int64_t fl = XFS_BUF_BFLAGS(bp);
  941. /*
  942. * No need to wait until the buffer is unpinned.
  943. * We aren't flushing it.
  944. *
  945. * chunkhold expects B_DONE to be set, whether
  946. * we actually finish the I/O or not. We don't want to
  947. * change that interface.
  948. */
  949. XFS_BUF_UNREAD(bp);
  950. XFS_BUF_UNDELAYWRITE(bp);
  951. XFS_BUF_DONE(bp);
  952. XFS_BUF_STALE(bp);
  953. XFS_BUF_CLR_IODONE_FUNC(bp);
  954. XFS_BUF_CLR_BDSTRAT_FUNC(bp);
  955. if (!(fl & XBF_ASYNC)) {
  956. /*
  957. * Mark b_error and B_ERROR _both_.
  958. * Lot's of chunkcache code assumes that.
  959. * There's no reason to mark error for
  960. * ASYNC buffers.
  961. */
  962. XFS_BUF_ERROR(bp, EIO);
  963. XFS_BUF_FINISH_IOWAIT(bp);
  964. } else {
  965. xfs_buf_relse(bp);
  966. }
  967. return EIO;
  968. }
  969. /*
  970. * All xfs metadata buffers except log state machine buffers
  971. * get this attached as their b_bdstrat callback function.
  972. * This is so that we can catch a buffer
  973. * after prematurely unpinning it to forcibly shutdown the filesystem.
  974. */
  975. int
  976. xfs_bdstrat_cb(
  977. struct xfs_buf *bp)
  978. {
  979. if (XFS_FORCED_SHUTDOWN(bp->b_mount)) {
  980. trace_xfs_bdstrat_shut(bp, _RET_IP_);
  981. /*
  982. * Metadata write that didn't get logged but
  983. * written delayed anyway. These aren't associated
  984. * with a transaction, and can be ignored.
  985. */
  986. if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
  987. return xfs_bioerror_relse(bp);
  988. else
  989. return xfs_bioerror(bp);
  990. }
  991. xfs_buf_iorequest(bp);
  992. return 0;
  993. }
  994. /*
  995. * Wrapper around bdstrat so that we can stop data from going to disk in case
  996. * we are shutting down the filesystem. Typically user data goes thru this
  997. * path; one of the exceptions is the superblock.
  998. */
  999. void
  1000. xfsbdstrat(
  1001. struct xfs_mount *mp,
  1002. struct xfs_buf *bp)
  1003. {
  1004. if (XFS_FORCED_SHUTDOWN(mp)) {
  1005. trace_xfs_bdstrat_shut(bp, _RET_IP_);
  1006. xfs_bioerror_relse(bp);
  1007. return;
  1008. }
  1009. xfs_buf_iorequest(bp);
  1010. }
  1011. STATIC void
  1012. _xfs_buf_ioend(
  1013. xfs_buf_t *bp,
  1014. int schedule)
  1015. {
  1016. if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
  1017. bp->b_flags &= ~_XBF_PAGE_LOCKED;
  1018. xfs_buf_ioend(bp, schedule);
  1019. }
  1020. }
  1021. STATIC void
  1022. xfs_buf_bio_end_io(
  1023. struct bio *bio,
  1024. int error)
  1025. {
  1026. xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
  1027. unsigned int blocksize = bp->b_target->bt_bsize;
  1028. struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
  1029. xfs_buf_ioerror(bp, -error);
  1030. if (!error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
  1031. invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
  1032. do {
  1033. struct page *page = bvec->bv_page;
  1034. ASSERT(!PagePrivate(page));
  1035. if (unlikely(bp->b_error)) {
  1036. if (bp->b_flags & XBF_READ)
  1037. ClearPageUptodate(page);
  1038. } else if (blocksize >= PAGE_CACHE_SIZE) {
  1039. SetPageUptodate(page);
  1040. } else if (!PagePrivate(page) &&
  1041. (bp->b_flags & _XBF_PAGE_CACHE)) {
  1042. set_page_region(page, bvec->bv_offset, bvec->bv_len);
  1043. }
  1044. if (--bvec >= bio->bi_io_vec)
  1045. prefetchw(&bvec->bv_page->flags);
  1046. if (bp->b_flags & _XBF_PAGE_LOCKED)
  1047. unlock_page(page);
  1048. } while (bvec >= bio->bi_io_vec);
  1049. _xfs_buf_ioend(bp, 1);
  1050. bio_put(bio);
  1051. }
  1052. STATIC void
  1053. _xfs_buf_ioapply(
  1054. xfs_buf_t *bp)
  1055. {
  1056. int rw, map_i, total_nr_pages, nr_pages;
  1057. struct bio *bio;
  1058. int offset = bp->b_offset;
  1059. int size = bp->b_count_desired;
  1060. sector_t sector = bp->b_bn;
  1061. unsigned int blocksize = bp->b_target->bt_bsize;
  1062. total_nr_pages = bp->b_page_count;
  1063. map_i = 0;
  1064. if (bp->b_flags & XBF_ORDERED) {
  1065. ASSERT(!(bp->b_flags & XBF_READ));
  1066. rw = WRITE_BARRIER;
  1067. } else if (bp->b_flags & XBF_LOG_BUFFER) {
  1068. ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
  1069. bp->b_flags &= ~_XBF_RUN_QUEUES;
  1070. rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
  1071. } else if (bp->b_flags & _XBF_RUN_QUEUES) {
  1072. ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
  1073. bp->b_flags &= ~_XBF_RUN_QUEUES;
  1074. rw = (bp->b_flags & XBF_WRITE) ? WRITE_META : READ_META;
  1075. } else {
  1076. rw = (bp->b_flags & XBF_WRITE) ? WRITE :
  1077. (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
  1078. }
  1079. /* Special code path for reading a sub page size buffer in --
  1080. * we populate up the whole page, and hence the other metadata
  1081. * in the same page. This optimization is only valid when the
  1082. * filesystem block size is not smaller than the page size.
  1083. */
  1084. if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
  1085. ((bp->b_flags & (XBF_READ|_XBF_PAGE_LOCKED)) ==
  1086. (XBF_READ|_XBF_PAGE_LOCKED)) &&
  1087. (blocksize >= PAGE_CACHE_SIZE)) {
  1088. bio = bio_alloc(GFP_NOIO, 1);
  1089. bio->bi_bdev = bp->b_target->bt_bdev;
  1090. bio->bi_sector = sector - (offset >> BBSHIFT);
  1091. bio->bi_end_io = xfs_buf_bio_end_io;
  1092. bio->bi_private = bp;
  1093. bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
  1094. size = 0;
  1095. atomic_inc(&bp->b_io_remaining);
  1096. goto submit_io;
  1097. }
  1098. next_chunk:
  1099. atomic_inc(&bp->b_io_remaining);
  1100. nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
  1101. if (nr_pages > total_nr_pages)
  1102. nr_pages = total_nr_pages;
  1103. bio = bio_alloc(GFP_NOIO, nr_pages);
  1104. bio->bi_bdev = bp->b_target->bt_bdev;
  1105. bio->bi_sector = sector;
  1106. bio->bi_end_io = xfs_buf_bio_end_io;
  1107. bio->bi_private = bp;
  1108. for (; size && nr_pages; nr_pages--, map_i++) {
  1109. int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
  1110. if (nbytes > size)
  1111. nbytes = size;
  1112. rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
  1113. if (rbytes < nbytes)
  1114. break;
  1115. offset = 0;
  1116. sector += nbytes >> BBSHIFT;
  1117. size -= nbytes;
  1118. total_nr_pages--;
  1119. }
  1120. submit_io:
  1121. if (likely(bio->bi_size)) {
  1122. if (xfs_buf_is_vmapped(bp)) {
  1123. flush_kernel_vmap_range(bp->b_addr,
  1124. xfs_buf_vmap_len(bp));
  1125. }
  1126. submit_bio(rw, bio);
  1127. if (size)
  1128. goto next_chunk;
  1129. } else {
  1130. bio_put(bio);
  1131. xfs_buf_ioerror(bp, EIO);
  1132. }
  1133. }
  1134. int
  1135. xfs_buf_iorequest(
  1136. xfs_buf_t *bp)
  1137. {
  1138. trace_xfs_buf_iorequest(bp, _RET_IP_);
  1139. if (bp->b_flags & XBF_DELWRI) {
  1140. xfs_buf_delwri_queue(bp, 1);
  1141. return 0;
  1142. }
  1143. if (bp->b_flags & XBF_WRITE) {
  1144. xfs_buf_wait_unpin(bp);
  1145. }
  1146. xfs_buf_hold(bp);
  1147. /* Set the count to 1 initially, this will stop an I/O
  1148. * completion callout which happens before we have started
  1149. * all the I/O from calling xfs_buf_ioend too early.
  1150. */
  1151. atomic_set(&bp->b_io_remaining, 1);
  1152. _xfs_buf_ioapply(bp);
  1153. _xfs_buf_ioend(bp, 0);
  1154. xfs_buf_rele(bp);
  1155. return 0;
  1156. }
  1157. /*
  1158. * Waits for I/O to complete on the buffer supplied.
  1159. * It returns immediately if no I/O is pending.
  1160. * It returns the I/O error code, if any, or 0 if there was no error.
  1161. */
  1162. int
  1163. xfs_buf_iowait(
  1164. xfs_buf_t *bp)
  1165. {
  1166. trace_xfs_buf_iowait(bp, _RET_IP_);
  1167. if (atomic_read(&bp->b_io_remaining))
  1168. blk_run_address_space(bp->b_target->bt_mapping);
  1169. wait_for_completion(&bp->b_iowait);
  1170. trace_xfs_buf_iowait_done(bp, _RET_IP_);
  1171. return bp->b_error;
  1172. }
  1173. xfs_caddr_t
  1174. xfs_buf_offset(
  1175. xfs_buf_t *bp,
  1176. size_t offset)
  1177. {
  1178. struct page *page;
  1179. if (bp->b_flags & XBF_MAPPED)
  1180. return XFS_BUF_PTR(bp) + offset;
  1181. offset += bp->b_offset;
  1182. page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
  1183. return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
  1184. }
  1185. /*
  1186. * Move data into or out of a buffer.
  1187. */
  1188. void
  1189. xfs_buf_iomove(
  1190. xfs_buf_t *bp, /* buffer to process */
  1191. size_t boff, /* starting buffer offset */
  1192. size_t bsize, /* length to copy */
  1193. void *data, /* data address */
  1194. xfs_buf_rw_t mode) /* read/write/zero flag */
  1195. {
  1196. size_t bend, cpoff, csize;
  1197. struct page *page;
  1198. bend = boff + bsize;
  1199. while (boff < bend) {
  1200. page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
  1201. cpoff = xfs_buf_poff(boff + bp->b_offset);
  1202. csize = min_t(size_t,
  1203. PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
  1204. ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
  1205. switch (mode) {
  1206. case XBRW_ZERO:
  1207. memset(page_address(page) + cpoff, 0, csize);
  1208. break;
  1209. case XBRW_READ:
  1210. memcpy(data, page_address(page) + cpoff, csize);
  1211. break;
  1212. case XBRW_WRITE:
  1213. memcpy(page_address(page) + cpoff, data, csize);
  1214. }
  1215. boff += csize;
  1216. data += csize;
  1217. }
  1218. }
  1219. /*
  1220. * Handling of buffer targets (buftargs).
  1221. */
  1222. /*
  1223. * Wait for any bufs with callbacks that have been submitted but
  1224. * have not yet returned... walk the hash list for the target.
  1225. */
  1226. void
  1227. xfs_wait_buftarg(
  1228. xfs_buftarg_t *btp)
  1229. {
  1230. xfs_buf_t *bp, *n;
  1231. xfs_bufhash_t *hash;
  1232. uint i;
  1233. for (i = 0; i < (1 << btp->bt_hashshift); i++) {
  1234. hash = &btp->bt_hash[i];
  1235. again:
  1236. spin_lock(&hash->bh_lock);
  1237. list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
  1238. ASSERT(btp == bp->b_target);
  1239. if (!(bp->b_flags & XBF_FS_MANAGED)) {
  1240. spin_unlock(&hash->bh_lock);
  1241. /*
  1242. * Catch superblock reference count leaks
  1243. * immediately
  1244. */
  1245. BUG_ON(bp->b_bn == 0);
  1246. delay(100);
  1247. goto again;
  1248. }
  1249. }
  1250. spin_unlock(&hash->bh_lock);
  1251. }
  1252. }
  1253. /*
  1254. * Allocate buffer hash table for a given target.
  1255. * For devices containing metadata (i.e. not the log/realtime devices)
  1256. * we need to allocate a much larger hash table.
  1257. */
  1258. STATIC void
  1259. xfs_alloc_bufhash(
  1260. xfs_buftarg_t *btp,
  1261. int external)
  1262. {
  1263. unsigned int i;
  1264. btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */
  1265. btp->bt_hashmask = (1 << btp->bt_hashshift) - 1;
  1266. btp->bt_hash = kmem_zalloc_large((1 << btp->bt_hashshift) *
  1267. sizeof(xfs_bufhash_t));
  1268. for (i = 0; i < (1 << btp->bt_hashshift); i++) {
  1269. spin_lock_init(&btp->bt_hash[i].bh_lock);
  1270. INIT_LIST_HEAD(&btp->bt_hash[i].bh_list);
  1271. }
  1272. }
  1273. STATIC void
  1274. xfs_free_bufhash(
  1275. xfs_buftarg_t *btp)
  1276. {
  1277. kmem_free_large(btp->bt_hash);
  1278. btp->bt_hash = NULL;
  1279. }
  1280. /*
  1281. * buftarg list for delwrite queue processing
  1282. */
  1283. static LIST_HEAD(xfs_buftarg_list);
  1284. static DEFINE_SPINLOCK(xfs_buftarg_lock);
  1285. STATIC void
  1286. xfs_register_buftarg(
  1287. xfs_buftarg_t *btp)
  1288. {
  1289. spin_lock(&xfs_buftarg_lock);
  1290. list_add(&btp->bt_list, &xfs_buftarg_list);
  1291. spin_unlock(&xfs_buftarg_lock);
  1292. }
  1293. STATIC void
  1294. xfs_unregister_buftarg(
  1295. xfs_buftarg_t *btp)
  1296. {
  1297. spin_lock(&xfs_buftarg_lock);
  1298. list_del(&btp->bt_list);
  1299. spin_unlock(&xfs_buftarg_lock);
  1300. }
  1301. void
  1302. xfs_free_buftarg(
  1303. struct xfs_mount *mp,
  1304. struct xfs_buftarg *btp)
  1305. {
  1306. xfs_flush_buftarg(btp, 1);
  1307. if (mp->m_flags & XFS_MOUNT_BARRIER)
  1308. xfs_blkdev_issue_flush(btp);
  1309. xfs_free_bufhash(btp);
  1310. iput(btp->bt_mapping->host);
  1311. /* Unregister the buftarg first so that we don't get a
  1312. * wakeup finding a non-existent task
  1313. */
  1314. xfs_unregister_buftarg(btp);
  1315. kthread_stop(btp->bt_task);
  1316. kmem_free(btp);
  1317. }
  1318. STATIC int
  1319. xfs_setsize_buftarg_flags(
  1320. xfs_buftarg_t *btp,
  1321. unsigned int blocksize,
  1322. unsigned int sectorsize,
  1323. int verbose)
  1324. {
  1325. btp->bt_bsize = blocksize;
  1326. btp->bt_sshift = ffs(sectorsize) - 1;
  1327. btp->bt_smask = sectorsize - 1;
  1328. if (set_blocksize(btp->bt_bdev, sectorsize)) {
  1329. printk(KERN_WARNING
  1330. "XFS: Cannot set_blocksize to %u on device %s\n",
  1331. sectorsize, XFS_BUFTARG_NAME(btp));
  1332. return EINVAL;
  1333. }
  1334. if (verbose &&
  1335. (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
  1336. printk(KERN_WARNING
  1337. "XFS: %u byte sectors in use on device %s. "
  1338. "This is suboptimal; %u or greater is ideal.\n",
  1339. sectorsize, XFS_BUFTARG_NAME(btp),
  1340. (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
  1341. }
  1342. return 0;
  1343. }
  1344. /*
  1345. * When allocating the initial buffer target we have not yet
  1346. * read in the superblock, so don't know what sized sectors
  1347. * are being used is at this early stage. Play safe.
  1348. */
  1349. STATIC int
  1350. xfs_setsize_buftarg_early(
  1351. xfs_buftarg_t *btp,
  1352. struct block_device *bdev)
  1353. {
  1354. return xfs_setsize_buftarg_flags(btp,
  1355. PAGE_CACHE_SIZE, bdev_logical_block_size(bdev), 0);
  1356. }
  1357. int
  1358. xfs_setsize_buftarg(
  1359. xfs_buftarg_t *btp,
  1360. unsigned int blocksize,
  1361. unsigned int sectorsize)
  1362. {
  1363. return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
  1364. }
  1365. STATIC int
  1366. xfs_mapping_buftarg(
  1367. xfs_buftarg_t *btp,
  1368. struct block_device *bdev)
  1369. {
  1370. struct backing_dev_info *bdi;
  1371. struct inode *inode;
  1372. struct address_space *mapping;
  1373. static const struct address_space_operations mapping_aops = {
  1374. .sync_page = block_sync_page,
  1375. .migratepage = fail_migrate_page,
  1376. };
  1377. inode = new_inode(bdev->bd_inode->i_sb);
  1378. if (!inode) {
  1379. printk(KERN_WARNING
  1380. "XFS: Cannot allocate mapping inode for device %s\n",
  1381. XFS_BUFTARG_NAME(btp));
  1382. return ENOMEM;
  1383. }
  1384. inode->i_mode = S_IFBLK;
  1385. inode->i_bdev = bdev;
  1386. inode->i_rdev = bdev->bd_dev;
  1387. bdi = blk_get_backing_dev_info(bdev);
  1388. if (!bdi)
  1389. bdi = &default_backing_dev_info;
  1390. mapping = &inode->i_data;
  1391. mapping->a_ops = &mapping_aops;
  1392. mapping->backing_dev_info = bdi;
  1393. mapping_set_gfp_mask(mapping, GFP_NOFS);
  1394. btp->bt_mapping = mapping;
  1395. return 0;
  1396. }
  1397. STATIC int
  1398. xfs_alloc_delwrite_queue(
  1399. xfs_buftarg_t *btp,
  1400. const char *fsname)
  1401. {
  1402. int error = 0;
  1403. INIT_LIST_HEAD(&btp->bt_list);
  1404. INIT_LIST_HEAD(&btp->bt_delwrite_queue);
  1405. spin_lock_init(&btp->bt_delwrite_lock);
  1406. btp->bt_flags = 0;
  1407. btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd/%s", fsname);
  1408. if (IS_ERR(btp->bt_task)) {
  1409. error = PTR_ERR(btp->bt_task);
  1410. goto out_error;
  1411. }
  1412. xfs_register_buftarg(btp);
  1413. out_error:
  1414. return error;
  1415. }
  1416. xfs_buftarg_t *
  1417. xfs_alloc_buftarg(
  1418. struct block_device *bdev,
  1419. int external,
  1420. const char *fsname)
  1421. {
  1422. xfs_buftarg_t *btp;
  1423. btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
  1424. btp->bt_dev = bdev->bd_dev;
  1425. btp->bt_bdev = bdev;
  1426. if (xfs_setsize_buftarg_early(btp, bdev))
  1427. goto error;
  1428. if (xfs_mapping_buftarg(btp, bdev))
  1429. goto error;
  1430. if (xfs_alloc_delwrite_queue(btp, fsname))
  1431. goto error;
  1432. xfs_alloc_bufhash(btp, external);
  1433. return btp;
  1434. error:
  1435. kmem_free(btp);
  1436. return NULL;
  1437. }
  1438. /*
  1439. * Delayed write buffer handling
  1440. */
  1441. STATIC void
  1442. xfs_buf_delwri_queue(
  1443. xfs_buf_t *bp,
  1444. int unlock)
  1445. {
  1446. struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
  1447. spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
  1448. trace_xfs_buf_delwri_queue(bp, _RET_IP_);
  1449. ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
  1450. spin_lock(dwlk);
  1451. /* If already in the queue, dequeue and place at tail */
  1452. if (!list_empty(&bp->b_list)) {
  1453. ASSERT(bp->b_flags & _XBF_DELWRI_Q);
  1454. if (unlock)
  1455. atomic_dec(&bp->b_hold);
  1456. list_del(&bp->b_list);
  1457. }
  1458. if (list_empty(dwq)) {
  1459. /* start xfsbufd as it is about to have something to do */
  1460. wake_up_process(bp->b_target->bt_task);
  1461. }
  1462. bp->b_flags |= _XBF_DELWRI_Q;
  1463. list_add_tail(&bp->b_list, dwq);
  1464. bp->b_queuetime = jiffies;
  1465. spin_unlock(dwlk);
  1466. if (unlock)
  1467. xfs_buf_unlock(bp);
  1468. }
  1469. void
  1470. xfs_buf_delwri_dequeue(
  1471. xfs_buf_t *bp)
  1472. {
  1473. spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
  1474. int dequeued = 0;
  1475. spin_lock(dwlk);
  1476. if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
  1477. ASSERT(bp->b_flags & _XBF_DELWRI_Q);
  1478. list_del_init(&bp->b_list);
  1479. dequeued = 1;
  1480. }
  1481. bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
  1482. spin_unlock(dwlk);
  1483. if (dequeued)
  1484. xfs_buf_rele(bp);
  1485. trace_xfs_buf_delwri_dequeue(bp, _RET_IP_);
  1486. }
  1487. /*
  1488. * If a delwri buffer needs to be pushed before it has aged out, then promote
  1489. * it to the head of the delwri queue so that it will be flushed on the next
  1490. * xfsbufd run. We do this by resetting the queuetime of the buffer to be older
  1491. * than the age currently needed to flush the buffer. Hence the next time the
  1492. * xfsbufd sees it is guaranteed to be considered old enough to flush.
  1493. */
  1494. void
  1495. xfs_buf_delwri_promote(
  1496. struct xfs_buf *bp)
  1497. {
  1498. struct xfs_buftarg *btp = bp->b_target;
  1499. long age = xfs_buf_age_centisecs * msecs_to_jiffies(10) + 1;
  1500. ASSERT(bp->b_flags & XBF_DELWRI);
  1501. ASSERT(bp->b_flags & _XBF_DELWRI_Q);
  1502. /*
  1503. * Check the buffer age before locking the delayed write queue as we
  1504. * don't need to promote buffers that are already past the flush age.
  1505. */
  1506. if (bp->b_queuetime < jiffies - age)
  1507. return;
  1508. bp->b_queuetime = jiffies - age;
  1509. spin_lock(&btp->bt_delwrite_lock);
  1510. list_move(&bp->b_list, &btp->bt_delwrite_queue);
  1511. spin_unlock(&btp->bt_delwrite_lock);
  1512. }
  1513. STATIC void
  1514. xfs_buf_runall_queues(
  1515. struct workqueue_struct *queue)
  1516. {
  1517. flush_workqueue(queue);
  1518. }
  1519. STATIC int
  1520. xfsbufd_wakeup(
  1521. int priority,
  1522. gfp_t mask)
  1523. {
  1524. xfs_buftarg_t *btp;
  1525. spin_lock(&xfs_buftarg_lock);
  1526. list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
  1527. if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
  1528. continue;
  1529. if (list_empty(&btp->bt_delwrite_queue))
  1530. continue;
  1531. set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
  1532. wake_up_process(btp->bt_task);
  1533. }
  1534. spin_unlock(&xfs_buftarg_lock);
  1535. return 0;
  1536. }
  1537. /*
  1538. * Move as many buffers as specified to the supplied list
  1539. * idicating if we skipped any buffers to prevent deadlocks.
  1540. */
  1541. STATIC int
  1542. xfs_buf_delwri_split(
  1543. xfs_buftarg_t *target,
  1544. struct list_head *list,
  1545. unsigned long age)
  1546. {
  1547. xfs_buf_t *bp, *n;
  1548. struct list_head *dwq = &target->bt_delwrite_queue;
  1549. spinlock_t *dwlk = &target->bt_delwrite_lock;
  1550. int skipped = 0;
  1551. int force;
  1552. force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
  1553. INIT_LIST_HEAD(list);
  1554. spin_lock(dwlk);
  1555. list_for_each_entry_safe(bp, n, dwq, b_list) {
  1556. trace_xfs_buf_delwri_split(bp, _RET_IP_);
  1557. ASSERT(bp->b_flags & XBF_DELWRI);
  1558. if (!xfs_buf_ispin(bp) && !xfs_buf_cond_lock(bp)) {
  1559. if (!force &&
  1560. time_before(jiffies, bp->b_queuetime + age)) {
  1561. xfs_buf_unlock(bp);
  1562. break;
  1563. }
  1564. bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
  1565. _XBF_RUN_QUEUES);
  1566. bp->b_flags |= XBF_WRITE;
  1567. list_move_tail(&bp->b_list, list);
  1568. } else
  1569. skipped++;
  1570. }
  1571. spin_unlock(dwlk);
  1572. return skipped;
  1573. }
  1574. /*
  1575. * Compare function is more complex than it needs to be because
  1576. * the return value is only 32 bits and we are doing comparisons
  1577. * on 64 bit values
  1578. */
  1579. static int
  1580. xfs_buf_cmp(
  1581. void *priv,
  1582. struct list_head *a,
  1583. struct list_head *b)
  1584. {
  1585. struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
  1586. struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
  1587. xfs_daddr_t diff;
  1588. diff = ap->b_bn - bp->b_bn;
  1589. if (diff < 0)
  1590. return -1;
  1591. if (diff > 0)
  1592. return 1;
  1593. return 0;
  1594. }
  1595. void
  1596. xfs_buf_delwri_sort(
  1597. xfs_buftarg_t *target,
  1598. struct list_head *list)
  1599. {
  1600. list_sort(NULL, list, xfs_buf_cmp);
  1601. }
  1602. STATIC int
  1603. xfsbufd(
  1604. void *data)
  1605. {
  1606. xfs_buftarg_t *target = (xfs_buftarg_t *)data;
  1607. current->flags |= PF_MEMALLOC;
  1608. set_freezable();
  1609. do {
  1610. long age = xfs_buf_age_centisecs * msecs_to_jiffies(10);
  1611. long tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10);
  1612. int count = 0;
  1613. struct list_head tmp;
  1614. if (unlikely(freezing(current))) {
  1615. set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
  1616. refrigerator();
  1617. } else {
  1618. clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
  1619. }
  1620. /* sleep for a long time if there is nothing to do. */
  1621. if (list_empty(&target->bt_delwrite_queue))
  1622. tout = MAX_SCHEDULE_TIMEOUT;
  1623. schedule_timeout_interruptible(tout);
  1624. xfs_buf_delwri_split(target, &tmp, age);
  1625. list_sort(NULL, &tmp, xfs_buf_cmp);
  1626. while (!list_empty(&tmp)) {
  1627. struct xfs_buf *bp;
  1628. bp = list_first_entry(&tmp, struct xfs_buf, b_list);
  1629. list_del_init(&bp->b_list);
  1630. xfs_buf_iostrategy(bp);
  1631. count++;
  1632. }
  1633. if (count)
  1634. blk_run_address_space(target->bt_mapping);
  1635. } while (!kthread_should_stop());
  1636. return 0;
  1637. }
  1638. /*
  1639. * Go through all incore buffers, and release buffers if they belong to
  1640. * the given device. This is used in filesystem error handling to
  1641. * preserve the consistency of its metadata.
  1642. */
  1643. int
  1644. xfs_flush_buftarg(
  1645. xfs_buftarg_t *target,
  1646. int wait)
  1647. {
  1648. xfs_buf_t *bp;
  1649. int pincount = 0;
  1650. LIST_HEAD(tmp_list);
  1651. LIST_HEAD(wait_list);
  1652. xfs_buf_runall_queues(xfsconvertd_workqueue);
  1653. xfs_buf_runall_queues(xfsdatad_workqueue);
  1654. xfs_buf_runall_queues(xfslogd_workqueue);
  1655. set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
  1656. pincount = xfs_buf_delwri_split(target, &tmp_list, 0);
  1657. /*
  1658. * Dropped the delayed write list lock, now walk the temporary list.
  1659. * All I/O is issued async and then if we need to wait for completion
  1660. * we do that after issuing all the IO.
  1661. */
  1662. list_sort(NULL, &tmp_list, xfs_buf_cmp);
  1663. while (!list_empty(&tmp_list)) {
  1664. bp = list_first_entry(&tmp_list, struct xfs_buf, b_list);
  1665. ASSERT(target == bp->b_target);
  1666. list_del_init(&bp->b_list);
  1667. if (wait) {
  1668. bp->b_flags &= ~XBF_ASYNC;
  1669. list_add(&bp->b_list, &wait_list);
  1670. }
  1671. xfs_buf_iostrategy(bp);
  1672. }
  1673. if (wait) {
  1674. /* Expedite and wait for IO to complete. */
  1675. blk_run_address_space(target->bt_mapping);
  1676. while (!list_empty(&wait_list)) {
  1677. bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
  1678. list_del_init(&bp->b_list);
  1679. xfs_iowait(bp);
  1680. xfs_buf_relse(bp);
  1681. }
  1682. }
  1683. return pincount;
  1684. }
  1685. int __init
  1686. xfs_buf_init(void)
  1687. {
  1688. xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
  1689. KM_ZONE_HWALIGN, NULL);
  1690. if (!xfs_buf_zone)
  1691. goto out;
  1692. xfslogd_workqueue = create_workqueue("xfslogd");
  1693. if (!xfslogd_workqueue)
  1694. goto out_free_buf_zone;
  1695. xfsdatad_workqueue = create_workqueue("xfsdatad");
  1696. if (!xfsdatad_workqueue)
  1697. goto out_destroy_xfslogd_workqueue;
  1698. xfsconvertd_workqueue = create_workqueue("xfsconvertd");
  1699. if (!xfsconvertd_workqueue)
  1700. goto out_destroy_xfsdatad_workqueue;
  1701. register_shrinker(&xfs_buf_shake);
  1702. return 0;
  1703. out_destroy_xfsdatad_workqueue:
  1704. destroy_workqueue(xfsdatad_workqueue);
  1705. out_destroy_xfslogd_workqueue:
  1706. destroy_workqueue(xfslogd_workqueue);
  1707. out_free_buf_zone:
  1708. kmem_zone_destroy(xfs_buf_zone);
  1709. out:
  1710. return -ENOMEM;
  1711. }
  1712. void
  1713. xfs_buf_terminate(void)
  1714. {
  1715. unregister_shrinker(&xfs_buf_shake);
  1716. destroy_workqueue(xfsconvertd_workqueue);
  1717. destroy_workqueue(xfsdatad_workqueue);
  1718. destroy_workqueue(xfslogd_workqueue);
  1719. kmem_zone_destroy(xfs_buf_zone);
  1720. }
  1721. #ifdef CONFIG_KDB_MODULES
  1722. struct list_head *
  1723. xfs_get_buftarg_list(void)
  1724. {
  1725. return &xfs_buftarg_list;
  1726. }
  1727. #endif