blob: 3cc671c8a67f481176486b2b65f6c06ff3cf08e9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scottf07c2252006-09-28 10:52:15 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Vlad Apostolov93c189c2006-11-11 18:03:49 +110018#include "xfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/stddef.h>
20#include <linux/errno.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#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>
Christoph Hellwig4df08c52005-09-05 08:34:18 +100032#include <linux/kthread.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080033#include <linux/migrate.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070034#include <linux/backing-dev.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080035#include <linux/freezer.h>
Dave Chinner089716a2010-01-26 15:13:25 +110036#include <linux/list_sort.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Christoph Hellwigb7963132009-03-03 14:48:37 -050038#include "xfs_sb.h"
39#include "xfs_inum.h"
Dave Chinnered3b4d62010-05-21 12:07:08 +100040#include "xfs_log.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050041#include "xfs_ag.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050042#include "xfs_mount.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000043#include "xfs_trace.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050044
David Chinner7989cb82007-02-10 18:34:56 +110045static kmem_zone_t *xfs_buf_zone;
David Chinnera6867a62006-01-11 15:37:58 +110046STATIC int xfsbufd(void *);
Nathan Scottce8e9222006-01-11 15:39:08 +110047STATIC void xfs_buf_delwri_queue(xfs_buf_t *, int);
Christoph Hellwig23ea4032005-06-21 15:14:01 +100048
David Chinner7989cb82007-02-10 18:34:56 +110049static struct workqueue_struct *xfslogd_workqueue;
Christoph Hellwig0829c362005-09-02 16:58:49 +100050struct workqueue_struct *xfsdatad_workqueue;
Dave Chinnerc626d172009-04-06 18:42:11 +020051struct workqueue_struct *xfsconvertd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Nathan Scottce8e9222006-01-11 15:39:08 +110053#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#else
Nathan Scottce8e9222006-01-11 15:39:08 +110058# 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#endif
62
Nathan Scottce8e9222006-01-11 15:39:08 +110063#define xb_to_gfp(flags) \
64 ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : \
65 ((flags) & XBF_DONT_BLOCK) ? GFP_NOFS : GFP_KERNEL) | __GFP_NOWARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Nathan Scottce8e9222006-01-11 15:39:08 +110067#define xb_to_km(flags) \
68 (((flags) & XBF_DONT_BLOCK) ? KM_NOFS : KM_SLEEP)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Nathan Scottce8e9222006-01-11 15:39:08 +110070#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));
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
James Bottomley73c77e22010-01-25 11:42:24 -060075static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/*
Nathan Scottce8e9222006-01-11 15:39:08 +110097 * Page Region interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 *
Nathan Scottce8e9222006-01-11 15:39:08 +110099 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
Nathan Scottce8e9222006-01-11 15:39:08 +1100103 * Each such region is "bytes per page / bits per long" bytes long.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 *
Nathan Scottce8e9222006-01-11 15:39:08 +1100105 * NBPPR == number-of-bytes-per-page-region
106 * BTOPR == bytes-to-page-region (rounded up)
107 * BTOPRT == bytes-to-page-region-truncated (rounded down)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
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
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000142STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143set_page_region(
144 struct page *page,
145 size_t offset,
146 size_t length)
147{
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700148 set_page_private(page,
149 page_private(page) | page_region_mask(offset, length));
150 if (page_private(page) == ~0UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 SetPageUptodate(page);
152}
153
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000154STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155test_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
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700162 return (mask && (page_private(page) & mask) == mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
165/*
Dave Chinner430cbeb2010-12-02 16:30:55 +1100166 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
Dave Chinner430cbeb2010-12-02 16:30:55 +1100171STATIC 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.
194 */
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}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100241_xfs_buf_initialize(
242 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 xfs_buftarg_t *target,
Nathan Scott204ab25f2006-01-11 20:50:22 +1100244 xfs_off_t range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 size_t range_length,
Nathan Scottce8e9222006-01-11 15:39:08 +1100246 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100249 * We don't want certain flags to appear in b_flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100251 flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Nathan Scottce8e9222006-01-11 15:39:08 +1100253 memset(bp, 0, sizeof(xfs_buf_t));
254 atomic_set(&bp->b_hold, 1);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100255 atomic_set(&bp->b_lru_ref, 1);
David Chinnerb4dd3302008-08-13 16:36:11 +1000256 init_completion(&bp->b_iowait);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100257 INIT_LIST_HEAD(&bp->b_lru);
Nathan Scottce8e9222006-01-11 15:39:08 +1100258 INIT_LIST_HEAD(&bp->b_list);
Dave Chinner74f75a02010-09-24 19:59:04 +1000259 RB_CLEAR_NODE(&bp->b_rbnode);
Thomas Gleixnera731cd12010-09-07 14:33:15 +0000260 sema_init(&bp->b_sema, 0); /* held, no waiters */
Nathan Scottce8e9222006-01-11 15:39:08 +1100261 XB_SET_OWNER(bp);
262 bp->b_target = target;
263 bp->b_file_offset = range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /*
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 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100269 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Nathan Scottce8e9222006-01-11 15:39:08 +1100275 XFS_STATS_INC(xb_create);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000276
277 trace_xfs_buf_init(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100281 * Allocate a page array capable of holding a specified number
282 * of pages, and point the page buf at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 */
284STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100285_xfs_buf_get_pages(
286 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 int page_count,
Nathan Scottce8e9222006-01-11 15:39:08 +1100288 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 /* Make sure that we have a page list */
Nathan Scottce8e9222006-01-11 15:39:08 +1100291 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100297 bp->b_pages = kmem_alloc(sizeof(struct page *) *
298 page_count, xb_to_km(flags));
299 if (bp->b_pages == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return -ENOMEM;
301 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100302 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304 return 0;
305}
306
307/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100308 * Frees b_pages if it was allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 */
310STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100311_xfs_buf_free_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 xfs_buf_t *bp)
313{
Nathan Scottce8e9222006-01-11 15:39:08 +1100314 if (bp->b_pages != bp->b_page_array) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000315 kmem_free(bp->b_pages);
Dave Chinner3fc98b12009-12-14 23:11:57 +0000316 bp->b_pages = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318}
319
320/*
321 * Releases the specified buffer.
322 *
323 * The modification state of any associated pages is left unchanged.
Nathan Scottce8e9222006-01-11 15:39:08 +1100324 * The buffer most not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * hashed and refcounted buffers
326 */
327void
Nathan Scottce8e9222006-01-11 15:39:08 +1100328xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 xfs_buf_t *bp)
330{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000331 trace_xfs_buf_free(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Dave Chinner430cbeb2010-12-02 16:30:55 +1100333 ASSERT(list_empty(&bp->b_lru));
334
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000335 if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 uint i;
337
James Bottomley73c77e22010-01-25 11:42:24 -0600338 if (xfs_buf_is_vmapped(bp))
Alex Elder8a262e52010-03-16 18:55:56 +0000339 vm_unmap_ram(bp->b_addr - bp->b_offset,
340 bp->b_page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Nathan Scott948ecdb2006-09-28 11:03:13 +1000342 for (i = 0; i < bp->b_page_count; i++) {
343 struct page *page = bp->b_pages[i];
344
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000345 if (bp->b_flags & _XBF_PAGE_CACHE)
346 ASSERT(!PagePrivate(page));
Nathan Scott948ecdb2006-09-28 11:03:13 +1000347 page_cache_release(page);
348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
Dave Chinner3fc98b12009-12-14 23:11:57 +0000350 _xfs_buf_free_pages(bp);
Nathan Scottce8e9222006-01-11 15:39:08 +1100351 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354/*
355 * Finds all pages for buffer in question and builds it's page list.
356 */
357STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100358_xfs_buf_lookup_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 xfs_buf_t *bp,
360 uint flags)
361{
Nathan Scottce8e9222006-01-11 15:39:08 +1100362 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100366 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 unsigned short page_count, i;
368 pgoff_t first;
Nathan Scott204ab25f2006-01-11 20:50:22 +1100369 xfs_off_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 int error;
371
Nathan Scottce8e9222006-01-11 15:39:08 +1100372 end = bp->b_file_offset + bp->b_buffer_length;
373 page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Nathan Scottce8e9222006-01-11 15:39:08 +1100375 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (unlikely(error))
377 return error;
Nathan Scottce8e9222006-01-11 15:39:08 +1100378 bp->b_flags |= _XBF_PAGE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Nathan Scottce8e9222006-01-11 15:39:08 +1100380 offset = bp->b_offset;
381 first = bp->b_file_offset >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Nathan Scottce8e9222006-01-11 15:39:08 +1100383 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 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)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100390 if (flags & XBF_READ_AHEAD) {
391 bp->b_page_count = i;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000392 for (i = 0; i < bp->b_page_count; i++)
393 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 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))
Dave Chinner4f107002011-03-07 10:00:35 +1100404 xfs_err(NULL,
405 "possible memory allocation deadlock in %s (mode:0x%x)",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000406 __func__, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Nathan Scottce8e9222006-01-11 15:39:08 +1100408 XFS_STATS_INC(xb_page_retries);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200409 congestion_wait(BLK_RW_ASYNC, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 goto retry;
411 }
412
Nathan Scottce8e9222006-01-11 15:39:08 +1100413 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
416 size -= nbytes;
417
Nathan Scott948ecdb2006-09-28 11:03:13 +1000418 ASSERT(!PagePrivate(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (!PageUptodate(page)) {
420 page_count--;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000421 if (blocksize >= PAGE_CACHE_SIZE) {
422 if (flags & XBF_READ)
423 bp->b_flags |= _XBF_PAGE_LOCKED;
424 } else if (!PagePrivate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (test_page_region(page, offset, nbytes))
426 page_count++;
427 }
428 }
429
Nathan Scottce8e9222006-01-11 15:39:08 +1100430 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 offset = 0;
432 }
433
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000434 if (!(bp->b_flags & _XBF_PAGE_LOCKED)) {
435 for (i = 0; i < bp->b_page_count; i++)
436 unlock_page(bp->b_pages[i]);
437 }
438
Nathan Scottce8e9222006-01-11 15:39:08 +1100439 if (page_count == bp->b_page_count)
440 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return error;
443}
444
445/*
446 * Map buffer into kernel address-space if nessecary.
447 */
448STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100449_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 xfs_buf_t *bp,
451 uint flags)
452{
453 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100454 if (bp->b_page_count == 1) {
455 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
456 bp->b_flags |= XBF_MAPPED;
457 } else if (flags & XBF_MAPPED) {
Alex Elder8a262e52010-03-16 18:55:56 +0000458 bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
459 -1, PAGE_KERNEL);
Nathan Scottce8e9222006-01-11 15:39:08 +1100460 if (unlikely(bp->b_addr == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100462 bp->b_addr += bp->b_offset;
463 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465
466 return 0;
467}
468
469/*
470 * Finding and Reading Buffers
471 */
472
473/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100474 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * a given range of an inode. The buffer is returned
476 * locked. If other overlapping buffers exist, they are
477 * released before the new buffer is created and locked,
478 * which may imply that this call will block until those buffers
479 * are unlocked. No I/O is implied by this call.
480 */
481xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100482_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab25f2006-01-11 20:50:22 +1100484 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100486 xfs_buf_flags_t flags,
487 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Nathan Scott204ab25f2006-01-11 20:50:22 +1100489 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 size_t range_length;
Dave Chinner74f75a02010-09-24 19:59:04 +1000491 struct xfs_perag *pag;
492 struct rb_node **rbp;
493 struct rb_node *parent;
494 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 range_base = (ioff << BBSHIFT);
497 range_length = (isize << BBSHIFT);
498
499 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100500 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab25f2006-01-11 20:50:22 +1100501 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Dave Chinner74f75a02010-09-24 19:59:04 +1000503 /* get tree root */
504 pag = xfs_perag_get(btp->bt_mount,
505 xfs_daddr_to_agno(btp->bt_mount, ioff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Dave Chinner74f75a02010-09-24 19:59:04 +1000507 /* walk tree */
508 spin_lock(&pag->pag_buf_lock);
509 rbp = &pag->pag_buf_tree.rb_node;
510 parent = NULL;
511 bp = NULL;
512 while (*rbp) {
513 parent = *rbp;
514 bp = rb_entry(parent, struct xfs_buf, b_rbnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Dave Chinner74f75a02010-09-24 19:59:04 +1000516 if (range_base < bp->b_file_offset)
517 rbp = &(*rbp)->rb_left;
518 else if (range_base > bp->b_file_offset)
519 rbp = &(*rbp)->rb_right;
520 else {
521 /*
522 * found a block offset match. If the range doesn't
523 * match, the only way this is allowed is if the buffer
524 * in the cache is stale and the transaction that made
525 * it stale has not yet committed. i.e. we are
526 * reallocating a busy extent. Skip this buffer and
527 * continue searching to the right for an exact match.
528 */
529 if (bp->b_buffer_length != range_length) {
530 ASSERT(bp->b_flags & XBF_STALE);
531 rbp = &(*rbp)->rb_right;
532 continue;
533 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100534 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 goto found;
536 }
537 }
538
539 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100540 if (new_bp) {
541 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 range_length, flags);
Dave Chinner74f75a02010-09-24 19:59:04 +1000543 rb_link_node(&new_bp->b_rbnode, parent, rbp);
544 rb_insert_color(&new_bp->b_rbnode, &pag->pag_buf_tree);
545 /* the buffer keeps the perag reference until it is freed */
546 new_bp->b_pag = pag;
547 spin_unlock(&pag->pag_buf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100549 XFS_STATS_INC(xb_miss_locked);
Dave Chinner74f75a02010-09-24 19:59:04 +1000550 spin_unlock(&pag->pag_buf_lock);
551 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100553 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555found:
Dave Chinner74f75a02010-09-24 19:59:04 +1000556 spin_unlock(&pag->pag_buf_lock);
557 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Dave Chinner90810b92010-11-30 15:16:16 +1100559 if (xfs_buf_cond_lock(bp)) {
560 /* failed, so wait for the lock if requested. */
Nathan Scottce8e9222006-01-11 15:39:08 +1100561 if (!(flags & XBF_TRYLOCK)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100562 xfs_buf_lock(bp);
563 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100565 xfs_buf_rele(bp);
566 XFS_STATS_INC(xb_busy_locked);
567 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570
Nathan Scottce8e9222006-01-11 15:39:08 +1100571 if (bp->b_flags & XBF_STALE) {
572 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
573 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000574 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000575
576 trace_xfs_buf_find(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100577 XFS_STATS_INC(xb_get_locked);
578 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
581/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100582 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 * Storage in memory for all portions of the buffer will be allocated,
584 * although backing storage may not be.
585 */
586xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000587xfs_buf_get(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab25f2006-01-11 20:50:22 +1100589 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100591 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Nathan Scottce8e9222006-01-11 15:39:08 +1100593 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 int error = 0, i;
595
Nathan Scottce8e9222006-01-11 15:39:08 +1100596 new_bp = xfs_buf_allocate(flags);
597 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return NULL;
599
Nathan Scottce8e9222006-01-11 15:39:08 +1100600 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
601 if (bp == new_bp) {
602 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (error)
604 goto no_buffer;
605 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100606 xfs_buf_deallocate(new_bp);
607 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return NULL;
609 }
610
Nathan Scottce8e9222006-01-11 15:39:08 +1100611 for (i = 0; i < bp->b_page_count; i++)
612 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Nathan Scottce8e9222006-01-11 15:39:08 +1100614 if (!(bp->b_flags & XBF_MAPPED)) {
615 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100617 xfs_warn(target->bt_mount,
618 "%s: failed to map pages\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 goto no_buffer;
620 }
621 }
622
Nathan Scottce8e9222006-01-11 15:39:08 +1100623 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 /*
626 * Always fill in the block number now, the mapped cases can do
627 * their own overlay of this later.
628 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100629 bp->b_bn = ioff;
630 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000632 trace_xfs_buf_get(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100633 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100636 if (flags & (XBF_LOCK | XBF_TRYLOCK))
637 xfs_buf_unlock(bp);
638 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return NULL;
640}
641
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100642STATIC int
643_xfs_buf_read(
644 xfs_buf_t *bp,
645 xfs_buf_flags_t flags)
646{
647 int status;
648
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100649 ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE)));
650 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
651
652 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
653 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
654 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | \
655 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
656
657 status = xfs_buf_iorequest(bp);
Dave Chinnerec53d1d2010-07-20 17:52:59 +1000658 if (status || XFS_BUF_ISERROR(bp) || (flags & XBF_ASYNC))
659 return status;
660 return xfs_buf_iowait(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100661}
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000664xfs_buf_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 xfs_buftarg_t *target,
Nathan Scott204ab25f2006-01-11 20:50:22 +1100666 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100668 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Nathan Scottce8e9222006-01-11 15:39:08 +1100670 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Nathan Scottce8e9222006-01-11 15:39:08 +1100672 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000674 bp = xfs_buf_get(target, ioff, isize, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100675 if (bp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000676 trace_xfs_buf_read(bp, flags, _RET_IP_);
677
Nathan Scottce8e9222006-01-11 15:39:08 +1100678 if (!XFS_BUF_ISDONE(bp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100679 XFS_STATS_INC(xb_get_read);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100680 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100681 } else if (flags & XBF_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 /*
683 * Read ahead call which is already satisfied,
684 * drop the buffer
685 */
686 goto no_buffer;
687 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100689 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
691 }
692
Nathan Scottce8e9222006-01-11 15:39:08 +1100693 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100696 if (flags & (XBF_LOCK | XBF_TRYLOCK))
697 xfs_buf_unlock(bp);
698 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return NULL;
700}
701
702/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100703 * If we are not low on memory then do the readahead in a deadlock
704 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 */
706void
Nathan Scottce8e9222006-01-11 15:39:08 +1100707xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 xfs_buftarg_t *target,
Nathan Scott204ab25f2006-01-11 20:50:22 +1100709 xfs_off_t ioff,
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000710 size_t isize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
712 struct backing_dev_info *bdi;
713
Nathan Scottce8e9222006-01-11 15:39:08 +1100714 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (bdi_read_congested(bdi))
716 return;
717
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000718 xfs_buf_read(target, ioff, isize,
719 XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD|XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
Dave Chinner5adc94c2010-09-24 21:58:31 +1000722/*
723 * Read an uncached buffer from disk. Allocates and returns a locked
724 * buffer containing the disk contents or nothing.
725 */
726struct xfs_buf *
727xfs_buf_read_uncached(
728 struct xfs_mount *mp,
729 struct xfs_buftarg *target,
730 xfs_daddr_t daddr,
731 size_t length,
732 int flags)
733{
734 xfs_buf_t *bp;
735 int error;
736
737 bp = xfs_buf_get_uncached(target, length, flags);
738 if (!bp)
739 return NULL;
740
741 /* set up the buffer for a read IO */
742 xfs_buf_lock(bp);
743 XFS_BUF_SET_ADDR(bp, daddr);
744 XFS_BUF_READ(bp);
745 XFS_BUF_BUSY(bp);
746
747 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000748 error = xfs_buf_iowait(bp);
Dave Chinner5adc94c2010-09-24 21:58:31 +1000749 if (error || bp->b_error) {
750 xfs_buf_relse(bp);
751 return NULL;
752 }
753 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
756xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100757xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 size_t len,
759 xfs_buftarg_t *target)
760{
Nathan Scottce8e9222006-01-11 15:39:08 +1100761 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Nathan Scottce8e9222006-01-11 15:39:08 +1100763 bp = xfs_buf_allocate(0);
764 if (bp)
765 _xfs_buf_initialize(bp, target, 0, len, 0);
766 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
769static inline struct page *
770mem_to_page(
771 void *addr)
772{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800773 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return virt_to_page(addr);
775 } else {
776 return vmalloc_to_page(addr);
777 }
778}
779
780int
Nathan Scottce8e9222006-01-11 15:39:08 +1100781xfs_buf_associate_memory(
782 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 void *mem,
784 size_t len)
785{
786 int rval;
787 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100788 unsigned long pageaddr;
789 unsigned long offset;
790 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 int page_count;
792
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100793 pageaddr = (unsigned long)mem & PAGE_CACHE_MASK;
794 offset = (unsigned long)mem - pageaddr;
795 buflen = PAGE_CACHE_ALIGN(len + offset);
796 page_count = buflen >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100799 if (bp->b_pages)
800 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Nathan Scottce8e9222006-01-11 15:39:08 +1100802 bp->b_pages = NULL;
803 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Christoph Hellwig36fae172009-07-18 18:14:58 -0400805 rval = _xfs_buf_get_pages(bp, page_count, XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (rval)
807 return rval;
808
Nathan Scottce8e9222006-01-11 15:39:08 +1100809 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100811 for (i = 0; i < bp->b_page_count; i++) {
812 bp->b_pages[i] = mem_to_page((void *)pageaddr);
813 pageaddr += PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100816 bp->b_count_desired = len;
817 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100818 bp->b_flags |= XBF_MAPPED;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000819 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 return 0;
822}
823
824xfs_buf_t *
Dave Chinner686865f2010-09-24 20:07:47 +1000825xfs_buf_get_uncached(
826 struct xfs_buftarg *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 size_t len,
Dave Chinner686865f2010-09-24 20:07:47 +1000828 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000830 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
831 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Nathan Scottce8e9222006-01-11 15:39:08 +1100834 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (unlikely(bp == NULL))
836 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100837 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000839 error = _xfs_buf_get_pages(bp, page_count, 0);
840 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 goto fail_free_buf;
842
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000843 for (i = 0; i < page_count; i++) {
Dave Chinner686865f2010-09-24 20:07:47 +1000844 bp->b_pages[i] = alloc_page(xb_to_gfp(flags));
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000845 if (!bp->b_pages[i])
846 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000848 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000850 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
851 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100852 xfs_warn(target->bt_mount,
853 "%s: failed to map pages\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Nathan Scottce8e9222006-01-11 15:39:08 +1100857 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Dave Chinner686865f2010-09-24 20:07:47 +1000859 trace_xfs_buf_get_uncached(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000863 while (--i >= 0)
864 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000865 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000867 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 fail:
869 return NULL;
870}
871
872/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 * Increment reference count on buffer, to hold the buffer concurrently
874 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 * Must hold the buffer already to call this function.
876 */
877void
Nathan Scottce8e9222006-01-11 15:39:08 +1100878xfs_buf_hold(
879 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000881 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100882 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
885/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100886 * Releases a hold on the specified buffer. If the
887 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 */
889void
Nathan Scottce8e9222006-01-11 15:39:08 +1100890xfs_buf_rele(
891 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Dave Chinner74f75a02010-09-24 19:59:04 +1000893 struct xfs_perag *pag = bp->b_pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000895 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Dave Chinner74f75a02010-09-24 19:59:04 +1000897 if (!pag) {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100898 ASSERT(list_empty(&bp->b_lru));
Dave Chinner74f75a02010-09-24 19:59:04 +1000899 ASSERT(RB_EMPTY_NODE(&bp->b_rbnode));
Nathan Scottfad3aa12006-02-01 12:14:52 +1100900 if (atomic_dec_and_test(&bp->b_hold))
901 xfs_buf_free(bp);
902 return;
903 }
904
Dave Chinner74f75a02010-09-24 19:59:04 +1000905 ASSERT(!RB_EMPTY_NODE(&bp->b_rbnode));
Dave Chinner430cbeb2010-12-02 16:30:55 +1100906
Lachlan McIlroy37906892008-08-13 15:42:10 +1000907 ASSERT(atomic_read(&bp->b_hold) > 0);
Dave Chinner74f75a02010-09-24 19:59:04 +1000908 if (atomic_dec_and_lock(&bp->b_hold, &pag->pag_buf_lock)) {
Christoph Hellwigbfc60172011-01-07 13:02:23 +0000909 if (!(bp->b_flags & XBF_STALE) &&
Dave Chinner430cbeb2010-12-02 16:30:55 +1100910 atomic_read(&bp->b_lru_ref)) {
911 xfs_buf_lru_add(bp);
912 spin_unlock(&pag->pag_buf_lock);
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100913 } else {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100914 xfs_buf_lru_del(bp);
Nathan Scottce8e9222006-01-11 15:39:08 +1100915 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
Dave Chinner74f75a02010-09-24 19:59:04 +1000916 rb_erase(&bp->b_rbnode, &pag->pag_buf_tree);
917 spin_unlock(&pag->pag_buf_lock);
918 xfs_perag_put(pag);
Nathan Scottce8e9222006-01-11 15:39:08 +1100919 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
921 }
922}
923
924
925/*
926 * Mutual exclusion on buffers. Locking model:
927 *
928 * Buffers associated with inodes for which buffer locking
929 * is not enabled are not protected by semaphores, and are
930 * assumed to be exclusively owned by the caller. There is a
931 * spinlock in the buffer, used by the caller when concurrent
932 * access is possible.
933 */
934
935/*
Dave Chinner90810b92010-11-30 15:16:16 +1100936 * Locks a buffer object, if it is not already locked. Note that this in
937 * no way locks the underlying pages, so it is only useful for
938 * synchronizing concurrent use of buffer objects, not for synchronizing
939 * independent access to the underlying pages.
940 *
941 * If we come across a stale, pinned, locked buffer, we know that we are
942 * being asked to lock a buffer that has been reallocated. Because it is
943 * pinned, we know that the log has not been pushed to disk and hence it
944 * will still be locked. Rather than continuing to have trylock attempts
945 * fail until someone else pushes the log, push it ourselves before
946 * returning. This means that the xfsaild will not get stuck trying
947 * to push on stale inode buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 */
949int
Nathan Scottce8e9222006-01-11 15:39:08 +1100950xfs_buf_cond_lock(
951 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
953 int locked;
954
Nathan Scottce8e9222006-01-11 15:39:08 +1100955 locked = down_trylock(&bp->b_sema) == 0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000956 if (locked)
Nathan Scottce8e9222006-01-11 15:39:08 +1100957 XB_SET_OWNER(bp);
Dave Chinner90810b92010-11-30 15:16:16 +1100958 else if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
959 xfs_log_force(bp->b_target->bt_mount, 0);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000960
961 trace_xfs_buf_cond_lock(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100962 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965int
Nathan Scottce8e9222006-01-11 15:39:08 +1100966xfs_buf_lock_value(
967 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
Stephen Rothwelladaa6932008-04-22 15:26:13 +1000969 return bp->b_sema.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100973 * Locks a buffer object.
974 * Note that this in no way locks the underlying pages, so it is only
975 * useful for synchronizing concurrent use of buffer objects, not for
976 * synchronizing independent access to the underlying pages.
Dave Chinnered3b4d62010-05-21 12:07:08 +1000977 *
978 * If we come across a stale, pinned, locked buffer, we know that we
979 * are being asked to lock a buffer that has been reallocated. Because
980 * it is pinned, we know that the log has not been pushed to disk and
981 * hence it will still be locked. Rather than sleeping until someone
982 * else pushes the log, push it ourselves before trying to get the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100984void
985xfs_buf_lock(
986 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000988 trace_xfs_buf_lock(bp, _RET_IP_);
989
Dave Chinnered3b4d62010-05-21 12:07:08 +1000990 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
Dave Chinnerebad8612010-09-22 10:47:20 +1000991 xfs_log_force(bp->b_target->bt_mount, 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100992 if (atomic_read(&bp->b_io_remaining))
993 blk_run_address_space(bp->b_target->bt_mapping);
994 down(&bp->b_sema);
995 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000996
997 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998}
999
1000/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001001 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +10001002 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +11001003 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +10001004 * take a reference for the delwri queue because the unlocker is going to
1005 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 */
1007void
Nathan Scottce8e9222006-01-11 15:39:08 +11001008xfs_buf_unlock(
1009 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Nathan Scottce8e9222006-01-11 15:39:08 +11001011 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
1012 atomic_inc(&bp->b_hold);
1013 bp->b_flags |= XBF_ASYNC;
1014 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +10001015 }
1016
Nathan Scottce8e9222006-01-11 15:39:08 +11001017 XB_CLEAR_OWNER(bp);
1018 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001019
1020 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
Nathan Scottce8e9222006-01-11 15:39:08 +11001023STATIC void
1024xfs_buf_wait_unpin(
1025 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 DECLARE_WAITQUEUE (wait, current);
1028
Nathan Scottce8e9222006-01-11 15:39:08 +11001029 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return;
1031
Nathan Scottce8e9222006-01-11 15:39:08 +11001032 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 for (;;) {
1034 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +11001035 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001037 if (atomic_read(&bp->b_io_remaining))
1038 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 schedule();
1040 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001041 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 set_current_state(TASK_RUNNING);
1043}
1044
1045/*
1046 * Buffer Utility Routines
1047 */
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001050xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +00001051 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
David Howellsc4028952006-11-22 14:57:56 +00001053 xfs_buf_t *bp =
1054 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Christoph Hellwig80f6c292010-08-18 05:29:11 -04001056 if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +11001057 (*(bp->b_iodone))(bp);
1058 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 xfs_buf_relse(bp);
1060}
1061
1062void
Nathan Scottce8e9222006-01-11 15:39:08 +11001063xfs_buf_ioend(
1064 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 int schedule)
1066{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001067 trace_xfs_buf_iodone(bp, _RET_IP_);
1068
Lachlan McIlroy77be55a2007-11-23 16:31:00 +11001069 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +11001070 if (bp->b_error == 0)
1071 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Nathan Scottce8e9222006-01-11 15:39:08 +11001073 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001075 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001076 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 } else {
David Howellsc4028952006-11-22 14:57:56 +00001078 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
1080 } else {
David Chinnerb4dd3302008-08-13 16:36:11 +10001081 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083}
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085void
Nathan Scottce8e9222006-01-11 15:39:08 +11001086xfs_buf_ioerror(
1087 xfs_buf_t *bp,
1088 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
1090 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001091 bp->b_error = (unsigned short)error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001092 trace_xfs_buf_ioerror(bp, error, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095int
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001096xfs_bwrite(
1097 struct xfs_mount *mp,
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001098 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Christoph Hellwig8c383662010-03-12 10:59:40 +00001100 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001102 bp->b_flags |= XBF_WRITE;
Christoph Hellwig8c383662010-03-12 10:59:40 +00001103 bp->b_flags &= ~(XBF_ASYNC | XBF_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001105 xfs_buf_delwri_dequeue(bp);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001106 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Christoph Hellwig8c383662010-03-12 10:59:40 +00001108 error = xfs_buf_iowait(bp);
1109 if (error)
1110 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1111 xfs_buf_relse(bp);
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001112 return error;
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001113}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001115void
1116xfs_bdwrite(
1117 void *mp,
1118 struct xfs_buf *bp)
1119{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001120 trace_xfs_buf_bdwrite(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001122 bp->b_flags &= ~XBF_READ;
1123 bp->b_flags |= (XBF_DELWRI | XBF_ASYNC);
1124
1125 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126}
1127
Christoph Hellwig4e234712010-01-13 22:17:56 +00001128/*
1129 * Called when we want to stop a buffer from getting written or read.
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001130 * We attach the EIO error, muck with its flags, and call xfs_buf_ioend
Christoph Hellwig4e234712010-01-13 22:17:56 +00001131 * so that the proper iodone callbacks get called.
1132 */
1133STATIC int
1134xfs_bioerror(
1135 xfs_buf_t *bp)
1136{
1137#ifdef XFSERRORDEBUG
1138 ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
1139#endif
1140
1141 /*
1142 * No need to wait until the buffer is unpinned, we aren't flushing it.
1143 */
1144 XFS_BUF_ERROR(bp, EIO);
1145
1146 /*
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001147 * We're calling xfs_buf_ioend, so delete XBF_DONE flag.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001148 */
1149 XFS_BUF_UNREAD(bp);
1150 XFS_BUF_UNDELAYWRITE(bp);
1151 XFS_BUF_UNDONE(bp);
1152 XFS_BUF_STALE(bp);
1153
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001154 xfs_buf_ioend(bp, 0);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001155
1156 return EIO;
1157}
1158
1159/*
1160 * Same as xfs_bioerror, except that we are releasing the buffer
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001161 * here ourselves, and avoiding the xfs_buf_ioend call.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001162 * This is meant for userdata errors; metadata bufs come with
1163 * iodone functions attached, so that we can track down errors.
1164 */
1165STATIC int
1166xfs_bioerror_relse(
1167 struct xfs_buf *bp)
1168{
1169 int64_t fl = XFS_BUF_BFLAGS(bp);
1170 /*
1171 * No need to wait until the buffer is unpinned.
1172 * We aren't flushing it.
1173 *
1174 * chunkhold expects B_DONE to be set, whether
1175 * we actually finish the I/O or not. We don't want to
1176 * change that interface.
1177 */
1178 XFS_BUF_UNREAD(bp);
1179 XFS_BUF_UNDELAYWRITE(bp);
1180 XFS_BUF_DONE(bp);
1181 XFS_BUF_STALE(bp);
1182 XFS_BUF_CLR_IODONE_FUNC(bp);
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001183 if (!(fl & XBF_ASYNC)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001184 /*
1185 * Mark b_error and B_ERROR _both_.
1186 * Lot's of chunkcache code assumes that.
1187 * There's no reason to mark error for
1188 * ASYNC buffers.
1189 */
1190 XFS_BUF_ERROR(bp, EIO);
1191 XFS_BUF_FINISH_IOWAIT(bp);
1192 } else {
1193 xfs_buf_relse(bp);
1194 }
1195
1196 return EIO;
1197}
1198
1199
1200/*
1201 * All xfs metadata buffers except log state machine buffers
1202 * get this attached as their b_bdstrat callback function.
1203 * This is so that we can catch a buffer
1204 * after prematurely unpinning it to forcibly shutdown the filesystem.
1205 */
1206int
1207xfs_bdstrat_cb(
1208 struct xfs_buf *bp)
1209{
Dave Chinnerebad8612010-09-22 10:47:20 +10001210 if (XFS_FORCED_SHUTDOWN(bp->b_target->bt_mount)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001211 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1212 /*
1213 * Metadata write that didn't get logged but
1214 * written delayed anyway. These aren't associated
1215 * with a transaction, and can be ignored.
1216 */
1217 if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
1218 return xfs_bioerror_relse(bp);
1219 else
1220 return xfs_bioerror(bp);
1221 }
1222
1223 xfs_buf_iorequest(bp);
1224 return 0;
1225}
1226
1227/*
1228 * Wrapper around bdstrat so that we can stop data from going to disk in case
1229 * we are shutting down the filesystem. Typically user data goes thru this
1230 * path; one of the exceptions is the superblock.
1231 */
1232void
1233xfsbdstrat(
1234 struct xfs_mount *mp,
1235 struct xfs_buf *bp)
1236{
1237 if (XFS_FORCED_SHUTDOWN(mp)) {
1238 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1239 xfs_bioerror_relse(bp);
1240 return;
1241 }
1242
1243 xfs_buf_iorequest(bp);
1244}
1245
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001246STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001247_xfs_buf_ioend(
1248 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 int schedule)
1250{
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001251 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1252 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Nathan Scottce8e9222006-01-11 15:39:08 +11001253 xfs_buf_ioend(bp, schedule);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255}
1256
Al Viro782e3b32007-10-12 07:17:47 +01001257STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001258xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 int error)
1261{
Nathan Scottce8e9222006-01-11 15:39:08 +11001262 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1263 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001264 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Lachlan McIlroycfbe5262008-12-12 15:27:25 +11001266 xfs_buf_ioerror(bp, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
James Bottomley73c77e22010-01-25 11:42:24 -06001268 if (!error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
1269 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1270
Nathan Scotteedb5532005-09-02 16:39:56 +10001271 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 struct page *page = bvec->bv_page;
1273
Nathan Scott948ecdb2006-09-28 11:03:13 +10001274 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001275 if (unlikely(bp->b_error)) {
1276 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001277 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001278 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 SetPageUptodate(page);
1280 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001281 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1283 }
1284
Nathan Scotteedb5532005-09-02 16:39:56 +10001285 if (--bvec >= bio->bi_io_vec)
1286 prefetchw(&bvec->bv_page->flags);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001287
1288 if (bp->b_flags & _XBF_PAGE_LOCKED)
1289 unlock_page(page);
Nathan Scotteedb5532005-09-02 16:39:56 +10001290 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Nathan Scottce8e9222006-01-11 15:39:08 +11001292 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294}
1295
1296STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001297_xfs_buf_ioapply(
1298 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
Christoph Hellwiga9759f22007-12-07 14:07:08 +11001300 int rw, map_i, total_nr_pages, nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001302 int offset = bp->b_offset;
1303 int size = bp->b_count_desired;
1304 sector_t sector = bp->b_bn;
1305 unsigned int blocksize = bp->b_target->bt_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Nathan Scottce8e9222006-01-11 15:39:08 +11001307 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 map_i = 0;
1309
Nathan Scottce8e9222006-01-11 15:39:08 +11001310 if (bp->b_flags & XBF_ORDERED) {
1311 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwig80f6c292010-08-18 05:29:11 -04001312 rw = WRITE_FLUSH_FUA;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001313 } else if (bp->b_flags & XBF_LOG_BUFFER) {
Nathan Scott51bdd702006-09-28 11:01:57 +10001314 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1315 bp->b_flags &= ~_XBF_RUN_QUEUES;
1316 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001317 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1318 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1319 bp->b_flags &= ~_XBF_RUN_QUEUES;
1320 rw = (bp->b_flags & XBF_WRITE) ? WRITE_META : READ_META;
Nathan Scott51bdd702006-09-28 11:01:57 +10001321 } else {
1322 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1323 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001324 }
1325
Nathan Scottce8e9222006-01-11 15:39:08 +11001326 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 * we populate up the whole page, and hence the other metadata
1328 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001329 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001331 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001332 ((bp->b_flags & (XBF_READ|_XBF_PAGE_LOCKED)) ==
1333 (XBF_READ|_XBF_PAGE_LOCKED)) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001334 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 bio = bio_alloc(GFP_NOIO, 1);
1336
Nathan Scottce8e9222006-01-11 15:39:08 +11001337 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001339 bio->bi_end_io = xfs_buf_bio_end_io;
1340 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Nathan Scottce8e9222006-01-11 15:39:08 +11001342 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 size = 0;
1344
Nathan Scottce8e9222006-01-11 15:39:08 +11001345 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 goto submit_io;
1348 }
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001351 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1353 if (nr_pages > total_nr_pages)
1354 nr_pages = total_nr_pages;
1355
1356 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001357 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001359 bio->bi_end_io = xfs_buf_bio_end_io;
1360 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
1362 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001363 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 if (nbytes > size)
1366 nbytes = size;
1367
Nathan Scottce8e9222006-01-11 15:39:08 +11001368 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1369 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 break;
1371
1372 offset = 0;
1373 sector += nbytes >> BBSHIFT;
1374 size -= nbytes;
1375 total_nr_pages--;
1376 }
1377
1378submit_io:
1379 if (likely(bio->bi_size)) {
James Bottomley73c77e22010-01-25 11:42:24 -06001380 if (xfs_buf_is_vmapped(bp)) {
1381 flush_kernel_vmap_range(bp->b_addr,
1382 xfs_buf_vmap_len(bp));
1383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 submit_bio(rw, bio);
1385 if (size)
1386 goto next_chunk;
1387 } else {
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001388 /*
1389 * if we get here, no pages were added to the bio. However,
1390 * we can't just error out here - if the pages are locked then
1391 * we have to unlock them otherwise we can hang on a later
1392 * access to the page.
1393 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001394 xfs_buf_ioerror(bp, EIO);
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001395 if (bp->b_flags & _XBF_PAGE_LOCKED) {
1396 int i;
1397 for (i = 0; i < bp->b_page_count; i++)
1398 unlock_page(bp->b_pages[i]);
1399 }
1400 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402}
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404int
Nathan Scottce8e9222006-01-11 15:39:08 +11001405xfs_buf_iorequest(
1406 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001408 trace_xfs_buf_iorequest(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Nathan Scottce8e9222006-01-11 15:39:08 +11001410 if (bp->b_flags & XBF_DELWRI) {
1411 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 return 0;
1413 }
1414
Nathan Scottce8e9222006-01-11 15:39:08 +11001415 if (bp->b_flags & XBF_WRITE) {
1416 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
1418
Nathan Scottce8e9222006-01-11 15:39:08 +11001419 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 /* Set the count to 1 initially, this will stop an I/O
1422 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001423 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001425 atomic_set(&bp->b_io_remaining, 1);
1426 _xfs_buf_ioapply(bp);
1427 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Nathan Scottce8e9222006-01-11 15:39:08 +11001429 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 return 0;
1431}
1432
1433/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001434 * Waits for I/O to complete on the buffer supplied.
1435 * It returns immediately if no I/O is pending.
1436 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 */
1438int
Nathan Scottce8e9222006-01-11 15:39:08 +11001439xfs_buf_iowait(
1440 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001442 trace_xfs_buf_iowait(bp, _RET_IP_);
1443
Nathan Scottce8e9222006-01-11 15:39:08 +11001444 if (atomic_read(&bp->b_io_remaining))
1445 blk_run_address_space(bp->b_target->bt_mapping);
David Chinnerb4dd3302008-08-13 16:36:11 +10001446 wait_for_completion(&bp->b_iowait);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001447
1448 trace_xfs_buf_iowait_done(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +11001449 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450}
1451
Nathan Scottce8e9222006-01-11 15:39:08 +11001452xfs_caddr_t
1453xfs_buf_offset(
1454 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 size_t offset)
1456{
1457 struct page *page;
1458
Nathan Scottce8e9222006-01-11 15:39:08 +11001459 if (bp->b_flags & XBF_MAPPED)
1460 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Nathan Scottce8e9222006-01-11 15:39:08 +11001462 offset += bp->b_offset;
1463 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1464 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465}
1466
1467/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 * Move data into or out of a buffer.
1469 */
1470void
Nathan Scottce8e9222006-01-11 15:39:08 +11001471xfs_buf_iomove(
1472 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 size_t boff, /* starting buffer offset */
1474 size_t bsize, /* length to copy */
Dave Chinnerb9c48642010-01-20 10:47:39 +11001475 void *data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001476 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
1478 size_t bend, cpoff, csize;
1479 struct page *page;
1480
1481 bend = boff + bsize;
1482 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001483 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1484 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001486 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1489
1490 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001491 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 memset(page_address(page) + cpoff, 0, csize);
1493 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001494 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 memcpy(data, page_address(page) + cpoff, csize);
1496 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001497 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 memcpy(page_address(page) + cpoff, data, csize);
1499 }
1500
1501 boff += csize;
1502 data += csize;
1503 }
1504}
1505
1506/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001507 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 */
1509
1510/*
Dave Chinner430cbeb2010-12-02 16:30:55 +11001511 * Wait for any bufs with callbacks that have been submitted but have not yet
1512 * returned. These buffers will have an elevated hold count, so wait on those
1513 * while freeing all the buffers only held by the LRU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 */
1515void
1516xfs_wait_buftarg(
Dave Chinner74f75a02010-09-24 19:59:04 +10001517 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
Dave Chinner430cbeb2010-12-02 16:30:55 +11001519 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Dave Chinner430cbeb2010-12-02 16:30:55 +11001521restart:
1522 spin_lock(&btp->bt_lru_lock);
1523 while (!list_empty(&btp->bt_lru)) {
1524 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1525 if (atomic_read(&bp->b_hold) > 1) {
1526 spin_unlock(&btp->bt_lru_lock);
Dave Chinner26af6552010-09-22 10:47:20 +10001527 delay(100);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001528 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001530 /*
1531 * clear the LRU reference count so the bufer doesn't get
1532 * ignored in xfs_buf_rele().
1533 */
1534 atomic_set(&bp->b_lru_ref, 0);
1535 spin_unlock(&btp->bt_lru_lock);
1536 xfs_buf_rele(bp);
1537 spin_lock(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001539 spin_unlock(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540}
1541
Dave Chinnerff57ab22010-11-30 17:27:57 +11001542int
1543xfs_buftarg_shrink(
1544 struct shrinker *shrink,
1545 int nr_to_scan,
1546 gfp_t mask)
David Chinnera6867a62006-01-11 15:37:58 +11001547{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001548 struct xfs_buftarg *btp = container_of(shrink,
1549 struct xfs_buftarg, bt_shrinker);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001550 struct xfs_buf *bp;
1551 LIST_HEAD(dispose);
1552
1553 if (!nr_to_scan)
1554 return btp->bt_lru_nr;
1555
1556 spin_lock(&btp->bt_lru_lock);
1557 while (!list_empty(&btp->bt_lru)) {
1558 if (nr_to_scan-- <= 0)
1559 break;
1560
1561 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1562
1563 /*
1564 * Decrement the b_lru_ref count unless the value is already
1565 * zero. If the value is already zero, we need to reclaim the
1566 * buffer, otherwise it gets another trip through the LRU.
1567 */
1568 if (!atomic_add_unless(&bp->b_lru_ref, -1, 0)) {
1569 list_move_tail(&bp->b_lru, &btp->bt_lru);
1570 continue;
1571 }
1572
1573 /*
1574 * remove the buffer from the LRU now to avoid needing another
1575 * lock round trip inside xfs_buf_rele().
1576 */
1577 list_move(&bp->b_lru, &dispose);
1578 btp->bt_lru_nr--;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001579 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001580 spin_unlock(&btp->bt_lru_lock);
1581
1582 while (!list_empty(&dispose)) {
1583 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1584 list_del_init(&bp->b_lru);
1585 xfs_buf_rele(bp);
1586 }
1587
1588 return btp->bt_lru_nr;
David Chinnera6867a62006-01-11 15:37:58 +11001589}
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591void
1592xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001593 struct xfs_mount *mp,
1594 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001596 unregister_shrinker(&btp->bt_shrinker);
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 xfs_flush_buftarg(btp, 1);
Christoph Hellwigb7963132009-03-03 14:48:37 -05001599 if (mp->m_flags & XFS_MOUNT_BARRIER)
1600 xfs_blkdev_issue_flush(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001601 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001602
David Chinnera6867a62006-01-11 15:37:58 +11001603 kthread_stop(btp->bt_task);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001604 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605}
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607STATIC int
1608xfs_setsize_buftarg_flags(
1609 xfs_buftarg_t *btp,
1610 unsigned int blocksize,
1611 unsigned int sectorsize,
1612 int verbose)
1613{
Nathan Scottce8e9222006-01-11 15:39:08 +11001614 btp->bt_bsize = blocksize;
1615 btp->bt_sshift = ffs(sectorsize) - 1;
1616 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Nathan Scottce8e9222006-01-11 15:39:08 +11001618 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Dave Chinner4f107002011-03-07 10:00:35 +11001619 xfs_warn(btp->bt_mount,
1620 "Cannot set_blocksize to %u on device %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 sectorsize, XFS_BUFTARG_NAME(btp));
1622 return EINVAL;
1623 }
1624
1625 if (verbose &&
1626 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1627 printk(KERN_WARNING
1628 "XFS: %u byte sectors in use on device %s. "
1629 "This is suboptimal; %u or greater is ideal.\n",
1630 sectorsize, XFS_BUFTARG_NAME(btp),
1631 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1632 }
1633
1634 return 0;
1635}
1636
1637/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001638 * When allocating the initial buffer target we have not yet
1639 * read in the superblock, so don't know what sized sectors
1640 * are being used is at this early stage. Play safe.
1641 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642STATIC int
1643xfs_setsize_buftarg_early(
1644 xfs_buftarg_t *btp,
1645 struct block_device *bdev)
1646{
1647 return xfs_setsize_buftarg_flags(btp,
Martin K. Petersene1defc42009-05-22 17:17:49 -04001648 PAGE_CACHE_SIZE, bdev_logical_block_size(bdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649}
1650
1651int
1652xfs_setsize_buftarg(
1653 xfs_buftarg_t *btp,
1654 unsigned int blocksize,
1655 unsigned int sectorsize)
1656{
1657 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1658}
1659
1660STATIC int
1661xfs_mapping_buftarg(
1662 xfs_buftarg_t *btp,
1663 struct block_device *bdev)
1664{
1665 struct backing_dev_info *bdi;
1666 struct inode *inode;
1667 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001668 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001670 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 };
1672
1673 inode = new_inode(bdev->bd_inode->i_sb);
1674 if (!inode) {
1675 printk(KERN_WARNING
1676 "XFS: Cannot allocate mapping inode for device %s\n",
1677 XFS_BUFTARG_NAME(btp));
1678 return ENOMEM;
1679 }
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001680 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 inode->i_mode = S_IFBLK;
1682 inode->i_bdev = bdev;
1683 inode->i_rdev = bdev->bd_dev;
1684 bdi = blk_get_backing_dev_info(bdev);
1685 if (!bdi)
1686 bdi = &default_backing_dev_info;
1687 mapping = &inode->i_data;
1688 mapping->a_ops = &mapping_aops;
1689 mapping->backing_dev_info = bdi;
1690 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001691 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 return 0;
1693}
1694
David Chinnera6867a62006-01-11 15:37:58 +11001695STATIC int
1696xfs_alloc_delwrite_queue(
Jan Engelhardte2a07812010-03-23 09:52:55 +11001697 xfs_buftarg_t *btp,
1698 const char *fsname)
David Chinnera6867a62006-01-11 15:37:58 +11001699{
David Chinnera6867a62006-01-11 15:37:58 +11001700 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
Eric Sandeen007c61c2007-10-11 17:43:56 +10001701 spin_lock_init(&btp->bt_delwrite_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001702 btp->bt_flags = 0;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001703 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd/%s", fsname);
Dave Chinnerff57ab22010-11-30 17:27:57 +11001704 if (IS_ERR(btp->bt_task))
1705 return PTR_ERR(btp->bt_task);
1706 return 0;
David Chinnera6867a62006-01-11 15:37:58 +11001707}
1708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709xfs_buftarg_t *
1710xfs_alloc_buftarg(
Dave Chinnerebad8612010-09-22 10:47:20 +10001711 struct xfs_mount *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 struct block_device *bdev,
Jan Engelhardte2a07812010-03-23 09:52:55 +11001713 int external,
1714 const char *fsname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
1716 xfs_buftarg_t *btp;
1717
1718 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1719
Dave Chinnerebad8612010-09-22 10:47:20 +10001720 btp->bt_mount = mp;
Nathan Scottce8e9222006-01-11 15:39:08 +11001721 btp->bt_dev = bdev->bd_dev;
1722 btp->bt_bdev = bdev;
Dave Chinner430cbeb2010-12-02 16:30:55 +11001723 INIT_LIST_HEAD(&btp->bt_lru);
1724 spin_lock_init(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (xfs_setsize_buftarg_early(btp, bdev))
1726 goto error;
1727 if (xfs_mapping_buftarg(btp, bdev))
1728 goto error;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001729 if (xfs_alloc_delwrite_queue(btp, fsname))
David Chinnera6867a62006-01-11 15:37:58 +11001730 goto error;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001731 btp->bt_shrinker.shrink = xfs_buftarg_shrink;
1732 btp->bt_shrinker.seeks = DEFAULT_SEEKS;
1733 register_shrinker(&btp->bt_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 return btp;
1735
1736error:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001737 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return NULL;
1739}
1740
1741
1742/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001743 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001746xfs_buf_delwri_queue(
1747 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 int unlock)
1749{
Nathan Scottce8e9222006-01-11 15:39:08 +11001750 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1751 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001752
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001753 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1754
Nathan Scottce8e9222006-01-11 15:39:08 +11001755 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
David Chinnera6867a62006-01-11 15:37:58 +11001757 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001759 if (!list_empty(&bp->b_list)) {
1760 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1761 if (unlock)
1762 atomic_dec(&bp->b_hold);
1763 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
1765
Dave Chinnerc9c12972010-01-11 11:49:59 +00001766 if (list_empty(dwq)) {
1767 /* start xfsbufd as it is about to have something to do */
1768 wake_up_process(bp->b_target->bt_task);
1769 }
1770
Nathan Scottce8e9222006-01-11 15:39:08 +11001771 bp->b_flags |= _XBF_DELWRI_Q;
1772 list_add_tail(&bp->b_list, dwq);
1773 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001774 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
1776 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001777 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778}
1779
1780void
Nathan Scottce8e9222006-01-11 15:39:08 +11001781xfs_buf_delwri_dequeue(
1782 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783{
Nathan Scottce8e9222006-01-11 15:39:08 +11001784 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 int dequeued = 0;
1786
David Chinnera6867a62006-01-11 15:37:58 +11001787 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001788 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1789 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1790 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 dequeued = 1;
1792 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001793 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001794 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
1796 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001797 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001799 trace_xfs_buf_delwri_dequeue(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800}
1801
Dave Chinnerd808f612010-02-02 10:13:42 +11001802/*
1803 * If a delwri buffer needs to be pushed before it has aged out, then promote
1804 * it to the head of the delwri queue so that it will be flushed on the next
1805 * xfsbufd run. We do this by resetting the queuetime of the buffer to be older
1806 * than the age currently needed to flush the buffer. Hence the next time the
1807 * xfsbufd sees it is guaranteed to be considered old enough to flush.
1808 */
1809void
1810xfs_buf_delwri_promote(
1811 struct xfs_buf *bp)
1812{
1813 struct xfs_buftarg *btp = bp->b_target;
1814 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10) + 1;
1815
1816 ASSERT(bp->b_flags & XBF_DELWRI);
1817 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1818
1819 /*
1820 * Check the buffer age before locking the delayed write queue as we
1821 * don't need to promote buffers that are already past the flush age.
1822 */
1823 if (bp->b_queuetime < jiffies - age)
1824 return;
1825 bp->b_queuetime = jiffies - age;
1826 spin_lock(&btp->bt_delwrite_lock);
1827 list_move(&bp->b_list, &btp->bt_delwrite_queue);
1828 spin_unlock(&btp->bt_delwrite_lock);
1829}
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001832xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 struct workqueue_struct *queue)
1834{
1835 flush_workqueue(queue);
1836}
1837
David Chinner585e6d82007-02-10 18:32:29 +11001838/*
1839 * Move as many buffers as specified to the supplied list
1840 * idicating if we skipped any buffers to prevent deadlocks.
1841 */
1842STATIC int
1843xfs_buf_delwri_split(
1844 xfs_buftarg_t *target,
1845 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001846 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001847{
1848 xfs_buf_t *bp, *n;
1849 struct list_head *dwq = &target->bt_delwrite_queue;
1850 spinlock_t *dwlk = &target->bt_delwrite_lock;
1851 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001852 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001853
David Chinner5e6a07d2007-02-10 18:34:49 +11001854 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001855 INIT_LIST_HEAD(list);
1856 spin_lock(dwlk);
1857 list_for_each_entry_safe(bp, n, dwq, b_list) {
David Chinner585e6d82007-02-10 18:32:29 +11001858 ASSERT(bp->b_flags & XBF_DELWRI);
1859
Christoph Hellwig4d16e922010-06-23 18:11:15 +10001860 if (!XFS_BUF_ISPINNED(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001861 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001862 time_before(jiffies, bp->b_queuetime + age)) {
1863 xfs_buf_unlock(bp);
1864 break;
1865 }
1866
1867 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1868 _XBF_RUN_QUEUES);
1869 bp->b_flags |= XBF_WRITE;
1870 list_move_tail(&bp->b_list, list);
Dave Chinnerbfe27412010-11-08 08:55:05 +00001871 trace_xfs_buf_delwri_split(bp, _RET_IP_);
David Chinner585e6d82007-02-10 18:32:29 +11001872 } else
1873 skipped++;
1874 }
1875 spin_unlock(dwlk);
1876
1877 return skipped;
1878
1879}
1880
Dave Chinner089716a2010-01-26 15:13:25 +11001881/*
1882 * Compare function is more complex than it needs to be because
1883 * the return value is only 32 bits and we are doing comparisons
1884 * on 64 bit values
1885 */
1886static int
1887xfs_buf_cmp(
1888 void *priv,
1889 struct list_head *a,
1890 struct list_head *b)
1891{
1892 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1893 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1894 xfs_daddr_t diff;
1895
1896 diff = ap->b_bn - bp->b_bn;
1897 if (diff < 0)
1898 return -1;
1899 if (diff > 0)
1900 return 1;
1901 return 0;
1902}
1903
1904void
1905xfs_buf_delwri_sort(
1906 xfs_buftarg_t *target,
1907 struct list_head *list)
1908{
1909 list_sort(NULL, list, xfs_buf_cmp);
1910}
1911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001913xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001914 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
Dave Chinner089716a2010-01-26 15:13:25 +11001916 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 current->flags |= PF_MEMALLOC;
1919
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001920 set_freezable();
1921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 do {
Dave Chinnerc9c12972010-01-11 11:49:59 +00001923 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10);
1924 long tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10);
Dave Chinner089716a2010-01-26 15:13:25 +11001925 int count = 0;
1926 struct list_head tmp;
Dave Chinnerc9c12972010-01-11 11:49:59 +00001927
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001928 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001929 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001930 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001931 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001932 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Dave Chinnerc9c12972010-01-11 11:49:59 +00001935 /* sleep for a long time if there is nothing to do. */
1936 if (list_empty(&target->bt_delwrite_queue))
1937 tout = MAX_SCHEDULE_TIMEOUT;
1938 schedule_timeout_interruptible(tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Dave Chinnerc9c12972010-01-11 11:49:59 +00001940 xfs_buf_delwri_split(target, &tmp, age);
Dave Chinner089716a2010-01-26 15:13:25 +11001941 list_sort(NULL, &tmp, xfs_buf_cmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 while (!list_empty(&tmp)) {
Dave Chinner089716a2010-01-26 15:13:25 +11001943 struct xfs_buf *bp;
1944 bp = list_first_entry(&tmp, struct xfs_buf, b_list);
Nathan Scottce8e9222006-01-11 15:39:08 +11001945 list_del_init(&bp->b_list);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001946 xfs_bdstrat_cb(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001947 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 }
Nathan Scottf07c2252006-09-28 10:52:15 +10001949 if (count)
1950 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001952 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001954 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955}
1956
1957/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001958 * Go through all incore buffers, and release buffers if they belong to
1959 * the given device. This is used in filesystem error handling to
1960 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 */
1962int
1963xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001964 xfs_buftarg_t *target,
1965 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966{
Dave Chinner089716a2010-01-26 15:13:25 +11001967 xfs_buf_t *bp;
David Chinner585e6d82007-02-10 18:32:29 +11001968 int pincount = 0;
Dave Chinner089716a2010-01-26 15:13:25 +11001969 LIST_HEAD(tmp_list);
1970 LIST_HEAD(wait_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
Dave Chinnerc626d172009-04-06 18:42:11 +02001972 xfs_buf_runall_queues(xfsconvertd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001973 xfs_buf_runall_queues(xfsdatad_workqueue);
1974 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
David Chinner5e6a07d2007-02-10 18:34:49 +11001976 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
Dave Chinner089716a2010-01-26 15:13:25 +11001977 pincount = xfs_buf_delwri_split(target, &tmp_list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
1979 /*
Dave Chinner089716a2010-01-26 15:13:25 +11001980 * Dropped the delayed write list lock, now walk the temporary list.
1981 * All I/O is issued async and then if we need to wait for completion
1982 * we do that after issuing all the IO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 */
Dave Chinner089716a2010-01-26 15:13:25 +11001984 list_sort(NULL, &tmp_list, xfs_buf_cmp);
1985 while (!list_empty(&tmp_list)) {
1986 bp = list_first_entry(&tmp_list, struct xfs_buf, b_list);
David Chinner585e6d82007-02-10 18:32:29 +11001987 ASSERT(target == bp->b_target);
Dave Chinner089716a2010-01-26 15:13:25 +11001988 list_del_init(&bp->b_list);
1989 if (wait) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001990 bp->b_flags &= ~XBF_ASYNC;
Dave Chinner089716a2010-01-26 15:13:25 +11001991 list_add(&bp->b_list, &wait_list);
1992 }
Christoph Hellwig939d7232010-07-20 17:51:16 +10001993 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 }
1995
Dave Chinner089716a2010-01-26 15:13:25 +11001996 if (wait) {
1997 /* Expedite and wait for IO to complete. */
Nathan Scottf07c2252006-09-28 10:52:15 +10001998 blk_run_address_space(target->bt_mapping);
Dave Chinner089716a2010-01-26 15:13:25 +11001999 while (!list_empty(&wait_list)) {
2000 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
Nathan Scottf07c2252006-09-28 10:52:15 +10002001
Dave Chinner089716a2010-01-26 15:13:25 +11002002 list_del_init(&bp->b_list);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00002003 xfs_buf_iowait(bp);
Dave Chinner089716a2010-01-26 15:13:25 +11002004 xfs_buf_relse(bp);
2005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 return pincount;
2009}
2010
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002011int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11002012xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
Nathan Scott87582802006-03-14 13:18:19 +11002014 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
2015 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11002016 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002017 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002018
Dave Chinner51749e42010-09-08 09:00:22 +00002019 xfslogd_workqueue = alloc_workqueue("xfslogd",
Tejun Heo6370a6a2010-10-11 15:12:27 +02002020 WQ_MEM_RECLAIM | WQ_HIGHPRI, 1);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002021 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002022 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Rafael J. Wysockib4337692007-03-22 00:11:27 -08002024 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002025 if (!xfsdatad_workqueue)
2026 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Dave Chinnerc626d172009-04-06 18:42:11 +02002028 xfsconvertd_workqueue = create_workqueue("xfsconvertd");
2029 if (!xfsconvertd_workqueue)
2030 goto out_destroy_xfsdatad_workqueue;
2031
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002032 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Dave Chinnerc626d172009-04-06 18:42:11 +02002034 out_destroy_xfsdatad_workqueue:
2035 destroy_workqueue(xfsdatad_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002036 out_destroy_xfslogd_workqueue:
2037 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002038 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11002039 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002040 out:
Nathan Scott87582802006-03-14 13:18:19 +11002041 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042}
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044void
Nathan Scottce8e9222006-01-11 15:39:08 +11002045xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046{
Dave Chinnerc626d172009-04-06 18:42:11 +02002047 destroy_workqueue(xfsconvertd_workqueue);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002048 destroy_workqueue(xfsdatad_workqueue);
2049 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11002050 kmem_zone_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10002052
2053#ifdef CONFIG_KDB_MODULES
2054struct list_head *
2055xfs_get_buftarg_list(void)
2056{
2057 return &xfs_buftarg_list;
2058}
2059#endif