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