xfs: remove XFS_BUF_SET_VTYPE and XFS_BUF_SET_VTYPE_REF
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / xfs / xfs_buf.c
CommitLineData
1da177e4 1/*
f07c2250 2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
7b718769 3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
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
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
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.
1da177e4 13 *
7b718769
NS
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
1da177e4 17 */
93c189c1 18#include "xfs.h"
1da177e4
LT
19#include <linux/stddef.h>
20#include <linux/errno.h>
5a0e3ad6 21#include <linux/gfp.h>
1da177e4
LT
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>
4df08c52 32#include <linux/kthread.h>
b20a3503 33#include <linux/migrate.h>
3fcfab16 34#include <linux/backing-dev.h>
7dfb7103 35#include <linux/freezer.h>
1da177e4 36
b7963133
CH
37#include "xfs_sb.h"
38#include "xfs_inum.h"
ed3b4d6c 39#include "xfs_log.h"
b7963133 40#include "xfs_ag.h"
b7963133 41#include "xfs_mount.h"
0b1b213f 42#include "xfs_trace.h"
b7963133 43
7989cb8e 44static kmem_zone_t *xfs_buf_zone;
a6867a68 45STATIC int xfsbufd(void *);
23ea4032 46
7989cb8e 47static struct workqueue_struct *xfslogd_workqueue;
0829c360 48struct workqueue_struct *xfsdatad_workqueue;
c626d174 49struct workqueue_struct *xfsconvertd_workqueue;
1da177e4 50
ce8e922c
NS
51#ifdef XFS_BUF_LOCK_TRACKING
52# define XB_SET_OWNER(bp) ((bp)->b_last_holder = current->pid)
53# define XB_CLEAR_OWNER(bp) ((bp)->b_last_holder = -1)
54# define XB_GET_OWNER(bp) ((bp)->b_last_holder)
1da177e4 55#else
ce8e922c
NS
56# define XB_SET_OWNER(bp) do { } while (0)
57# define XB_CLEAR_OWNER(bp) do { } while (0)
58# define XB_GET_OWNER(bp) do { } while (0)
1da177e4
LT
59#endif
60
ce8e922c
NS
61#define xb_to_gfp(flags) \
62 ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : \
63 ((flags) & XBF_DONT_BLOCK) ? GFP_NOFS : GFP_KERNEL) | __GFP_NOWARN)
1da177e4 64
ce8e922c
NS
65#define xb_to_km(flags) \
66 (((flags) & XBF_DONT_BLOCK) ? KM_NOFS : KM_SLEEP)
1da177e4 67
ce8e922c
NS
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));
1da177e4 72
73c77e2c
JB
73static inline int
74xfs_buf_is_vmapped(
75 struct xfs_buf *bp)
76{
77 /*
78 * Return true if the buffer is vmapped.
79 *
80 * The XBF_MAPPED flag is set if the buffer should be mapped, but the
81 * code is clever enough to know it doesn't have to map a single page,
82 * so the check has to be both for XBF_MAPPED and bp->b_page_count > 1.
83 */
84 return (bp->b_flags & XBF_MAPPED) && bp->b_page_count > 1;
85}
86
87static inline int
88xfs_buf_vmap_len(
89 struct xfs_buf *bp)
90{
91 return (bp->b_page_count * PAGE_SIZE) - bp->b_offset;
92}
93
1da177e4 94/*
430cbeb8
DC
95 * xfs_buf_lru_add - add a buffer to the LRU.
96 *
97 * The LRU takes a new reference to the buffer so that it will only be freed
98 * once the shrinker takes the buffer off the LRU.
99 */
100STATIC void
101xfs_buf_lru_add(
102 struct xfs_buf *bp)
103{
104 struct xfs_buftarg *btp = bp->b_target;
105
106 spin_lock(&btp->bt_lru_lock);
107 if (list_empty(&bp->b_lru)) {
108 atomic_inc(&bp->b_hold);
109 list_add_tail(&bp->b_lru, &btp->bt_lru);
110 btp->bt_lru_nr++;
111 }
112 spin_unlock(&btp->bt_lru_lock);
113}
114
115/*
116 * xfs_buf_lru_del - remove a buffer from the LRU
117 *
118 * The unlocked check is safe here because it only occurs when there are not
119 * b_lru_ref counts left on the inode under the pag->pag_buf_lock. it is there
120 * to optimise the shrinker removing the buffer from the LRU and calling
25985edc 121 * xfs_buf_free(). i.e. it removes an unnecessary round trip on the
430cbeb8 122 * bt_lru_lock.
1da177e4 123 */
430cbeb8
DC
124STATIC void
125xfs_buf_lru_del(
126 struct xfs_buf *bp)
127{
128 struct xfs_buftarg *btp = bp->b_target;
129
130 if (list_empty(&bp->b_lru))
131 return;
132
133 spin_lock(&btp->bt_lru_lock);
134 if (!list_empty(&bp->b_lru)) {
135 list_del_init(&bp->b_lru);
136 btp->bt_lru_nr--;
137 }
138 spin_unlock(&btp->bt_lru_lock);
139}
140
141/*
142 * When we mark a buffer stale, we remove the buffer from the LRU and clear the
143 * b_lru_ref count so that the buffer is freed immediately when the buffer
144 * reference count falls to zero. If the buffer is already on the LRU, we need
145 * to remove the reference that LRU holds on the buffer.
146 *
147 * This prevents build-up of stale buffers on the LRU.
148 */
149void
150xfs_buf_stale(
151 struct xfs_buf *bp)
152{
153 bp->b_flags |= XBF_STALE;
154 atomic_set(&(bp)->b_lru_ref, 0);
155 if (!list_empty(&bp->b_lru)) {
156 struct xfs_buftarg *btp = bp->b_target;
157
158 spin_lock(&btp->bt_lru_lock);
159 if (!list_empty(&bp->b_lru)) {
160 list_del_init(&bp->b_lru);
161 btp->bt_lru_nr--;
162 atomic_dec(&bp->b_hold);
163 }
164 spin_unlock(&btp->bt_lru_lock);
165 }
166 ASSERT(atomic_read(&bp->b_hold) >= 1);
167}
1da177e4
LT
168
169STATIC void
ce8e922c
NS
170_xfs_buf_initialize(
171 xfs_buf_t *bp,
1da177e4 172 xfs_buftarg_t *target,
204ab25f 173 xfs_off_t range_base,
1da177e4 174 size_t range_length,
ce8e922c 175 xfs_buf_flags_t flags)
1da177e4
LT
176{
177 /*
ce8e922c 178 * We don't want certain flags to appear in b_flags.
1da177e4 179 */
ce8e922c
NS
180 flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD);
181
182 memset(bp, 0, sizeof(xfs_buf_t));
183 atomic_set(&bp->b_hold, 1);
430cbeb8 184 atomic_set(&bp->b_lru_ref, 1);
b4dd330b 185 init_completion(&bp->b_iowait);
430cbeb8 186 INIT_LIST_HEAD(&bp->b_lru);
ce8e922c 187 INIT_LIST_HEAD(&bp->b_list);
74f75a0c 188 RB_CLEAR_NODE(&bp->b_rbnode);
a731cd11 189 sema_init(&bp->b_sema, 0); /* held, no waiters */
ce8e922c
NS
190 XB_SET_OWNER(bp);
191 bp->b_target = target;
192 bp->b_file_offset = range_base;
1da177e4
LT
193 /*
194 * Set buffer_length and count_desired to the same value initially.
195 * I/O routines should use count_desired, which will be the same in
196 * most cases but may be reset (e.g. XFS recovery).
197 */
ce8e922c
NS
198 bp->b_buffer_length = bp->b_count_desired = range_length;
199 bp->b_flags = flags;
200 bp->b_bn = XFS_BUF_DADDR_NULL;
201 atomic_set(&bp->b_pin_count, 0);
202 init_waitqueue_head(&bp->b_waiters);
203
204 XFS_STATS_INC(xb_create);
0b1b213f
CH
205
206 trace_xfs_buf_init(bp, _RET_IP_);
1da177e4
LT
207}
208
209/*
ce8e922c
NS
210 * Allocate a page array capable of holding a specified number
211 * of pages, and point the page buf at it.
1da177e4
LT
212 */
213STATIC int
ce8e922c
NS
214_xfs_buf_get_pages(
215 xfs_buf_t *bp,
1da177e4 216 int page_count,
ce8e922c 217 xfs_buf_flags_t flags)
1da177e4
LT
218{
219 /* Make sure that we have a page list */
ce8e922c
NS
220 if (bp->b_pages == NULL) {
221 bp->b_offset = xfs_buf_poff(bp->b_file_offset);
222 bp->b_page_count = page_count;
223 if (page_count <= XB_PAGES) {
224 bp->b_pages = bp->b_page_array;
1da177e4 225 } else {
ce8e922c
NS
226 bp->b_pages = kmem_alloc(sizeof(struct page *) *
227 page_count, xb_to_km(flags));
228 if (bp->b_pages == NULL)
1da177e4
LT
229 return -ENOMEM;
230 }
ce8e922c 231 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
1da177e4
LT
232 }
233 return 0;
234}
235
236/*
ce8e922c 237 * Frees b_pages if it was allocated.
1da177e4
LT
238 */
239STATIC void
ce8e922c 240_xfs_buf_free_pages(
1da177e4
LT
241 xfs_buf_t *bp)
242{
ce8e922c 243 if (bp->b_pages != bp->b_page_array) {
f0e2d93c 244 kmem_free(bp->b_pages);
3fc98b1a 245 bp->b_pages = NULL;
1da177e4
LT
246 }
247}
248
249/*
250 * Releases the specified buffer.
251 *
252 * The modification state of any associated pages is left unchanged.
ce8e922c 253 * The buffer most not be on any hash - use xfs_buf_rele instead for
1da177e4
LT
254 * hashed and refcounted buffers
255 */
256void
ce8e922c 257xfs_buf_free(
1da177e4
LT
258 xfs_buf_t *bp)
259{
0b1b213f 260 trace_xfs_buf_free(bp, _RET_IP_);
1da177e4 261
430cbeb8
DC
262 ASSERT(list_empty(&bp->b_lru));
263
0e6e847f 264 if (bp->b_flags & _XBF_PAGES) {
1da177e4
LT
265 uint i;
266
73c77e2c 267 if (xfs_buf_is_vmapped(bp))
8a262e57
AE
268 vm_unmap_ram(bp->b_addr - bp->b_offset,
269 bp->b_page_count);
1da177e4 270
948ecdb4
NS
271 for (i = 0; i < bp->b_page_count; i++) {
272 struct page *page = bp->b_pages[i];
273
0e6e847f 274 __free_page(page);
948ecdb4 275 }
0e6e847f
DC
276 } else if (bp->b_flags & _XBF_KMEM)
277 kmem_free(bp->b_addr);
3fc98b1a 278 _xfs_buf_free_pages(bp);
ce8e922c 279 xfs_buf_deallocate(bp);
1da177e4
LT
280}
281
282/*
0e6e847f 283 * Allocates all the pages for buffer in question and builds it's page list.
1da177e4
LT
284 */
285STATIC int
0e6e847f 286xfs_buf_allocate_memory(
1da177e4
LT
287 xfs_buf_t *bp,
288 uint flags)
289{
ce8e922c 290 size_t size = bp->b_count_desired;
1da177e4 291 size_t nbytes, offset;
ce8e922c 292 gfp_t gfp_mask = xb_to_gfp(flags);
1da177e4 293 unsigned short page_count, i;
204ab25f 294 xfs_off_t end;
1da177e4
LT
295 int error;
296
0e6e847f
DC
297 /*
298 * for buffers that are contained within a single page, just allocate
299 * the memory from the heap - there's no need for the complexity of
300 * page arrays to keep allocation down to order 0.
301 */
302 if (bp->b_buffer_length < PAGE_SIZE) {
303 bp->b_addr = kmem_alloc(bp->b_buffer_length, xb_to_km(flags));
304 if (!bp->b_addr) {
305 /* low memory - use alloc_page loop instead */
306 goto use_alloc_page;
307 }
308
309 if (((unsigned long)(bp->b_addr + bp->b_buffer_length - 1) &
310 PAGE_MASK) !=
311 ((unsigned long)bp->b_addr & PAGE_MASK)) {
312 /* b_addr spans two pages - use alloc_page instead */
313 kmem_free(bp->b_addr);
314 bp->b_addr = NULL;
315 goto use_alloc_page;
316 }
317 bp->b_offset = offset_in_page(bp->b_addr);
318 bp->b_pages = bp->b_page_array;
319 bp->b_pages[0] = virt_to_page(bp->b_addr);
320 bp->b_page_count = 1;
321 bp->b_flags |= XBF_MAPPED | _XBF_KMEM;
322 return 0;
323 }
324
325use_alloc_page:
ce8e922c
NS
326 end = bp->b_file_offset + bp->b_buffer_length;
327 page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
ce8e922c 328 error = _xfs_buf_get_pages(bp, page_count, flags);
1da177e4
LT
329 if (unlikely(error))
330 return error;
1da177e4 331
ce8e922c 332 offset = bp->b_offset;
0e6e847f 333 bp->b_flags |= _XBF_PAGES;
1da177e4 334
ce8e922c 335 for (i = 0; i < bp->b_page_count; i++) {
1da177e4
LT
336 struct page *page;
337 uint retries = 0;
0e6e847f
DC
338retry:
339 page = alloc_page(gfp_mask);
1da177e4 340 if (unlikely(page == NULL)) {
ce8e922c
NS
341 if (flags & XBF_READ_AHEAD) {
342 bp->b_page_count = i;
0e6e847f
DC
343 error = ENOMEM;
344 goto out_free_pages;
1da177e4
LT
345 }
346
347 /*
348 * This could deadlock.
349 *
350 * But until all the XFS lowlevel code is revamped to
351 * handle buffer allocation failures we can't do much.
352 */
353 if (!(++retries % 100))
4f10700a
DC
354 xfs_err(NULL,
355 "possible memory allocation deadlock in %s (mode:0x%x)",
34a622b2 356 __func__, gfp_mask);
1da177e4 357
ce8e922c 358 XFS_STATS_INC(xb_page_retries);
8aa7e847 359 congestion_wait(BLK_RW_ASYNC, HZ/50);
1da177e4
LT
360 goto retry;
361 }
362
ce8e922c 363 XFS_STATS_INC(xb_page_found);
1da177e4 364
0e6e847f 365 nbytes = min_t(size_t, size, PAGE_SIZE - offset);
1da177e4 366 size -= nbytes;
ce8e922c 367 bp->b_pages[i] = page;
1da177e4
LT
368 offset = 0;
369 }
0e6e847f 370 return 0;
1da177e4 371
0e6e847f
DC
372out_free_pages:
373 for (i = 0; i < bp->b_page_count; i++)
374 __free_page(bp->b_pages[i]);
1da177e4
LT
375 return error;
376}
377
378/*
25985edc 379 * Map buffer into kernel address-space if necessary.
1da177e4
LT
380 */
381STATIC int
ce8e922c 382_xfs_buf_map_pages(
1da177e4
LT
383 xfs_buf_t *bp,
384 uint flags)
385{
0e6e847f 386 ASSERT(bp->b_flags & _XBF_PAGES);
ce8e922c 387 if (bp->b_page_count == 1) {
0e6e847f 388 /* A single page buffer is always mappable */
ce8e922c
NS
389 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
390 bp->b_flags |= XBF_MAPPED;
391 } else if (flags & XBF_MAPPED) {
a19fb380
DC
392 int retried = 0;
393
394 do {
395 bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
396 -1, PAGE_KERNEL);
397 if (bp->b_addr)
398 break;
399 vm_unmap_aliases();
400 } while (retried++ <= 1);
401
402 if (!bp->b_addr)
1da177e4 403 return -ENOMEM;
ce8e922c
NS
404 bp->b_addr += bp->b_offset;
405 bp->b_flags |= XBF_MAPPED;
1da177e4
LT
406 }
407
408 return 0;
409}
410
411/*
412 * Finding and Reading Buffers
413 */
414
415/*
ce8e922c 416 * Look up, and creates if absent, a lockable buffer for
1da177e4 417 * a given range of an inode. The buffer is returned
eabbaf11 418 * locked. No I/O is implied by this call.
1da177e4
LT
419 */
420xfs_buf_t *
ce8e922c 421_xfs_buf_find(
1da177e4 422 xfs_buftarg_t *btp, /* block device target */
204ab25f 423 xfs_off_t ioff, /* starting offset of range */
1da177e4 424 size_t isize, /* length of range */
ce8e922c
NS
425 xfs_buf_flags_t flags,
426 xfs_buf_t *new_bp)
1da177e4 427{
204ab25f 428 xfs_off_t range_base;
1da177e4 429 size_t range_length;
74f75a0c
DC
430 struct xfs_perag *pag;
431 struct rb_node **rbp;
432 struct rb_node *parent;
433 xfs_buf_t *bp;
1da177e4
LT
434
435 range_base = (ioff << BBSHIFT);
436 range_length = (isize << BBSHIFT);
437
438 /* Check for IOs smaller than the sector size / not sector aligned */
ce8e922c 439 ASSERT(!(range_length < (1 << btp->bt_sshift)));
204ab25f 440 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
1da177e4 441
74f75a0c
DC
442 /* get tree root */
443 pag = xfs_perag_get(btp->bt_mount,
444 xfs_daddr_to_agno(btp->bt_mount, ioff));
445
446 /* walk tree */
447 spin_lock(&pag->pag_buf_lock);
448 rbp = &pag->pag_buf_tree.rb_node;
449 parent = NULL;
450 bp = NULL;
451 while (*rbp) {
452 parent = *rbp;
453 bp = rb_entry(parent, struct xfs_buf, b_rbnode);
454
455 if (range_base < bp->b_file_offset)
456 rbp = &(*rbp)->rb_left;
457 else if (range_base > bp->b_file_offset)
458 rbp = &(*rbp)->rb_right;
459 else {
460 /*
461 * found a block offset match. If the range doesn't
462 * match, the only way this is allowed is if the buffer
463 * in the cache is stale and the transaction that made
464 * it stale has not yet committed. i.e. we are
465 * reallocating a busy extent. Skip this buffer and
466 * continue searching to the right for an exact match.
467 */
468 if (bp->b_buffer_length != range_length) {
469 ASSERT(bp->b_flags & XBF_STALE);
470 rbp = &(*rbp)->rb_right;
471 continue;
472 }
ce8e922c 473 atomic_inc(&bp->b_hold);
1da177e4
LT
474 goto found;
475 }
476 }
477
478 /* No match found */
ce8e922c 479 if (new_bp) {
74f75a0c
DC
480 rb_link_node(&new_bp->b_rbnode, parent, rbp);
481 rb_insert_color(&new_bp->b_rbnode, &pag->pag_buf_tree);
482 /* the buffer keeps the perag reference until it is freed */
483 new_bp->b_pag = pag;
484 spin_unlock(&pag->pag_buf_lock);
1da177e4 485 } else {
ce8e922c 486 XFS_STATS_INC(xb_miss_locked);
74f75a0c
DC
487 spin_unlock(&pag->pag_buf_lock);
488 xfs_perag_put(pag);
1da177e4 489 }
ce8e922c 490 return new_bp;
1da177e4
LT
491
492found:
74f75a0c
DC
493 spin_unlock(&pag->pag_buf_lock);
494 xfs_perag_put(pag);
1da177e4 495
0c842ad4
CH
496 if (!xfs_buf_trylock(bp)) {
497 if (flags & XBF_TRYLOCK) {
ce8e922c
NS
498 xfs_buf_rele(bp);
499 XFS_STATS_INC(xb_busy_locked);
500 return NULL;
1da177e4 501 }
0c842ad4
CH
502 xfs_buf_lock(bp);
503 XFS_STATS_INC(xb_get_locked_waited);
1da177e4
LT
504 }
505
0e6e847f
DC
506 /*
507 * if the buffer is stale, clear all the external state associated with
508 * it. We need to keep flags such as how we allocated the buffer memory
509 * intact here.
510 */
ce8e922c
NS
511 if (bp->b_flags & XBF_STALE) {
512 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
0e6e847f 513 bp->b_flags &= XBF_MAPPED | _XBF_KMEM | _XBF_PAGES;
2f926587 514 }
0b1b213f
CH
515
516 trace_xfs_buf_find(bp, flags, _RET_IP_);
ce8e922c
NS
517 XFS_STATS_INC(xb_get_locked);
518 return bp;
1da177e4
LT
519}
520
521/*
3815832a
DC
522 * Assembles a buffer covering the specified range. The code is optimised for
523 * cache hits, as metadata intensive workloads will see 3 orders of magnitude
524 * more hits than misses.
1da177e4 525 */
3815832a 526struct xfs_buf *
6ad112bf 527xfs_buf_get(
1da177e4 528 xfs_buftarg_t *target,/* target for buffer */
204ab25f 529 xfs_off_t ioff, /* starting offset of range */
1da177e4 530 size_t isize, /* length of range */
ce8e922c 531 xfs_buf_flags_t flags)
1da177e4 532{
3815832a
DC
533 struct xfs_buf *bp;
534 struct xfs_buf *new_bp;
0e6e847f 535 int error = 0;
1da177e4 536
3815832a
DC
537 bp = _xfs_buf_find(target, ioff, isize, flags, NULL);
538 if (likely(bp))
539 goto found;
540
ce8e922c
NS
541 new_bp = xfs_buf_allocate(flags);
542 if (unlikely(!new_bp))
1da177e4
LT
543 return NULL;
544
3815832a
DC
545 _xfs_buf_initialize(new_bp, target,
546 ioff << BBSHIFT, isize << BBSHIFT, flags);
547
ce8e922c 548 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
3815832a
DC
549 if (!bp) {
550 xfs_buf_deallocate(new_bp);
551 return NULL;
552 }
553
ce8e922c 554 if (bp == new_bp) {
0e6e847f 555 error = xfs_buf_allocate_memory(bp, flags);
1da177e4
LT
556 if (error)
557 goto no_buffer;
3815832a 558 } else
ce8e922c 559 xfs_buf_deallocate(new_bp);
1da177e4 560
3815832a
DC
561 /*
562 * Now we have a workable buffer, fill in the block number so
563 * that we can do IO on it.
564 */
565 bp->b_bn = ioff;
566 bp->b_count_desired = bp->b_buffer_length;
567
568found:
ce8e922c
NS
569 if (!(bp->b_flags & XBF_MAPPED)) {
570 error = _xfs_buf_map_pages(bp, flags);
1da177e4 571 if (unlikely(error)) {
4f10700a
DC
572 xfs_warn(target->bt_mount,
573 "%s: failed to map pages\n", __func__);
1da177e4
LT
574 goto no_buffer;
575 }
576 }
577
ce8e922c 578 XFS_STATS_INC(xb_get);
0b1b213f 579 trace_xfs_buf_get(bp, flags, _RET_IP_);
ce8e922c 580 return bp;
1da177e4 581
3815832a 582no_buffer:
ce8e922c
NS
583 if (flags & (XBF_LOCK | XBF_TRYLOCK))
584 xfs_buf_unlock(bp);
585 xfs_buf_rele(bp);
1da177e4
LT
586 return NULL;
587}
588
5d765b97
CH
589STATIC int
590_xfs_buf_read(
591 xfs_buf_t *bp,
592 xfs_buf_flags_t flags)
593{
594 int status;
595
5d765b97
CH
596 ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE)));
597 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
598
1d5ae5df
CH
599 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | XBF_READ_AHEAD);
600 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | XBF_READ_AHEAD);
5d765b97
CH
601
602 status = xfs_buf_iorequest(bp);
5a52c2a5 603 if (status || bp->b_error || (flags & XBF_ASYNC))
ec53d1db
DC
604 return status;
605 return xfs_buf_iowait(bp);
5d765b97
CH
606}
607
1da177e4 608xfs_buf_t *
6ad112bf 609xfs_buf_read(
1da177e4 610 xfs_buftarg_t *target,
204ab25f 611 xfs_off_t ioff,
1da177e4 612 size_t isize,
ce8e922c 613 xfs_buf_flags_t flags)
1da177e4 614{
ce8e922c
NS
615 xfs_buf_t *bp;
616
617 flags |= XBF_READ;
618
6ad112bf 619 bp = xfs_buf_get(target, ioff, isize, flags);
ce8e922c 620 if (bp) {
0b1b213f
CH
621 trace_xfs_buf_read(bp, flags, _RET_IP_);
622
ce8e922c 623 if (!XFS_BUF_ISDONE(bp)) {
ce8e922c 624 XFS_STATS_INC(xb_get_read);
5d765b97 625 _xfs_buf_read(bp, flags);
ce8e922c 626 } else if (flags & XBF_ASYNC) {
1da177e4
LT
627 /*
628 * Read ahead call which is already satisfied,
629 * drop the buffer
630 */
631 goto no_buffer;
632 } else {
1da177e4 633 /* We do not want read in the flags */
ce8e922c 634 bp->b_flags &= ~XBF_READ;
1da177e4
LT
635 }
636 }
637
ce8e922c 638 return bp;
1da177e4
LT
639
640 no_buffer:
ce8e922c
NS
641 if (flags & (XBF_LOCK | XBF_TRYLOCK))
642 xfs_buf_unlock(bp);
643 xfs_buf_rele(bp);
1da177e4
LT
644 return NULL;
645}
646
1da177e4 647/*
ce8e922c
NS
648 * If we are not low on memory then do the readahead in a deadlock
649 * safe manner.
1da177e4
LT
650 */
651void
ce8e922c 652xfs_buf_readahead(
1da177e4 653 xfs_buftarg_t *target,
204ab25f 654 xfs_off_t ioff,
1a1a3e97 655 size_t isize)
1da177e4 656{
0e6e847f 657 if (bdi_read_congested(target->bt_bdi))
1da177e4
LT
658 return;
659
1a1a3e97
CH
660 xfs_buf_read(target, ioff, isize,
661 XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD|XBF_DONT_BLOCK);
1da177e4
LT
662}
663
5adc94c2
DC
664/*
665 * Read an uncached buffer from disk. Allocates and returns a locked
666 * buffer containing the disk contents or nothing.
667 */
668struct xfs_buf *
669xfs_buf_read_uncached(
670 struct xfs_mount *mp,
671 struct xfs_buftarg *target,
672 xfs_daddr_t daddr,
673 size_t length,
674 int flags)
675{
676 xfs_buf_t *bp;
677 int error;
678
679 bp = xfs_buf_get_uncached(target, length, flags);
680 if (!bp)
681 return NULL;
682
683 /* set up the buffer for a read IO */
5adc94c2
DC
684 XFS_BUF_SET_ADDR(bp, daddr);
685 XFS_BUF_READ(bp);
5adc94c2
DC
686
687 xfsbdstrat(mp, bp);
1a1a3e97 688 error = xfs_buf_iowait(bp);
5adc94c2
DC
689 if (error || bp->b_error) {
690 xfs_buf_relse(bp);
691 return NULL;
692 }
693 return bp;
1da177e4
LT
694}
695
696xfs_buf_t *
ce8e922c 697xfs_buf_get_empty(
1da177e4
LT
698 size_t len,
699 xfs_buftarg_t *target)
700{
ce8e922c 701 xfs_buf_t *bp;
1da177e4 702
ce8e922c
NS
703 bp = xfs_buf_allocate(0);
704 if (bp)
705 _xfs_buf_initialize(bp, target, 0, len, 0);
706 return bp;
1da177e4
LT
707}
708
44396476
DC
709/*
710 * Return a buffer allocated as an empty buffer and associated to external
711 * memory via xfs_buf_associate_memory() back to it's empty state.
712 */
713void
714xfs_buf_set_empty(
715 struct xfs_buf *bp,
716 size_t len)
717{
718 if (bp->b_pages)
719 _xfs_buf_free_pages(bp);
720
721 bp->b_pages = NULL;
722 bp->b_page_count = 0;
723 bp->b_addr = NULL;
724 bp->b_file_offset = 0;
725 bp->b_buffer_length = bp->b_count_desired = len;
726 bp->b_bn = XFS_BUF_DADDR_NULL;
727 bp->b_flags &= ~XBF_MAPPED;
728}
729
1da177e4
LT
730static inline struct page *
731mem_to_page(
732 void *addr)
733{
9e2779fa 734 if ((!is_vmalloc_addr(addr))) {
1da177e4
LT
735 return virt_to_page(addr);
736 } else {
737 return vmalloc_to_page(addr);
738 }
739}
740
741int
ce8e922c
NS
742xfs_buf_associate_memory(
743 xfs_buf_t *bp,
1da177e4
LT
744 void *mem,
745 size_t len)
746{
747 int rval;
748 int i = 0;
d1afb678
LM
749 unsigned long pageaddr;
750 unsigned long offset;
751 size_t buflen;
1da177e4
LT
752 int page_count;
753
0e6e847f 754 pageaddr = (unsigned long)mem & PAGE_MASK;
d1afb678 755 offset = (unsigned long)mem - pageaddr;
0e6e847f
DC
756 buflen = PAGE_ALIGN(len + offset);
757 page_count = buflen >> PAGE_SHIFT;
1da177e4
LT
758
759 /* Free any previous set of page pointers */
ce8e922c
NS
760 if (bp->b_pages)
761 _xfs_buf_free_pages(bp);
1da177e4 762
ce8e922c
NS
763 bp->b_pages = NULL;
764 bp->b_addr = mem;
1da177e4 765
36fae17a 766 rval = _xfs_buf_get_pages(bp, page_count, XBF_DONT_BLOCK);
1da177e4
LT
767 if (rval)
768 return rval;
769
ce8e922c 770 bp->b_offset = offset;
d1afb678
LM
771
772 for (i = 0; i < bp->b_page_count; i++) {
773 bp->b_pages[i] = mem_to_page((void *)pageaddr);
0e6e847f 774 pageaddr += PAGE_SIZE;
1da177e4 775 }
1da177e4 776
d1afb678
LM
777 bp->b_count_desired = len;
778 bp->b_buffer_length = buflen;
ce8e922c 779 bp->b_flags |= XBF_MAPPED;
1da177e4
LT
780
781 return 0;
782}
783
784xfs_buf_t *
686865f7
DC
785xfs_buf_get_uncached(
786 struct xfs_buftarg *target,
1da177e4 787 size_t len,
686865f7 788 int flags)
1da177e4 789{
1fa40b01
CH
790 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
791 int error, i;
1da177e4 792 xfs_buf_t *bp;
1da177e4 793
ce8e922c 794 bp = xfs_buf_allocate(0);
1da177e4
LT
795 if (unlikely(bp == NULL))
796 goto fail;
ce8e922c 797 _xfs_buf_initialize(bp, target, 0, len, 0);
1da177e4 798
1fa40b01
CH
799 error = _xfs_buf_get_pages(bp, page_count, 0);
800 if (error)
1da177e4
LT
801 goto fail_free_buf;
802
1fa40b01 803 for (i = 0; i < page_count; i++) {
686865f7 804 bp->b_pages[i] = alloc_page(xb_to_gfp(flags));
1fa40b01
CH
805 if (!bp->b_pages[i])
806 goto fail_free_mem;
1da177e4 807 }
1fa40b01 808 bp->b_flags |= _XBF_PAGES;
1da177e4 809
1fa40b01
CH
810 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
811 if (unlikely(error)) {
4f10700a
DC
812 xfs_warn(target->bt_mount,
813 "%s: failed to map pages\n", __func__);
1da177e4 814 goto fail_free_mem;
1fa40b01 815 }
1da177e4 816
686865f7 817 trace_xfs_buf_get_uncached(bp, _RET_IP_);
1da177e4 818 return bp;
1fa40b01 819
1da177e4 820 fail_free_mem:
1fa40b01
CH
821 while (--i >= 0)
822 __free_page(bp->b_pages[i]);
ca165b88 823 _xfs_buf_free_pages(bp);
1da177e4 824 fail_free_buf:
ca165b88 825 xfs_buf_deallocate(bp);
1da177e4
LT
826 fail:
827 return NULL;
828}
829
830/*
1da177e4
LT
831 * Increment reference count on buffer, to hold the buffer concurrently
832 * with another thread which may release (free) the buffer asynchronously.
1da177e4
LT
833 * Must hold the buffer already to call this function.
834 */
835void
ce8e922c
NS
836xfs_buf_hold(
837 xfs_buf_t *bp)
1da177e4 838{
0b1b213f 839 trace_xfs_buf_hold(bp, _RET_IP_);
ce8e922c 840 atomic_inc(&bp->b_hold);
1da177e4
LT
841}
842
843/*
ce8e922c
NS
844 * Releases a hold on the specified buffer. If the
845 * the hold count is 1, calls xfs_buf_free.
1da177e4
LT
846 */
847void
ce8e922c
NS
848xfs_buf_rele(
849 xfs_buf_t *bp)
1da177e4 850{
74f75a0c 851 struct xfs_perag *pag = bp->b_pag;
1da177e4 852
0b1b213f 853 trace_xfs_buf_rele(bp, _RET_IP_);
1da177e4 854
74f75a0c 855 if (!pag) {
430cbeb8 856 ASSERT(list_empty(&bp->b_lru));
74f75a0c 857 ASSERT(RB_EMPTY_NODE(&bp->b_rbnode));
fad3aa1e
NS
858 if (atomic_dec_and_test(&bp->b_hold))
859 xfs_buf_free(bp);
860 return;
861 }
862
74f75a0c 863 ASSERT(!RB_EMPTY_NODE(&bp->b_rbnode));
430cbeb8 864
3790689f 865 ASSERT(atomic_read(&bp->b_hold) > 0);
74f75a0c 866 if (atomic_dec_and_lock(&bp->b_hold, &pag->pag_buf_lock)) {
bfc60177 867 if (!(bp->b_flags & XBF_STALE) &&
430cbeb8
DC
868 atomic_read(&bp->b_lru_ref)) {
869 xfs_buf_lru_add(bp);
870 spin_unlock(&pag->pag_buf_lock);
1da177e4 871 } else {
430cbeb8 872 xfs_buf_lru_del(bp);
ce8e922c 873 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
74f75a0c
DC
874 rb_erase(&bp->b_rbnode, &pag->pag_buf_tree);
875 spin_unlock(&pag->pag_buf_lock);
876 xfs_perag_put(pag);
ce8e922c 877 xfs_buf_free(bp);
1da177e4
LT
878 }
879 }
880}
881
882
883/*
0e6e847f 884 * Lock a buffer object, if it is not already locked.
90810b9e
DC
885 *
886 * If we come across a stale, pinned, locked buffer, we know that we are
887 * being asked to lock a buffer that has been reallocated. Because it is
888 * pinned, we know that the log has not been pushed to disk and hence it
889 * will still be locked. Rather than continuing to have trylock attempts
890 * fail until someone else pushes the log, push it ourselves before
891 * returning. This means that the xfsaild will not get stuck trying
892 * to push on stale inode buffers.
1da177e4
LT
893 */
894int
0c842ad4
CH
895xfs_buf_trylock(
896 struct xfs_buf *bp)
1da177e4
LT
897{
898 int locked;
899
ce8e922c 900 locked = down_trylock(&bp->b_sema) == 0;
0b1b213f 901 if (locked)
ce8e922c 902 XB_SET_OWNER(bp);
90810b9e
DC
903 else if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
904 xfs_log_force(bp->b_target->bt_mount, 0);
0b1b213f 905
0c842ad4
CH
906 trace_xfs_buf_trylock(bp, _RET_IP_);
907 return locked;
1da177e4 908}
1da177e4
LT
909
910/*
0e6e847f 911 * Lock a buffer object.
ed3b4d6c
DC
912 *
913 * If we come across a stale, pinned, locked buffer, we know that we
914 * are being asked to lock a buffer that has been reallocated. Because
915 * it is pinned, we know that the log has not been pushed to disk and
916 * hence it will still be locked. Rather than sleeping until someone
917 * else pushes the log, push it ourselves before trying to get the lock.
1da177e4 918 */
ce8e922c
NS
919void
920xfs_buf_lock(
0c842ad4 921 struct xfs_buf *bp)
1da177e4 922{
0b1b213f
CH
923 trace_xfs_buf_lock(bp, _RET_IP_);
924
ed3b4d6c 925 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
ebad861b 926 xfs_log_force(bp->b_target->bt_mount, 0);
ce8e922c
NS
927 down(&bp->b_sema);
928 XB_SET_OWNER(bp);
0b1b213f
CH
929
930 trace_xfs_buf_lock_done(bp, _RET_IP_);
1da177e4
LT
931}
932
933/*
ce8e922c 934 * Releases the lock on the buffer object.
2f926587 935 * If the buffer is marked delwri but is not queued, do so before we
ce8e922c 936 * unlock the buffer as we need to set flags correctly. We also need to
2f926587
DC
937 * take a reference for the delwri queue because the unlocker is going to
938 * drop their's and they don't know we just queued it.
1da177e4
LT
939 */
940void
ce8e922c 941xfs_buf_unlock(
0c842ad4 942 struct xfs_buf *bp)
1da177e4 943{
ce8e922c
NS
944 XB_CLEAR_OWNER(bp);
945 up(&bp->b_sema);
0b1b213f
CH
946
947 trace_xfs_buf_unlock(bp, _RET_IP_);
1da177e4
LT
948}
949
ce8e922c
NS
950STATIC void
951xfs_buf_wait_unpin(
952 xfs_buf_t *bp)
1da177e4
LT
953{
954 DECLARE_WAITQUEUE (wait, current);
955
ce8e922c 956 if (atomic_read(&bp->b_pin_count) == 0)
1da177e4
LT
957 return;
958
ce8e922c 959 add_wait_queue(&bp->b_waiters, &wait);
1da177e4
LT
960 for (;;) {
961 set_current_state(TASK_UNINTERRUPTIBLE);
ce8e922c 962 if (atomic_read(&bp->b_pin_count) == 0)
1da177e4 963 break;
7eaceacc 964 io_schedule();
1da177e4 965 }
ce8e922c 966 remove_wait_queue(&bp->b_waiters, &wait);
1da177e4
LT
967 set_current_state(TASK_RUNNING);
968}
969
970/*
971 * Buffer Utility Routines
972 */
973
1da177e4 974STATIC void
ce8e922c 975xfs_buf_iodone_work(
c4028958 976 struct work_struct *work)
1da177e4 977{
c4028958
DH
978 xfs_buf_t *bp =
979 container_of(work, xfs_buf_t, b_iodone_work);
1da177e4 980
80f6c29d 981 if (bp->b_iodone)
ce8e922c
NS
982 (*(bp->b_iodone))(bp);
983 else if (bp->b_flags & XBF_ASYNC)
1da177e4
LT
984 xfs_buf_relse(bp);
985}
986
987void
ce8e922c
NS
988xfs_buf_ioend(
989 xfs_buf_t *bp,
1da177e4
LT
990 int schedule)
991{
0b1b213f
CH
992 trace_xfs_buf_iodone(bp, _RET_IP_);
993
77be55a5 994 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
ce8e922c
NS
995 if (bp->b_error == 0)
996 bp->b_flags |= XBF_DONE;
1da177e4 997
ce8e922c 998 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
1da177e4 999 if (schedule) {
c4028958 1000 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
ce8e922c 1001 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
1da177e4 1002 } else {
c4028958 1003 xfs_buf_iodone_work(&bp->b_iodone_work);
1da177e4
LT
1004 }
1005 } else {
b4dd330b 1006 complete(&bp->b_iowait);
1da177e4
LT
1007 }
1008}
1009
1da177e4 1010void
ce8e922c
NS
1011xfs_buf_ioerror(
1012 xfs_buf_t *bp,
1013 int error)
1da177e4
LT
1014{
1015 ASSERT(error >= 0 && error <= 0xffff);
ce8e922c 1016 bp->b_error = (unsigned short)error;
0b1b213f 1017 trace_xfs_buf_ioerror(bp, error, _RET_IP_);
1da177e4
LT
1018}
1019
1da177e4 1020int
64e0bc7d 1021xfs_bwrite(
5d765b97 1022 struct xfs_buf *bp)
1da177e4 1023{
8c38366f 1024 int error;
1da177e4 1025
64e0bc7d 1026 bp->b_flags |= XBF_WRITE;
8c38366f 1027 bp->b_flags &= ~(XBF_ASYNC | XBF_READ);
1da177e4 1028
5d765b97 1029 xfs_buf_delwri_dequeue(bp);
939d723b 1030 xfs_bdstrat_cb(bp);
1da177e4 1031
8c38366f 1032 error = xfs_buf_iowait(bp);
c2b006c1
CH
1033 if (error) {
1034 xfs_force_shutdown(bp->b_target->bt_mount,
1035 SHUTDOWN_META_IO_ERROR);
1036 }
64e0bc7d 1037 return error;
5d765b97 1038}
1da177e4 1039
4e23471a
CH
1040/*
1041 * Called when we want to stop a buffer from getting written or read.
1a1a3e97 1042 * We attach the EIO error, muck with its flags, and call xfs_buf_ioend
4e23471a
CH
1043 * so that the proper iodone callbacks get called.
1044 */
1045STATIC int
1046xfs_bioerror(
1047 xfs_buf_t *bp)
1048{
1049#ifdef XFSERRORDEBUG
1050 ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
1051#endif
1052
1053 /*
1054 * No need to wait until the buffer is unpinned, we aren't flushing it.
1055 */
5a52c2a5 1056 xfs_buf_ioerror(bp, EIO);
4e23471a
CH
1057
1058 /*
1a1a3e97 1059 * We're calling xfs_buf_ioend, so delete XBF_DONE flag.
4e23471a
CH
1060 */
1061 XFS_BUF_UNREAD(bp);
61551f1e 1062 xfs_buf_delwri_dequeue(bp);
4e23471a
CH
1063 XFS_BUF_UNDONE(bp);
1064 XFS_BUF_STALE(bp);
1065
1a1a3e97 1066 xfs_buf_ioend(bp, 0);
4e23471a
CH
1067
1068 return EIO;
1069}
1070
1071/*
1072 * Same as xfs_bioerror, except that we are releasing the buffer
1a1a3e97 1073 * here ourselves, and avoiding the xfs_buf_ioend call.
4e23471a
CH
1074 * This is meant for userdata errors; metadata bufs come with
1075 * iodone functions attached, so that we can track down errors.
1076 */
1077STATIC int
1078xfs_bioerror_relse(
1079 struct xfs_buf *bp)
1080{
ed43233b 1081 int64_t fl = bp->b_flags;
4e23471a
CH
1082 /*
1083 * No need to wait until the buffer is unpinned.
1084 * We aren't flushing it.
1085 *
1086 * chunkhold expects B_DONE to be set, whether
1087 * we actually finish the I/O or not. We don't want to
1088 * change that interface.
1089 */
1090 XFS_BUF_UNREAD(bp);
61551f1e 1091 xfs_buf_delwri_dequeue(bp);
4e23471a
CH
1092 XFS_BUF_DONE(bp);
1093 XFS_BUF_STALE(bp);
cb669ca5 1094 bp->b_iodone = NULL;
0cadda1c 1095 if (!(fl & XBF_ASYNC)) {
4e23471a
CH
1096 /*
1097 * Mark b_error and B_ERROR _both_.
1098 * Lot's of chunkcache code assumes that.
1099 * There's no reason to mark error for
1100 * ASYNC buffers.
1101 */
5a52c2a5 1102 xfs_buf_ioerror(bp, EIO);
5fde0326 1103 complete(&bp->b_iowait);
4e23471a
CH
1104 } else {
1105 xfs_buf_relse(bp);
1106 }
1107
1108 return EIO;
1109}
1110
1111
1112/*
1113 * All xfs metadata buffers except log state machine buffers
1114 * get this attached as their b_bdstrat callback function.
1115 * This is so that we can catch a buffer
1116 * after prematurely unpinning it to forcibly shutdown the filesystem.
1117 */
1118int
1119xfs_bdstrat_cb(
1120 struct xfs_buf *bp)
1121{
ebad861b 1122 if (XFS_FORCED_SHUTDOWN(bp->b_target->bt_mount)) {
4e23471a
CH
1123 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1124 /*
1125 * Metadata write that didn't get logged but
1126 * written delayed anyway. These aren't associated
1127 * with a transaction, and can be ignored.
1128 */
1129 if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
1130 return xfs_bioerror_relse(bp);
1131 else
1132 return xfs_bioerror(bp);
1133 }
1134
1135 xfs_buf_iorequest(bp);
1136 return 0;
1137}
1138
1139/*
1140 * Wrapper around bdstrat so that we can stop data from going to disk in case
1141 * we are shutting down the filesystem. Typically user data goes thru this
1142 * path; one of the exceptions is the superblock.
1143 */
1144void
1145xfsbdstrat(
1146 struct xfs_mount *mp,
1147 struct xfs_buf *bp)
1148{
1149 if (XFS_FORCED_SHUTDOWN(mp)) {
1150 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1151 xfs_bioerror_relse(bp);
1152 return;
1153 }
1154
1155 xfs_buf_iorequest(bp);
1156}
1157
b8f82a4a 1158STATIC void
ce8e922c
NS
1159_xfs_buf_ioend(
1160 xfs_buf_t *bp,
1da177e4
LT
1161 int schedule)
1162{
0e6e847f 1163 if (atomic_dec_and_test(&bp->b_io_remaining) == 1)
ce8e922c 1164 xfs_buf_ioend(bp, schedule);
1da177e4
LT
1165}
1166
782e3b3b 1167STATIC void
ce8e922c 1168xfs_buf_bio_end_io(
1da177e4 1169 struct bio *bio,
1da177e4
LT
1170 int error)
1171{
ce8e922c 1172 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1da177e4 1173
cfbe5267 1174 xfs_buf_ioerror(bp, -error);
1da177e4 1175
73c77e2c
JB
1176 if (!error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
1177 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1178
ce8e922c 1179 _xfs_buf_ioend(bp, 1);
1da177e4 1180 bio_put(bio);
1da177e4
LT
1181}
1182
1183STATIC void
ce8e922c
NS
1184_xfs_buf_ioapply(
1185 xfs_buf_t *bp)
1da177e4 1186{
a9759f2d 1187 int rw, map_i, total_nr_pages, nr_pages;
1da177e4 1188 struct bio *bio;
ce8e922c
NS
1189 int offset = bp->b_offset;
1190 int size = bp->b_count_desired;
1191 sector_t sector = bp->b_bn;
1da177e4 1192
ce8e922c 1193 total_nr_pages = bp->b_page_count;
1da177e4
LT
1194 map_i = 0;
1195
1d5ae5df
CH
1196 if (bp->b_flags & XBF_WRITE) {
1197 if (bp->b_flags & XBF_SYNCIO)
1198 rw = WRITE_SYNC;
1199 else
1200 rw = WRITE;
1201 if (bp->b_flags & XBF_FUA)
1202 rw |= REQ_FUA;
1203 if (bp->b_flags & XBF_FLUSH)
1204 rw |= REQ_FLUSH;
1205 } else if (bp->b_flags & XBF_READ_AHEAD) {
1206 rw = READA;
51bdd706 1207 } else {
1d5ae5df 1208 rw = READ;
f538d4da
CH
1209 }
1210
34951f5c
CH
1211 /* we only use the buffer cache for meta-data */
1212 rw |= REQ_META;
1213
1da177e4 1214next_chunk:
ce8e922c 1215 atomic_inc(&bp->b_io_remaining);
1da177e4
LT
1216 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1217 if (nr_pages > total_nr_pages)
1218 nr_pages = total_nr_pages;
1219
1220 bio = bio_alloc(GFP_NOIO, nr_pages);
ce8e922c 1221 bio->bi_bdev = bp->b_target->bt_bdev;
1da177e4 1222 bio->bi_sector = sector;
ce8e922c
NS
1223 bio->bi_end_io = xfs_buf_bio_end_io;
1224 bio->bi_private = bp;
1da177e4 1225
0e6e847f 1226
1da177e4 1227 for (; size && nr_pages; nr_pages--, map_i++) {
0e6e847f 1228 int rbytes, nbytes = PAGE_SIZE - offset;
1da177e4
LT
1229
1230 if (nbytes > size)
1231 nbytes = size;
1232
ce8e922c
NS
1233 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1234 if (rbytes < nbytes)
1da177e4
LT
1235 break;
1236
1237 offset = 0;
1238 sector += nbytes >> BBSHIFT;
1239 size -= nbytes;
1240 total_nr_pages--;
1241 }
1242
1da177e4 1243 if (likely(bio->bi_size)) {
73c77e2c
JB
1244 if (xfs_buf_is_vmapped(bp)) {
1245 flush_kernel_vmap_range(bp->b_addr,
1246 xfs_buf_vmap_len(bp));
1247 }
1da177e4
LT
1248 submit_bio(rw, bio);
1249 if (size)
1250 goto next_chunk;
1251 } else {
ce8e922c 1252 xfs_buf_ioerror(bp, EIO);
ec53d1db 1253 bio_put(bio);
1da177e4
LT
1254 }
1255}
1256
1da177e4 1257int
ce8e922c
NS
1258xfs_buf_iorequest(
1259 xfs_buf_t *bp)
1da177e4 1260{
0b1b213f 1261 trace_xfs_buf_iorequest(bp, _RET_IP_);
1da177e4 1262
375ec69d 1263 ASSERT(!(bp->b_flags & XBF_DELWRI));
1da177e4 1264
375ec69d 1265 if (bp->b_flags & XBF_WRITE)
ce8e922c 1266 xfs_buf_wait_unpin(bp);
ce8e922c 1267 xfs_buf_hold(bp);
1da177e4
LT
1268
1269 /* Set the count to 1 initially, this will stop an I/O
1270 * completion callout which happens before we have started
ce8e922c 1271 * all the I/O from calling xfs_buf_ioend too early.
1da177e4 1272 */
ce8e922c
NS
1273 atomic_set(&bp->b_io_remaining, 1);
1274 _xfs_buf_ioapply(bp);
1275 _xfs_buf_ioend(bp, 0);
1da177e4 1276
ce8e922c 1277 xfs_buf_rele(bp);
1da177e4
LT
1278 return 0;
1279}
1280
1281/*
ce8e922c
NS
1282 * Waits for I/O to complete on the buffer supplied.
1283 * It returns immediately if no I/O is pending.
1284 * It returns the I/O error code, if any, or 0 if there was no error.
1da177e4
LT
1285 */
1286int
ce8e922c
NS
1287xfs_buf_iowait(
1288 xfs_buf_t *bp)
1da177e4 1289{
0b1b213f
CH
1290 trace_xfs_buf_iowait(bp, _RET_IP_);
1291
b4dd330b 1292 wait_for_completion(&bp->b_iowait);
0b1b213f
CH
1293
1294 trace_xfs_buf_iowait_done(bp, _RET_IP_);
ce8e922c 1295 return bp->b_error;
1da177e4
LT
1296}
1297
ce8e922c
NS
1298xfs_caddr_t
1299xfs_buf_offset(
1300 xfs_buf_t *bp,
1da177e4
LT
1301 size_t offset)
1302{
1303 struct page *page;
1304
ce8e922c 1305 if (bp->b_flags & XBF_MAPPED)
62926044 1306 return bp->b_addr + offset;
1da177e4 1307
ce8e922c 1308 offset += bp->b_offset;
0e6e847f
DC
1309 page = bp->b_pages[offset >> PAGE_SHIFT];
1310 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_SIZE-1));
1da177e4
LT
1311}
1312
1313/*
1da177e4
LT
1314 * Move data into or out of a buffer.
1315 */
1316void
ce8e922c
NS
1317xfs_buf_iomove(
1318 xfs_buf_t *bp, /* buffer to process */
1da177e4
LT
1319 size_t boff, /* starting buffer offset */
1320 size_t bsize, /* length to copy */
b9c48649 1321 void *data, /* data address */
ce8e922c 1322 xfs_buf_rw_t mode) /* read/write/zero flag */
1da177e4
LT
1323{
1324 size_t bend, cpoff, csize;
1325 struct page *page;
1326
1327 bend = boff + bsize;
1328 while (boff < bend) {
ce8e922c
NS
1329 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1330 cpoff = xfs_buf_poff(boff + bp->b_offset);
1da177e4 1331 csize = min_t(size_t,
0e6e847f 1332 PAGE_SIZE-cpoff, bp->b_count_desired-boff);
1da177e4 1333
0e6e847f 1334 ASSERT(((csize + cpoff) <= PAGE_SIZE));
1da177e4
LT
1335
1336 switch (mode) {
ce8e922c 1337 case XBRW_ZERO:
1da177e4
LT
1338 memset(page_address(page) + cpoff, 0, csize);
1339 break;
ce8e922c 1340 case XBRW_READ:
1da177e4
LT
1341 memcpy(data, page_address(page) + cpoff, csize);
1342 break;
ce8e922c 1343 case XBRW_WRITE:
1da177e4
LT
1344 memcpy(page_address(page) + cpoff, data, csize);
1345 }
1346
1347 boff += csize;
1348 data += csize;
1349 }
1350}
1351
1352/*
ce8e922c 1353 * Handling of buffer targets (buftargs).
1da177e4
LT
1354 */
1355
1356/*
430cbeb8
DC
1357 * Wait for any bufs with callbacks that have been submitted but have not yet
1358 * returned. These buffers will have an elevated hold count, so wait on those
1359 * while freeing all the buffers only held by the LRU.
1da177e4
LT
1360 */
1361void
1362xfs_wait_buftarg(
74f75a0c 1363 struct xfs_buftarg *btp)
1da177e4 1364{
430cbeb8
DC
1365 struct xfs_buf *bp;
1366
1367restart:
1368 spin_lock(&btp->bt_lru_lock);
1369 while (!list_empty(&btp->bt_lru)) {
1370 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1371 if (atomic_read(&bp->b_hold) > 1) {
1372 spin_unlock(&btp->bt_lru_lock);
26af6552 1373 delay(100);
430cbeb8 1374 goto restart;
1da177e4 1375 }
430cbeb8
DC
1376 /*
1377 * clear the LRU reference count so the bufer doesn't get
1378 * ignored in xfs_buf_rele().
1379 */
1380 atomic_set(&bp->b_lru_ref, 0);
1381 spin_unlock(&btp->bt_lru_lock);
1382 xfs_buf_rele(bp);
1383 spin_lock(&btp->bt_lru_lock);
1da177e4 1384 }
430cbeb8 1385 spin_unlock(&btp->bt_lru_lock);
1da177e4
LT
1386}
1387
ff57ab21
DC
1388int
1389xfs_buftarg_shrink(
1390 struct shrinker *shrink,
1495f230 1391 struct shrink_control *sc)
a6867a68 1392{
ff57ab21
DC
1393 struct xfs_buftarg *btp = container_of(shrink,
1394 struct xfs_buftarg, bt_shrinker);
430cbeb8 1395 struct xfs_buf *bp;
1495f230 1396 int nr_to_scan = sc->nr_to_scan;
430cbeb8
DC
1397 LIST_HEAD(dispose);
1398
1399 if (!nr_to_scan)
1400 return btp->bt_lru_nr;
1401
1402 spin_lock(&btp->bt_lru_lock);
1403 while (!list_empty(&btp->bt_lru)) {
1404 if (nr_to_scan-- <= 0)
1405 break;
1406
1407 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1408
1409 /*
1410 * Decrement the b_lru_ref count unless the value is already
1411 * zero. If the value is already zero, we need to reclaim the
1412 * buffer, otherwise it gets another trip through the LRU.
1413 */
1414 if (!atomic_add_unless(&bp->b_lru_ref, -1, 0)) {
1415 list_move_tail(&bp->b_lru, &btp->bt_lru);
1416 continue;
1417 }
1418
1419 /*
1420 * remove the buffer from the LRU now to avoid needing another
1421 * lock round trip inside xfs_buf_rele().
1422 */
1423 list_move(&bp->b_lru, &dispose);
1424 btp->bt_lru_nr--;
ff57ab21 1425 }
430cbeb8
DC
1426 spin_unlock(&btp->bt_lru_lock);
1427
1428 while (!list_empty(&dispose)) {
1429 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1430 list_del_init(&bp->b_lru);
1431 xfs_buf_rele(bp);
1432 }
1433
1434 return btp->bt_lru_nr;
a6867a68
DC
1435}
1436
1da177e4
LT
1437void
1438xfs_free_buftarg(
b7963133
CH
1439 struct xfs_mount *mp,
1440 struct xfs_buftarg *btp)
1da177e4 1441{
ff57ab21
DC
1442 unregister_shrinker(&btp->bt_shrinker);
1443
1da177e4 1444 xfs_flush_buftarg(btp, 1);
b7963133
CH
1445 if (mp->m_flags & XFS_MOUNT_BARRIER)
1446 xfs_blkdev_issue_flush(btp);
a6867a68 1447
a6867a68 1448 kthread_stop(btp->bt_task);
f0e2d93c 1449 kmem_free(btp);
1da177e4
LT
1450}
1451
1da177e4
LT
1452STATIC int
1453xfs_setsize_buftarg_flags(
1454 xfs_buftarg_t *btp,
1455 unsigned int blocksize,
1456 unsigned int sectorsize,
1457 int verbose)
1458{
ce8e922c
NS
1459 btp->bt_bsize = blocksize;
1460 btp->bt_sshift = ffs(sectorsize) - 1;
1461 btp->bt_smask = sectorsize - 1;
1da177e4 1462
ce8e922c 1463 if (set_blocksize(btp->bt_bdev, sectorsize)) {
4f10700a
DC
1464 xfs_warn(btp->bt_mount,
1465 "Cannot set_blocksize to %u on device %s\n",
c35a549c 1466 sectorsize, xfs_buf_target_name(btp));
1da177e4
LT
1467 return EINVAL;
1468 }
1469
1da177e4
LT
1470 return 0;
1471}
1472
1473/*
ce8e922c
NS
1474 * When allocating the initial buffer target we have not yet
1475 * read in the superblock, so don't know what sized sectors
1476 * are being used is at this early stage. Play safe.
1477 */
1da177e4
LT
1478STATIC int
1479xfs_setsize_buftarg_early(
1480 xfs_buftarg_t *btp,
1481 struct block_device *bdev)
1482{
1483 return xfs_setsize_buftarg_flags(btp,
0e6e847f 1484 PAGE_SIZE, bdev_logical_block_size(bdev), 0);
1da177e4
LT
1485}
1486
1487int
1488xfs_setsize_buftarg(
1489 xfs_buftarg_t *btp,
1490 unsigned int blocksize,
1491 unsigned int sectorsize)
1492{
1493 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1494}
1495
a6867a68 1496STATIC int
c4e1c098 1497xfs_alloc_delwri_queue(
e2a07812
JE
1498 xfs_buftarg_t *btp,
1499 const char *fsname)
a6867a68 1500{
c4e1c098
CH
1501 INIT_LIST_HEAD(&btp->bt_delwri_queue);
1502 spin_lock_init(&btp->bt_delwri_lock);
a6867a68 1503 btp->bt_flags = 0;
e2a07812 1504 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd/%s", fsname);
ff57ab21
DC
1505 if (IS_ERR(btp->bt_task))
1506 return PTR_ERR(btp->bt_task);
1507 return 0;
a6867a68
DC
1508}
1509
1da177e4
LT
1510xfs_buftarg_t *
1511xfs_alloc_buftarg(
ebad861b 1512 struct xfs_mount *mp,
1da177e4 1513 struct block_device *bdev,
e2a07812
JE
1514 int external,
1515 const char *fsname)
1da177e4
LT
1516{
1517 xfs_buftarg_t *btp;
1518
1519 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1520
ebad861b 1521 btp->bt_mount = mp;
ce8e922c
NS
1522 btp->bt_dev = bdev->bd_dev;
1523 btp->bt_bdev = bdev;
0e6e847f
DC
1524 btp->bt_bdi = blk_get_backing_dev_info(bdev);
1525 if (!btp->bt_bdi)
1526 goto error;
1527
430cbeb8
DC
1528 INIT_LIST_HEAD(&btp->bt_lru);
1529 spin_lock_init(&btp->bt_lru_lock);
1da177e4
LT
1530 if (xfs_setsize_buftarg_early(btp, bdev))
1531 goto error;
c4e1c098 1532 if (xfs_alloc_delwri_queue(btp, fsname))
a6867a68 1533 goto error;
ff57ab21
DC
1534 btp->bt_shrinker.shrink = xfs_buftarg_shrink;
1535 btp->bt_shrinker.seeks = DEFAULT_SEEKS;
1536 register_shrinker(&btp->bt_shrinker);
1da177e4
LT
1537 return btp;
1538
1539error:
f0e2d93c 1540 kmem_free(btp);
1da177e4
LT
1541 return NULL;
1542}
1543
1544
1545/*
ce8e922c 1546 * Delayed write buffer handling
1da177e4 1547 */
61551f1e 1548void
ce8e922c 1549xfs_buf_delwri_queue(
527cfdf1 1550 xfs_buf_t *bp)
1da177e4 1551{
c4e1c098 1552 struct xfs_buftarg *btp = bp->b_target;
a6867a68 1553
0b1b213f
CH
1554 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1555
5a8ee6ba 1556 ASSERT(!(bp->b_flags & XBF_READ));
1da177e4 1557
c4e1c098 1558 spin_lock(&btp->bt_delwri_lock);
ce8e922c 1559 if (!list_empty(&bp->b_list)) {
5a8ee6ba 1560 /* if already in the queue, move it to the tail */
ce8e922c 1561 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
c4e1c098 1562 list_move_tail(&bp->b_list, &btp->bt_delwri_queue);
5a8ee6ba 1563 } else {
c9c12971 1564 /* start xfsbufd as it is about to have something to do */
c4e1c098 1565 if (list_empty(&btp->bt_delwri_queue))
5a8ee6ba 1566 wake_up_process(bp->b_target->bt_task);
c9c12971 1567
5a8ee6ba
CH
1568 atomic_inc(&bp->b_hold);
1569 bp->b_flags |= XBF_DELWRI | _XBF_DELWRI_Q | XBF_ASYNC;
c4e1c098 1570 list_add_tail(&bp->b_list, &btp->bt_delwri_queue);
5a8ee6ba 1571 }
ce8e922c 1572 bp->b_queuetime = jiffies;
c4e1c098 1573 spin_unlock(&btp->bt_delwri_lock);
1da177e4
LT
1574}
1575
1576void
ce8e922c
NS
1577xfs_buf_delwri_dequeue(
1578 xfs_buf_t *bp)
1da177e4
LT
1579{
1580 int dequeued = 0;
1581
c4e1c098 1582 spin_lock(&bp->b_target->bt_delwri_lock);
ce8e922c
NS
1583 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1584 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1585 list_del_init(&bp->b_list);
1da177e4
LT
1586 dequeued = 1;
1587 }
ce8e922c 1588 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
c4e1c098 1589 spin_unlock(&bp->b_target->bt_delwri_lock);
1da177e4
LT
1590
1591 if (dequeued)
ce8e922c 1592 xfs_buf_rele(bp);
1da177e4 1593
0b1b213f 1594 trace_xfs_buf_delwri_dequeue(bp, _RET_IP_);
1da177e4
LT
1595}
1596
d808f617
DC
1597/*
1598 * If a delwri buffer needs to be pushed before it has aged out, then promote
1599 * it to the head of the delwri queue so that it will be flushed on the next
1600 * xfsbufd run. We do this by resetting the queuetime of the buffer to be older
1601 * than the age currently needed to flush the buffer. Hence the next time the
1602 * xfsbufd sees it is guaranteed to be considered old enough to flush.
1603 */
1604void
1605xfs_buf_delwri_promote(
1606 struct xfs_buf *bp)
1607{
1608 struct xfs_buftarg *btp = bp->b_target;
1609 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10) + 1;
1610
1611 ASSERT(bp->b_flags & XBF_DELWRI);
1612 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1613
1614 /*
1615 * Check the buffer age before locking the delayed write queue as we
1616 * don't need to promote buffers that are already past the flush age.
1617 */
1618 if (bp->b_queuetime < jiffies - age)
1619 return;
1620 bp->b_queuetime = jiffies - age;
c4e1c098
CH
1621 spin_lock(&btp->bt_delwri_lock);
1622 list_move(&bp->b_list, &btp->bt_delwri_queue);
1623 spin_unlock(&btp->bt_delwri_lock);
d808f617
DC
1624}
1625
1da177e4 1626STATIC void
ce8e922c 1627xfs_buf_runall_queues(
1da177e4
LT
1628 struct workqueue_struct *queue)
1629{
1630 flush_workqueue(queue);
1631}
1632
585e6d88
DC
1633/*
1634 * Move as many buffers as specified to the supplied list
1635 * idicating if we skipped any buffers to prevent deadlocks.
1636 */
1637STATIC int
1638xfs_buf_delwri_split(
1639 xfs_buftarg_t *target,
1640 struct list_head *list,
5e6a07df 1641 unsigned long age)
585e6d88
DC
1642{
1643 xfs_buf_t *bp, *n;
585e6d88 1644 int skipped = 0;
5e6a07df 1645 int force;
585e6d88 1646
5e6a07df 1647 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
585e6d88 1648 INIT_LIST_HEAD(list);
c4e1c098
CH
1649 spin_lock(&target->bt_delwri_lock);
1650 list_for_each_entry_safe(bp, n, &target->bt_delwri_queue, b_list) {
585e6d88
DC
1651 ASSERT(bp->b_flags & XBF_DELWRI);
1652
811e64c7 1653 if (!xfs_buf_ispinned(bp) && xfs_buf_trylock(bp)) {
5e6a07df 1654 if (!force &&
585e6d88
DC
1655 time_before(jiffies, bp->b_queuetime + age)) {
1656 xfs_buf_unlock(bp);
1657 break;
1658 }
1659
1d5ae5df 1660 bp->b_flags &= ~(XBF_DELWRI | _XBF_DELWRI_Q);
585e6d88
DC
1661 bp->b_flags |= XBF_WRITE;
1662 list_move_tail(&bp->b_list, list);
bfe27419 1663 trace_xfs_buf_delwri_split(bp, _RET_IP_);
585e6d88
DC
1664 } else
1665 skipped++;
1666 }
585e6d88 1667
c4e1c098 1668 spin_unlock(&target->bt_delwri_lock);
585e6d88 1669 return skipped;
585e6d88
DC
1670}
1671
089716aa
DC
1672/*
1673 * Compare function is more complex than it needs to be because
1674 * the return value is only 32 bits and we are doing comparisons
1675 * on 64 bit values
1676 */
1677static int
1678xfs_buf_cmp(
1679 void *priv,
1680 struct list_head *a,
1681 struct list_head *b)
1682{
1683 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1684 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1685 xfs_daddr_t diff;
1686
1687 diff = ap->b_bn - bp->b_bn;
1688 if (diff < 0)
1689 return -1;
1690 if (diff > 0)
1691 return 1;
1692 return 0;
1693}
1694
1da177e4 1695STATIC int
23ea4032 1696xfsbufd(
585e6d88 1697 void *data)
1da177e4 1698{
089716aa 1699 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
1da177e4 1700
1da177e4
LT
1701 current->flags |= PF_MEMALLOC;
1702
978c7b2f
RW
1703 set_freezable();
1704
1da177e4 1705 do {
c9c12971
DC
1706 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10);
1707 long tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10);
089716aa 1708 struct list_head tmp;
a1b7ea5d 1709 struct blk_plug plug;
c9c12971 1710
3e1d1d28 1711 if (unlikely(freezing(current))) {
ce8e922c 1712 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
3e1d1d28 1713 refrigerator();
abd0cf7a 1714 } else {
ce8e922c 1715 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
abd0cf7a 1716 }
1da177e4 1717
c9c12971 1718 /* sleep for a long time if there is nothing to do. */
c4e1c098 1719 if (list_empty(&target->bt_delwri_queue))
c9c12971
DC
1720 tout = MAX_SCHEDULE_TIMEOUT;
1721 schedule_timeout_interruptible(tout);
1da177e4 1722
c9c12971 1723 xfs_buf_delwri_split(target, &tmp, age);
089716aa 1724 list_sort(NULL, &tmp, xfs_buf_cmp);
a1b7ea5d
CH
1725
1726 blk_start_plug(&plug);
1da177e4 1727 while (!list_empty(&tmp)) {
089716aa
DC
1728 struct xfs_buf *bp;
1729 bp = list_first_entry(&tmp, struct xfs_buf, b_list);
ce8e922c 1730 list_del_init(&bp->b_list);
939d723b 1731 xfs_bdstrat_cb(bp);
1da177e4 1732 }
a1b7ea5d 1733 blk_finish_plug(&plug);
4df08c52 1734 } while (!kthread_should_stop());
1da177e4 1735
4df08c52 1736 return 0;
1da177e4
LT
1737}
1738
1739/*
ce8e922c
NS
1740 * Go through all incore buffers, and release buffers if they belong to
1741 * the given device. This is used in filesystem error handling to
1742 * preserve the consistency of its metadata.
1da177e4
LT
1743 */
1744int
1745xfs_flush_buftarg(
585e6d88
DC
1746 xfs_buftarg_t *target,
1747 int wait)
1da177e4 1748{
089716aa 1749 xfs_buf_t *bp;
585e6d88 1750 int pincount = 0;
089716aa
DC
1751 LIST_HEAD(tmp_list);
1752 LIST_HEAD(wait_list);
a1b7ea5d 1753 struct blk_plug plug;
1da177e4 1754
c626d174 1755 xfs_buf_runall_queues(xfsconvertd_workqueue);
ce8e922c
NS
1756 xfs_buf_runall_queues(xfsdatad_workqueue);
1757 xfs_buf_runall_queues(xfslogd_workqueue);
1da177e4 1758
5e6a07df 1759 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
089716aa 1760 pincount = xfs_buf_delwri_split(target, &tmp_list, 0);
1da177e4
LT
1761
1762 /*
089716aa
DC
1763 * Dropped the delayed write list lock, now walk the temporary list.
1764 * All I/O is issued async and then if we need to wait for completion
1765 * we do that after issuing all the IO.
1da177e4 1766 */
089716aa 1767 list_sort(NULL, &tmp_list, xfs_buf_cmp);
a1b7ea5d
CH
1768
1769 blk_start_plug(&plug);
089716aa
DC
1770 while (!list_empty(&tmp_list)) {
1771 bp = list_first_entry(&tmp_list, struct xfs_buf, b_list);
585e6d88 1772 ASSERT(target == bp->b_target);
089716aa
DC
1773 list_del_init(&bp->b_list);
1774 if (wait) {
ce8e922c 1775 bp->b_flags &= ~XBF_ASYNC;
089716aa
DC
1776 list_add(&bp->b_list, &wait_list);
1777 }
939d723b 1778 xfs_bdstrat_cb(bp);
1da177e4 1779 }
a1b7ea5d 1780 blk_finish_plug(&plug);
1da177e4 1781
089716aa 1782 if (wait) {
a1b7ea5d 1783 /* Wait for IO to complete. */
089716aa
DC
1784 while (!list_empty(&wait_list)) {
1785 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
f07c2250 1786
089716aa 1787 list_del_init(&bp->b_list);
1a1a3e97 1788 xfs_buf_iowait(bp);
089716aa
DC
1789 xfs_buf_relse(bp);
1790 }
1da177e4
LT
1791 }
1792
1da177e4
LT
1793 return pincount;
1794}
1795
04d8b284 1796int __init
ce8e922c 1797xfs_buf_init(void)
1da177e4 1798{
8758280f
NS
1799 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1800 KM_ZONE_HWALIGN, NULL);
ce8e922c 1801 if (!xfs_buf_zone)
0b1b213f 1802 goto out;
04d8b284 1803
51749e47 1804 xfslogd_workqueue = alloc_workqueue("xfslogd",
6370a6ad 1805 WQ_MEM_RECLAIM | WQ_HIGHPRI, 1);
23ea4032 1806 if (!xfslogd_workqueue)
04d8b284 1807 goto out_free_buf_zone;
1da177e4 1808
83e75904 1809 xfsdatad_workqueue = alloc_workqueue("xfsdatad", WQ_MEM_RECLAIM, 1);
23ea4032
CH
1810 if (!xfsdatad_workqueue)
1811 goto out_destroy_xfslogd_workqueue;
1da177e4 1812
83e75904
TH
1813 xfsconvertd_workqueue = alloc_workqueue("xfsconvertd",
1814 WQ_MEM_RECLAIM, 1);
c626d174
DC
1815 if (!xfsconvertd_workqueue)
1816 goto out_destroy_xfsdatad_workqueue;
1817
23ea4032 1818 return 0;
1da177e4 1819
c626d174
DC
1820 out_destroy_xfsdatad_workqueue:
1821 destroy_workqueue(xfsdatad_workqueue);
23ea4032
CH
1822 out_destroy_xfslogd_workqueue:
1823 destroy_workqueue(xfslogd_workqueue);
23ea4032 1824 out_free_buf_zone:
ce8e922c 1825 kmem_zone_destroy(xfs_buf_zone);
0b1b213f 1826 out:
8758280f 1827 return -ENOMEM;
1da177e4
LT
1828}
1829
1da177e4 1830void
ce8e922c 1831xfs_buf_terminate(void)
1da177e4 1832{
c626d174 1833 destroy_workqueue(xfsconvertd_workqueue);
04d8b284
CH
1834 destroy_workqueue(xfsdatad_workqueue);
1835 destroy_workqueue(xfslogd_workqueue);
ce8e922c 1836 kmem_zone_destroy(xfs_buf_zone);
1da177e4 1837}