xfs_buf.c 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986
  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_log.h"
  40. #include "xfs_ag.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(struct shrinker *, 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(NULL, 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 || XFS_BUF_ISERROR(bp) || (flags & XBF_ASYNC))
  508. return status;
  509. return xfs_buf_iowait(bp);
  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. * If we come across a stale, pinned, locked buffer, we know that we
  740. * are being asked to lock a buffer that has been reallocated. Because
  741. * it is pinned, we know that the log has not been pushed to disk and
  742. * hence it will still be locked. Rather than sleeping until someone
  743. * else pushes the log, push it ourselves before trying to get the lock.
  744. */
  745. void
  746. xfs_buf_lock(
  747. xfs_buf_t *bp)
  748. {
  749. trace_xfs_buf_lock(bp, _RET_IP_);
  750. if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
  751. xfs_log_force(bp->b_mount, 0);
  752. if (atomic_read(&bp->b_io_remaining))
  753. blk_run_address_space(bp->b_target->bt_mapping);
  754. down(&bp->b_sema);
  755. XB_SET_OWNER(bp);
  756. trace_xfs_buf_lock_done(bp, _RET_IP_);
  757. }
  758. /*
  759. * Releases the lock on the buffer object.
  760. * If the buffer is marked delwri but is not queued, do so before we
  761. * unlock the buffer as we need to set flags correctly. We also need to
  762. * take a reference for the delwri queue because the unlocker is going to
  763. * drop their's and they don't know we just queued it.
  764. */
  765. void
  766. xfs_buf_unlock(
  767. xfs_buf_t *bp)
  768. {
  769. if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
  770. atomic_inc(&bp->b_hold);
  771. bp->b_flags |= XBF_ASYNC;
  772. xfs_buf_delwri_queue(bp, 0);
  773. }
  774. XB_CLEAR_OWNER(bp);
  775. up(&bp->b_sema);
  776. trace_xfs_buf_unlock(bp, _RET_IP_);
  777. }
  778. STATIC void
  779. xfs_buf_wait_unpin(
  780. xfs_buf_t *bp)
  781. {
  782. DECLARE_WAITQUEUE (wait, current);
  783. if (atomic_read(&bp->b_pin_count) == 0)
  784. return;
  785. add_wait_queue(&bp->b_waiters, &wait);
  786. for (;;) {
  787. set_current_state(TASK_UNINTERRUPTIBLE);
  788. if (atomic_read(&bp->b_pin_count) == 0)
  789. break;
  790. if (atomic_read(&bp->b_io_remaining))
  791. blk_run_address_space(bp->b_target->bt_mapping);
  792. schedule();
  793. }
  794. remove_wait_queue(&bp->b_waiters, &wait);
  795. set_current_state(TASK_RUNNING);
  796. }
  797. /*
  798. * Buffer Utility Routines
  799. */
  800. STATIC void
  801. xfs_buf_iodone_work(
  802. struct work_struct *work)
  803. {
  804. xfs_buf_t *bp =
  805. container_of(work, xfs_buf_t, b_iodone_work);
  806. /*
  807. * We can get an EOPNOTSUPP to ordered writes. Here we clear the
  808. * ordered flag and reissue them. Because we can't tell the higher
  809. * layers directly that they should not issue ordered I/O anymore, they
  810. * need to check if the _XFS_BARRIER_FAILED flag was set during I/O completion.
  811. */
  812. if ((bp->b_error == EOPNOTSUPP) &&
  813. (bp->b_flags & (XBF_ORDERED|XBF_ASYNC)) == (XBF_ORDERED|XBF_ASYNC)) {
  814. trace_xfs_buf_ordered_retry(bp, _RET_IP_);
  815. bp->b_flags &= ~XBF_ORDERED;
  816. bp->b_flags |= _XFS_BARRIER_FAILED;
  817. xfs_buf_iorequest(bp);
  818. } else if (bp->b_iodone)
  819. (*(bp->b_iodone))(bp);
  820. else if (bp->b_flags & XBF_ASYNC)
  821. xfs_buf_relse(bp);
  822. }
  823. void
  824. xfs_buf_ioend(
  825. xfs_buf_t *bp,
  826. int schedule)
  827. {
  828. trace_xfs_buf_iodone(bp, _RET_IP_);
  829. bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
  830. if (bp->b_error == 0)
  831. bp->b_flags |= XBF_DONE;
  832. if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
  833. if (schedule) {
  834. INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
  835. queue_work(xfslogd_workqueue, &bp->b_iodone_work);
  836. } else {
  837. xfs_buf_iodone_work(&bp->b_iodone_work);
  838. }
  839. } else {
  840. complete(&bp->b_iowait);
  841. }
  842. }
  843. void
  844. xfs_buf_ioerror(
  845. xfs_buf_t *bp,
  846. int error)
  847. {
  848. ASSERT(error >= 0 && error <= 0xffff);
  849. bp->b_error = (unsigned short)error;
  850. trace_xfs_buf_ioerror(bp, error, _RET_IP_);
  851. }
  852. int
  853. xfs_bwrite(
  854. struct xfs_mount *mp,
  855. struct xfs_buf *bp)
  856. {
  857. int error;
  858. bp->b_strat = xfs_bdstrat_cb;
  859. bp->b_mount = mp;
  860. bp->b_flags |= XBF_WRITE;
  861. bp->b_flags &= ~(XBF_ASYNC | XBF_READ);
  862. xfs_buf_delwri_dequeue(bp);
  863. xfs_buf_iostrategy(bp);
  864. error = xfs_buf_iowait(bp);
  865. if (error)
  866. xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
  867. xfs_buf_relse(bp);
  868. return error;
  869. }
  870. void
  871. xfs_bdwrite(
  872. void *mp,
  873. struct xfs_buf *bp)
  874. {
  875. trace_xfs_buf_bdwrite(bp, _RET_IP_);
  876. bp->b_strat = xfs_bdstrat_cb;
  877. bp->b_mount = mp;
  878. bp->b_flags &= ~XBF_READ;
  879. bp->b_flags |= (XBF_DELWRI | XBF_ASYNC);
  880. xfs_buf_delwri_queue(bp, 1);
  881. }
  882. /*
  883. * Called when we want to stop a buffer from getting written or read.
  884. * We attach the EIO error, muck with its flags, and call biodone
  885. * so that the proper iodone callbacks get called.
  886. */
  887. STATIC int
  888. xfs_bioerror(
  889. xfs_buf_t *bp)
  890. {
  891. #ifdef XFSERRORDEBUG
  892. ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
  893. #endif
  894. /*
  895. * No need to wait until the buffer is unpinned, we aren't flushing it.
  896. */
  897. XFS_BUF_ERROR(bp, EIO);
  898. /*
  899. * We're calling biodone, so delete XBF_DONE flag.
  900. */
  901. XFS_BUF_UNREAD(bp);
  902. XFS_BUF_UNDELAYWRITE(bp);
  903. XFS_BUF_UNDONE(bp);
  904. XFS_BUF_STALE(bp);
  905. XFS_BUF_CLR_BDSTRAT_FUNC(bp);
  906. xfs_biodone(bp);
  907. return EIO;
  908. }
  909. /*
  910. * Same as xfs_bioerror, except that we are releasing the buffer
  911. * here ourselves, and avoiding the biodone call.
  912. * This is meant for userdata errors; metadata bufs come with
  913. * iodone functions attached, so that we can track down errors.
  914. */
  915. STATIC int
  916. xfs_bioerror_relse(
  917. struct xfs_buf *bp)
  918. {
  919. int64_t fl = XFS_BUF_BFLAGS(bp);
  920. /*
  921. * No need to wait until the buffer is unpinned.
  922. * We aren't flushing it.
  923. *
  924. * chunkhold expects B_DONE to be set, whether
  925. * we actually finish the I/O or not. We don't want to
  926. * change that interface.
  927. */
  928. XFS_BUF_UNREAD(bp);
  929. XFS_BUF_UNDELAYWRITE(bp);
  930. XFS_BUF_DONE(bp);
  931. XFS_BUF_STALE(bp);
  932. XFS_BUF_CLR_IODONE_FUNC(bp);
  933. XFS_BUF_CLR_BDSTRAT_FUNC(bp);
  934. if (!(fl & XBF_ASYNC)) {
  935. /*
  936. * Mark b_error and B_ERROR _both_.
  937. * Lot's of chunkcache code assumes that.
  938. * There's no reason to mark error for
  939. * ASYNC buffers.
  940. */
  941. XFS_BUF_ERROR(bp, EIO);
  942. XFS_BUF_FINISH_IOWAIT(bp);
  943. } else {
  944. xfs_buf_relse(bp);
  945. }
  946. return EIO;
  947. }
  948. /*
  949. * All xfs metadata buffers except log state machine buffers
  950. * get this attached as their b_bdstrat callback function.
  951. * This is so that we can catch a buffer
  952. * after prematurely unpinning it to forcibly shutdown the filesystem.
  953. */
  954. int
  955. xfs_bdstrat_cb(
  956. struct xfs_buf *bp)
  957. {
  958. if (XFS_FORCED_SHUTDOWN(bp->b_mount)) {
  959. trace_xfs_bdstrat_shut(bp, _RET_IP_);
  960. /*
  961. * Metadata write that didn't get logged but
  962. * written delayed anyway. These aren't associated
  963. * with a transaction, and can be ignored.
  964. */
  965. if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
  966. return xfs_bioerror_relse(bp);
  967. else
  968. return xfs_bioerror(bp);
  969. }
  970. xfs_buf_iorequest(bp);
  971. return 0;
  972. }
  973. /*
  974. * Wrapper around bdstrat so that we can stop data from going to disk in case
  975. * we are shutting down the filesystem. Typically user data goes thru this
  976. * path; one of the exceptions is the superblock.
  977. */
  978. void
  979. xfsbdstrat(
  980. struct xfs_mount *mp,
  981. struct xfs_buf *bp)
  982. {
  983. if (XFS_FORCED_SHUTDOWN(mp)) {
  984. trace_xfs_bdstrat_shut(bp, _RET_IP_);
  985. xfs_bioerror_relse(bp);
  986. return;
  987. }
  988. xfs_buf_iorequest(bp);
  989. }
  990. STATIC void
  991. _xfs_buf_ioend(
  992. xfs_buf_t *bp,
  993. int schedule)
  994. {
  995. if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
  996. bp->b_flags &= ~_XBF_PAGE_LOCKED;
  997. xfs_buf_ioend(bp, schedule);
  998. }
  999. }
  1000. STATIC void
  1001. xfs_buf_bio_end_io(
  1002. struct bio *bio,
  1003. int error)
  1004. {
  1005. xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
  1006. unsigned int blocksize = bp->b_target->bt_bsize;
  1007. struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
  1008. xfs_buf_ioerror(bp, -error);
  1009. if (!error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
  1010. invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
  1011. do {
  1012. struct page *page = bvec->bv_page;
  1013. ASSERT(!PagePrivate(page));
  1014. if (unlikely(bp->b_error)) {
  1015. if (bp->b_flags & XBF_READ)
  1016. ClearPageUptodate(page);
  1017. } else if (blocksize >= PAGE_CACHE_SIZE) {
  1018. SetPageUptodate(page);
  1019. } else if (!PagePrivate(page) &&
  1020. (bp->b_flags & _XBF_PAGE_CACHE)) {
  1021. set_page_region(page, bvec->bv_offset, bvec->bv_len);
  1022. }
  1023. if (--bvec >= bio->bi_io_vec)
  1024. prefetchw(&bvec->bv_page->flags);
  1025. if (bp->b_flags & _XBF_PAGE_LOCKED)
  1026. unlock_page(page);
  1027. } while (bvec >= bio->bi_io_vec);
  1028. _xfs_buf_ioend(bp, 1);
  1029. bio_put(bio);
  1030. }
  1031. STATIC void
  1032. _xfs_buf_ioapply(
  1033. xfs_buf_t *bp)
  1034. {
  1035. int rw, map_i, total_nr_pages, nr_pages;
  1036. struct bio *bio;
  1037. int offset = bp->b_offset;
  1038. int size = bp->b_count_desired;
  1039. sector_t sector = bp->b_bn;
  1040. unsigned int blocksize = bp->b_target->bt_bsize;
  1041. total_nr_pages = bp->b_page_count;
  1042. map_i = 0;
  1043. if (bp->b_flags & XBF_ORDERED) {
  1044. ASSERT(!(bp->b_flags & XBF_READ));
  1045. rw = WRITE_BARRIER;
  1046. } else if (bp->b_flags & XBF_LOG_BUFFER) {
  1047. ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
  1048. bp->b_flags &= ~_XBF_RUN_QUEUES;
  1049. rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
  1050. } else if (bp->b_flags & _XBF_RUN_QUEUES) {
  1051. ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
  1052. bp->b_flags &= ~_XBF_RUN_QUEUES;
  1053. rw = (bp->b_flags & XBF_WRITE) ? WRITE_META : READ_META;
  1054. } else {
  1055. rw = (bp->b_flags & XBF_WRITE) ? WRITE :
  1056. (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
  1057. }
  1058. /* Special code path for reading a sub page size buffer in --
  1059. * we populate up the whole page, and hence the other metadata
  1060. * in the same page. This optimization is only valid when the
  1061. * filesystem block size is not smaller than the page size.
  1062. */
  1063. if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
  1064. ((bp->b_flags & (XBF_READ|_XBF_PAGE_LOCKED)) ==
  1065. (XBF_READ|_XBF_PAGE_LOCKED)) &&
  1066. (blocksize >= PAGE_CACHE_SIZE)) {
  1067. bio = bio_alloc(GFP_NOIO, 1);
  1068. bio->bi_bdev = bp->b_target->bt_bdev;
  1069. bio->bi_sector = sector - (offset >> BBSHIFT);
  1070. bio->bi_end_io = xfs_buf_bio_end_io;
  1071. bio->bi_private = bp;
  1072. bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
  1073. size = 0;
  1074. atomic_inc(&bp->b_io_remaining);
  1075. goto submit_io;
  1076. }
  1077. next_chunk:
  1078. atomic_inc(&bp->b_io_remaining);
  1079. nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
  1080. if (nr_pages > total_nr_pages)
  1081. nr_pages = total_nr_pages;
  1082. bio = bio_alloc(GFP_NOIO, nr_pages);
  1083. bio->bi_bdev = bp->b_target->bt_bdev;
  1084. bio->bi_sector = sector;
  1085. bio->bi_end_io = xfs_buf_bio_end_io;
  1086. bio->bi_private = bp;
  1087. for (; size && nr_pages; nr_pages--, map_i++) {
  1088. int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
  1089. if (nbytes > size)
  1090. nbytes = size;
  1091. rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
  1092. if (rbytes < nbytes)
  1093. break;
  1094. offset = 0;
  1095. sector += nbytes >> BBSHIFT;
  1096. size -= nbytes;
  1097. total_nr_pages--;
  1098. }
  1099. submit_io:
  1100. if (likely(bio->bi_size)) {
  1101. if (xfs_buf_is_vmapped(bp)) {
  1102. flush_kernel_vmap_range(bp->b_addr,
  1103. xfs_buf_vmap_len(bp));
  1104. }
  1105. submit_bio(rw, bio);
  1106. if (size)
  1107. goto next_chunk;
  1108. } else {
  1109. /*
  1110. * if we get here, no pages were added to the bio. However,
  1111. * we can't just error out here - if the pages are locked then
  1112. * we have to unlock them otherwise we can hang on a later
  1113. * access to the page.
  1114. */
  1115. xfs_buf_ioerror(bp, EIO);
  1116. if (bp->b_flags & _XBF_PAGE_LOCKED) {
  1117. int i;
  1118. for (i = 0; i < bp->b_page_count; i++)
  1119. unlock_page(bp->b_pages[i]);
  1120. }
  1121. bio_put(bio);
  1122. }
  1123. }
  1124. int
  1125. xfs_buf_iorequest(
  1126. xfs_buf_t *bp)
  1127. {
  1128. trace_xfs_buf_iorequest(bp, _RET_IP_);
  1129. if (bp->b_flags & XBF_DELWRI) {
  1130. xfs_buf_delwri_queue(bp, 1);
  1131. return 0;
  1132. }
  1133. if (bp->b_flags & XBF_WRITE) {
  1134. xfs_buf_wait_unpin(bp);
  1135. }
  1136. xfs_buf_hold(bp);
  1137. /* Set the count to 1 initially, this will stop an I/O
  1138. * completion callout which happens before we have started
  1139. * all the I/O from calling xfs_buf_ioend too early.
  1140. */
  1141. atomic_set(&bp->b_io_remaining, 1);
  1142. _xfs_buf_ioapply(bp);
  1143. _xfs_buf_ioend(bp, 0);
  1144. xfs_buf_rele(bp);
  1145. return 0;
  1146. }
  1147. /*
  1148. * Waits for I/O to complete on the buffer supplied.
  1149. * It returns immediately if no I/O is pending.
  1150. * It returns the I/O error code, if any, or 0 if there was no error.
  1151. */
  1152. int
  1153. xfs_buf_iowait(
  1154. xfs_buf_t *bp)
  1155. {
  1156. trace_xfs_buf_iowait(bp, _RET_IP_);
  1157. if (atomic_read(&bp->b_io_remaining))
  1158. blk_run_address_space(bp->b_target->bt_mapping);
  1159. wait_for_completion(&bp->b_iowait);
  1160. trace_xfs_buf_iowait_done(bp, _RET_IP_);
  1161. return bp->b_error;
  1162. }
  1163. xfs_caddr_t
  1164. xfs_buf_offset(
  1165. xfs_buf_t *bp,
  1166. size_t offset)
  1167. {
  1168. struct page *page;
  1169. if (bp->b_flags & XBF_MAPPED)
  1170. return XFS_BUF_PTR(bp) + offset;
  1171. offset += bp->b_offset;
  1172. page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
  1173. return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
  1174. }
  1175. /*
  1176. * Move data into or out of a buffer.
  1177. */
  1178. void
  1179. xfs_buf_iomove(
  1180. xfs_buf_t *bp, /* buffer to process */
  1181. size_t boff, /* starting buffer offset */
  1182. size_t bsize, /* length to copy */
  1183. void *data, /* data address */
  1184. xfs_buf_rw_t mode) /* read/write/zero flag */
  1185. {
  1186. size_t bend, cpoff, csize;
  1187. struct page *page;
  1188. bend = boff + bsize;
  1189. while (boff < bend) {
  1190. page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
  1191. cpoff = xfs_buf_poff(boff + bp->b_offset);
  1192. csize = min_t(size_t,
  1193. PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
  1194. ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
  1195. switch (mode) {
  1196. case XBRW_ZERO:
  1197. memset(page_address(page) + cpoff, 0, csize);
  1198. break;
  1199. case XBRW_READ:
  1200. memcpy(data, page_address(page) + cpoff, csize);
  1201. break;
  1202. case XBRW_WRITE:
  1203. memcpy(page_address(page) + cpoff, data, csize);
  1204. }
  1205. boff += csize;
  1206. data += csize;
  1207. }
  1208. }
  1209. /*
  1210. * Handling of buffer targets (buftargs).
  1211. */
  1212. /*
  1213. * Wait for any bufs with callbacks that have been submitted but
  1214. * have not yet returned... walk the hash list for the target.
  1215. */
  1216. void
  1217. xfs_wait_buftarg(
  1218. xfs_buftarg_t *btp)
  1219. {
  1220. xfs_buf_t *bp, *n;
  1221. xfs_bufhash_t *hash;
  1222. uint i;
  1223. for (i = 0; i < (1 << btp->bt_hashshift); i++) {
  1224. hash = &btp->bt_hash[i];
  1225. again:
  1226. spin_lock(&hash->bh_lock);
  1227. list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
  1228. ASSERT(btp == bp->b_target);
  1229. if (!(bp->b_flags & XBF_FS_MANAGED)) {
  1230. spin_unlock(&hash->bh_lock);
  1231. /*
  1232. * Catch superblock reference count leaks
  1233. * immediately
  1234. */
  1235. BUG_ON(bp->b_bn == 0);
  1236. delay(100);
  1237. goto again;
  1238. }
  1239. }
  1240. spin_unlock(&hash->bh_lock);
  1241. }
  1242. }
  1243. /*
  1244. * Allocate buffer hash table for a given target.
  1245. * For devices containing metadata (i.e. not the log/realtime devices)
  1246. * we need to allocate a much larger hash table.
  1247. */
  1248. STATIC void
  1249. xfs_alloc_bufhash(
  1250. xfs_buftarg_t *btp,
  1251. int external)
  1252. {
  1253. unsigned int i;
  1254. btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */
  1255. btp->bt_hashmask = (1 << btp->bt_hashshift) - 1;
  1256. btp->bt_hash = kmem_zalloc_large((1 << btp->bt_hashshift) *
  1257. sizeof(xfs_bufhash_t));
  1258. for (i = 0; i < (1 << btp->bt_hashshift); i++) {
  1259. spin_lock_init(&btp->bt_hash[i].bh_lock);
  1260. INIT_LIST_HEAD(&btp->bt_hash[i].bh_list);
  1261. }
  1262. }
  1263. STATIC void
  1264. xfs_free_bufhash(
  1265. xfs_buftarg_t *btp)
  1266. {
  1267. kmem_free_large(btp->bt_hash);
  1268. btp->bt_hash = NULL;
  1269. }
  1270. /*
  1271. * buftarg list for delwrite queue processing
  1272. */
  1273. static LIST_HEAD(xfs_buftarg_list);
  1274. static DEFINE_SPINLOCK(xfs_buftarg_lock);
  1275. STATIC void
  1276. xfs_register_buftarg(
  1277. xfs_buftarg_t *btp)
  1278. {
  1279. spin_lock(&xfs_buftarg_lock);
  1280. list_add(&btp->bt_list, &xfs_buftarg_list);
  1281. spin_unlock(&xfs_buftarg_lock);
  1282. }
  1283. STATIC void
  1284. xfs_unregister_buftarg(
  1285. xfs_buftarg_t *btp)
  1286. {
  1287. spin_lock(&xfs_buftarg_lock);
  1288. list_del(&btp->bt_list);
  1289. spin_unlock(&xfs_buftarg_lock);
  1290. }
  1291. void
  1292. xfs_free_buftarg(
  1293. struct xfs_mount *mp,
  1294. struct xfs_buftarg *btp)
  1295. {
  1296. xfs_flush_buftarg(btp, 1);
  1297. if (mp->m_flags & XFS_MOUNT_BARRIER)
  1298. xfs_blkdev_issue_flush(btp);
  1299. xfs_free_bufhash(btp);
  1300. iput(btp->bt_mapping->host);
  1301. /* Unregister the buftarg first so that we don't get a
  1302. * wakeup finding a non-existent task
  1303. */
  1304. xfs_unregister_buftarg(btp);
  1305. kthread_stop(btp->bt_task);
  1306. kmem_free(btp);
  1307. }
  1308. STATIC int
  1309. xfs_setsize_buftarg_flags(
  1310. xfs_buftarg_t *btp,
  1311. unsigned int blocksize,
  1312. unsigned int sectorsize,
  1313. int verbose)
  1314. {
  1315. btp->bt_bsize = blocksize;
  1316. btp->bt_sshift = ffs(sectorsize) - 1;
  1317. btp->bt_smask = sectorsize - 1;
  1318. if (set_blocksize(btp->bt_bdev, sectorsize)) {
  1319. printk(KERN_WARNING
  1320. "XFS: Cannot set_blocksize to %u on device %s\n",
  1321. sectorsize, XFS_BUFTARG_NAME(btp));
  1322. return EINVAL;
  1323. }
  1324. if (verbose &&
  1325. (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
  1326. printk(KERN_WARNING
  1327. "XFS: %u byte sectors in use on device %s. "
  1328. "This is suboptimal; %u or greater is ideal.\n",
  1329. sectorsize, XFS_BUFTARG_NAME(btp),
  1330. (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
  1331. }
  1332. return 0;
  1333. }
  1334. /*
  1335. * When allocating the initial buffer target we have not yet
  1336. * read in the superblock, so don't know what sized sectors
  1337. * are being used is at this early stage. Play safe.
  1338. */
  1339. STATIC int
  1340. xfs_setsize_buftarg_early(
  1341. xfs_buftarg_t *btp,
  1342. struct block_device *bdev)
  1343. {
  1344. return xfs_setsize_buftarg_flags(btp,
  1345. PAGE_CACHE_SIZE, bdev_logical_block_size(bdev), 0);
  1346. }
  1347. int
  1348. xfs_setsize_buftarg(
  1349. xfs_buftarg_t *btp,
  1350. unsigned int blocksize,
  1351. unsigned int sectorsize)
  1352. {
  1353. return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
  1354. }
  1355. STATIC int
  1356. xfs_mapping_buftarg(
  1357. xfs_buftarg_t *btp,
  1358. struct block_device *bdev)
  1359. {
  1360. struct backing_dev_info *bdi;
  1361. struct inode *inode;
  1362. struct address_space *mapping;
  1363. static const struct address_space_operations mapping_aops = {
  1364. .sync_page = block_sync_page,
  1365. .migratepage = fail_migrate_page,
  1366. };
  1367. inode = new_inode(bdev->bd_inode->i_sb);
  1368. if (!inode) {
  1369. printk(KERN_WARNING
  1370. "XFS: Cannot allocate mapping inode for device %s\n",
  1371. XFS_BUFTARG_NAME(btp));
  1372. return ENOMEM;
  1373. }
  1374. inode->i_mode = S_IFBLK;
  1375. inode->i_bdev = bdev;
  1376. inode->i_rdev = bdev->bd_dev;
  1377. bdi = blk_get_backing_dev_info(bdev);
  1378. if (!bdi)
  1379. bdi = &default_backing_dev_info;
  1380. mapping = &inode->i_data;
  1381. mapping->a_ops = &mapping_aops;
  1382. mapping->backing_dev_info = bdi;
  1383. mapping_set_gfp_mask(mapping, GFP_NOFS);
  1384. btp->bt_mapping = mapping;
  1385. return 0;
  1386. }
  1387. STATIC int
  1388. xfs_alloc_delwrite_queue(
  1389. xfs_buftarg_t *btp,
  1390. const char *fsname)
  1391. {
  1392. int error = 0;
  1393. INIT_LIST_HEAD(&btp->bt_list);
  1394. INIT_LIST_HEAD(&btp->bt_delwrite_queue);
  1395. spin_lock_init(&btp->bt_delwrite_lock);
  1396. btp->bt_flags = 0;
  1397. btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd/%s", fsname);
  1398. if (IS_ERR(btp->bt_task)) {
  1399. error = PTR_ERR(btp->bt_task);
  1400. goto out_error;
  1401. }
  1402. xfs_register_buftarg(btp);
  1403. out_error:
  1404. return error;
  1405. }
  1406. xfs_buftarg_t *
  1407. xfs_alloc_buftarg(
  1408. struct block_device *bdev,
  1409. int external,
  1410. const char *fsname)
  1411. {
  1412. xfs_buftarg_t *btp;
  1413. btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
  1414. btp->bt_dev = bdev->bd_dev;
  1415. btp->bt_bdev = bdev;
  1416. if (xfs_setsize_buftarg_early(btp, bdev))
  1417. goto error;
  1418. if (xfs_mapping_buftarg(btp, bdev))
  1419. goto error;
  1420. if (xfs_alloc_delwrite_queue(btp, fsname))
  1421. goto error;
  1422. xfs_alloc_bufhash(btp, external);
  1423. return btp;
  1424. error:
  1425. kmem_free(btp);
  1426. return NULL;
  1427. }
  1428. /*
  1429. * Delayed write buffer handling
  1430. */
  1431. STATIC void
  1432. xfs_buf_delwri_queue(
  1433. xfs_buf_t *bp,
  1434. int unlock)
  1435. {
  1436. struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
  1437. spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
  1438. trace_xfs_buf_delwri_queue(bp, _RET_IP_);
  1439. ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
  1440. spin_lock(dwlk);
  1441. /* If already in the queue, dequeue and place at tail */
  1442. if (!list_empty(&bp->b_list)) {
  1443. ASSERT(bp->b_flags & _XBF_DELWRI_Q);
  1444. if (unlock)
  1445. atomic_dec(&bp->b_hold);
  1446. list_del(&bp->b_list);
  1447. }
  1448. if (list_empty(dwq)) {
  1449. /* start xfsbufd as it is about to have something to do */
  1450. wake_up_process(bp->b_target->bt_task);
  1451. }
  1452. bp->b_flags |= _XBF_DELWRI_Q;
  1453. list_add_tail(&bp->b_list, dwq);
  1454. bp->b_queuetime = jiffies;
  1455. spin_unlock(dwlk);
  1456. if (unlock)
  1457. xfs_buf_unlock(bp);
  1458. }
  1459. void
  1460. xfs_buf_delwri_dequeue(
  1461. xfs_buf_t *bp)
  1462. {
  1463. spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
  1464. int dequeued = 0;
  1465. spin_lock(dwlk);
  1466. if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
  1467. ASSERT(bp->b_flags & _XBF_DELWRI_Q);
  1468. list_del_init(&bp->b_list);
  1469. dequeued = 1;
  1470. }
  1471. bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
  1472. spin_unlock(dwlk);
  1473. if (dequeued)
  1474. xfs_buf_rele(bp);
  1475. trace_xfs_buf_delwri_dequeue(bp, _RET_IP_);
  1476. }
  1477. /*
  1478. * If a delwri buffer needs to be pushed before it has aged out, then promote
  1479. * it to the head of the delwri queue so that it will be flushed on the next
  1480. * xfsbufd run. We do this by resetting the queuetime of the buffer to be older
  1481. * than the age currently needed to flush the buffer. Hence the next time the
  1482. * xfsbufd sees it is guaranteed to be considered old enough to flush.
  1483. */
  1484. void
  1485. xfs_buf_delwri_promote(
  1486. struct xfs_buf *bp)
  1487. {
  1488. struct xfs_buftarg *btp = bp->b_target;
  1489. long age = xfs_buf_age_centisecs * msecs_to_jiffies(10) + 1;
  1490. ASSERT(bp->b_flags & XBF_DELWRI);
  1491. ASSERT(bp->b_flags & _XBF_DELWRI_Q);
  1492. /*
  1493. * Check the buffer age before locking the delayed write queue as we
  1494. * don't need to promote buffers that are already past the flush age.
  1495. */
  1496. if (bp->b_queuetime < jiffies - age)
  1497. return;
  1498. bp->b_queuetime = jiffies - age;
  1499. spin_lock(&btp->bt_delwrite_lock);
  1500. list_move(&bp->b_list, &btp->bt_delwrite_queue);
  1501. spin_unlock(&btp->bt_delwrite_lock);
  1502. }
  1503. STATIC void
  1504. xfs_buf_runall_queues(
  1505. struct workqueue_struct *queue)
  1506. {
  1507. flush_workqueue(queue);
  1508. }
  1509. STATIC int
  1510. xfsbufd_wakeup(
  1511. struct shrinker *shrink,
  1512. int priority,
  1513. gfp_t mask)
  1514. {
  1515. xfs_buftarg_t *btp;
  1516. spin_lock(&xfs_buftarg_lock);
  1517. list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
  1518. if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
  1519. continue;
  1520. if (list_empty(&btp->bt_delwrite_queue))
  1521. continue;
  1522. set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
  1523. wake_up_process(btp->bt_task);
  1524. }
  1525. spin_unlock(&xfs_buftarg_lock);
  1526. return 0;
  1527. }
  1528. /*
  1529. * Move as many buffers as specified to the supplied list
  1530. * idicating if we skipped any buffers to prevent deadlocks.
  1531. */
  1532. STATIC int
  1533. xfs_buf_delwri_split(
  1534. xfs_buftarg_t *target,
  1535. struct list_head *list,
  1536. unsigned long age)
  1537. {
  1538. xfs_buf_t *bp, *n;
  1539. struct list_head *dwq = &target->bt_delwrite_queue;
  1540. spinlock_t *dwlk = &target->bt_delwrite_lock;
  1541. int skipped = 0;
  1542. int force;
  1543. force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
  1544. INIT_LIST_HEAD(list);
  1545. spin_lock(dwlk);
  1546. list_for_each_entry_safe(bp, n, dwq, b_list) {
  1547. trace_xfs_buf_delwri_split(bp, _RET_IP_);
  1548. ASSERT(bp->b_flags & XBF_DELWRI);
  1549. if (!XFS_BUF_ISPINNED(bp) && !xfs_buf_cond_lock(bp)) {
  1550. if (!force &&
  1551. time_before(jiffies, bp->b_queuetime + age)) {
  1552. xfs_buf_unlock(bp);
  1553. break;
  1554. }
  1555. bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
  1556. _XBF_RUN_QUEUES);
  1557. bp->b_flags |= XBF_WRITE;
  1558. list_move_tail(&bp->b_list, list);
  1559. } else
  1560. skipped++;
  1561. }
  1562. spin_unlock(dwlk);
  1563. return skipped;
  1564. }
  1565. /*
  1566. * Compare function is more complex than it needs to be because
  1567. * the return value is only 32 bits and we are doing comparisons
  1568. * on 64 bit values
  1569. */
  1570. static int
  1571. xfs_buf_cmp(
  1572. void *priv,
  1573. struct list_head *a,
  1574. struct list_head *b)
  1575. {
  1576. struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
  1577. struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
  1578. xfs_daddr_t diff;
  1579. diff = ap->b_bn - bp->b_bn;
  1580. if (diff < 0)
  1581. return -1;
  1582. if (diff > 0)
  1583. return 1;
  1584. return 0;
  1585. }
  1586. void
  1587. xfs_buf_delwri_sort(
  1588. xfs_buftarg_t *target,
  1589. struct list_head *list)
  1590. {
  1591. list_sort(NULL, list, xfs_buf_cmp);
  1592. }
  1593. STATIC int
  1594. xfsbufd(
  1595. void *data)
  1596. {
  1597. xfs_buftarg_t *target = (xfs_buftarg_t *)data;
  1598. current->flags |= PF_MEMALLOC;
  1599. set_freezable();
  1600. do {
  1601. long age = xfs_buf_age_centisecs * msecs_to_jiffies(10);
  1602. long tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10);
  1603. int count = 0;
  1604. struct list_head tmp;
  1605. if (unlikely(freezing(current))) {
  1606. set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
  1607. refrigerator();
  1608. } else {
  1609. clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
  1610. }
  1611. /* sleep for a long time if there is nothing to do. */
  1612. if (list_empty(&target->bt_delwrite_queue))
  1613. tout = MAX_SCHEDULE_TIMEOUT;
  1614. schedule_timeout_interruptible(tout);
  1615. xfs_buf_delwri_split(target, &tmp, age);
  1616. list_sort(NULL, &tmp, xfs_buf_cmp);
  1617. while (!list_empty(&tmp)) {
  1618. struct xfs_buf *bp;
  1619. bp = list_first_entry(&tmp, struct xfs_buf, b_list);
  1620. list_del_init(&bp->b_list);
  1621. xfs_buf_iostrategy(bp);
  1622. count++;
  1623. }
  1624. if (count)
  1625. blk_run_address_space(target->bt_mapping);
  1626. } while (!kthread_should_stop());
  1627. return 0;
  1628. }
  1629. /*
  1630. * Go through all incore buffers, and release buffers if they belong to
  1631. * the given device. This is used in filesystem error handling to
  1632. * preserve the consistency of its metadata.
  1633. */
  1634. int
  1635. xfs_flush_buftarg(
  1636. xfs_buftarg_t *target,
  1637. int wait)
  1638. {
  1639. xfs_buf_t *bp;
  1640. int pincount = 0;
  1641. LIST_HEAD(tmp_list);
  1642. LIST_HEAD(wait_list);
  1643. xfs_buf_runall_queues(xfsconvertd_workqueue);
  1644. xfs_buf_runall_queues(xfsdatad_workqueue);
  1645. xfs_buf_runall_queues(xfslogd_workqueue);
  1646. set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
  1647. pincount = xfs_buf_delwri_split(target, &tmp_list, 0);
  1648. /*
  1649. * Dropped the delayed write list lock, now walk the temporary list.
  1650. * All I/O is issued async and then if we need to wait for completion
  1651. * we do that after issuing all the IO.
  1652. */
  1653. list_sort(NULL, &tmp_list, xfs_buf_cmp);
  1654. while (!list_empty(&tmp_list)) {
  1655. bp = list_first_entry(&tmp_list, struct xfs_buf, b_list);
  1656. ASSERT(target == bp->b_target);
  1657. list_del_init(&bp->b_list);
  1658. if (wait) {
  1659. bp->b_flags &= ~XBF_ASYNC;
  1660. list_add(&bp->b_list, &wait_list);
  1661. }
  1662. xfs_buf_iostrategy(bp);
  1663. }
  1664. if (wait) {
  1665. /* Expedite and wait for IO to complete. */
  1666. blk_run_address_space(target->bt_mapping);
  1667. while (!list_empty(&wait_list)) {
  1668. bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
  1669. list_del_init(&bp->b_list);
  1670. xfs_iowait(bp);
  1671. xfs_buf_relse(bp);
  1672. }
  1673. }
  1674. return pincount;
  1675. }
  1676. int __init
  1677. xfs_buf_init(void)
  1678. {
  1679. xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
  1680. KM_ZONE_HWALIGN, NULL);
  1681. if (!xfs_buf_zone)
  1682. goto out;
  1683. xfslogd_workqueue = create_workqueue("xfslogd");
  1684. if (!xfslogd_workqueue)
  1685. goto out_free_buf_zone;
  1686. xfsdatad_workqueue = create_workqueue("xfsdatad");
  1687. if (!xfsdatad_workqueue)
  1688. goto out_destroy_xfslogd_workqueue;
  1689. xfsconvertd_workqueue = create_workqueue("xfsconvertd");
  1690. if (!xfsconvertd_workqueue)
  1691. goto out_destroy_xfsdatad_workqueue;
  1692. register_shrinker(&xfs_buf_shake);
  1693. return 0;
  1694. out_destroy_xfsdatad_workqueue:
  1695. destroy_workqueue(xfsdatad_workqueue);
  1696. out_destroy_xfslogd_workqueue:
  1697. destroy_workqueue(xfslogd_workqueue);
  1698. out_free_buf_zone:
  1699. kmem_zone_destroy(xfs_buf_zone);
  1700. out:
  1701. return -ENOMEM;
  1702. }
  1703. void
  1704. xfs_buf_terminate(void)
  1705. {
  1706. unregister_shrinker(&xfs_buf_shake);
  1707. destroy_workqueue(xfsconvertd_workqueue);
  1708. destroy_workqueue(xfsdatad_workqueue);
  1709. destroy_workqueue(xfslogd_workqueue);
  1710. kmem_zone_destroy(xfs_buf_zone);
  1711. }
  1712. #ifdef CONFIG_KDB_MODULES
  1713. struct list_head *
  1714. xfs_get_buftarg_list(void)
  1715. {
  1716. return &xfs_buftarg_list;
  1717. }
  1718. #endif