blob: a5a260fab8241ba7fb4b1555403032bb9d94a693 [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 Scott204ab252006-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 Scott204ab252006-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) {
Dave Chinnera19fb382011-03-26 09:13:42 +1100458 int retried = 0;
459
460 do {
461 bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
462 -1, PAGE_KERNEL);
463 if (bp->b_addr)
464 break;
465 vm_unmap_aliases();
466 } while (retried++ <= 1);
467
468 if (!bp->b_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100470 bp->b_addr += bp->b_offset;
471 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
473
474 return 0;
475}
476
477/*
478 * Finding and Reading Buffers
479 */
480
481/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100482 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 * a given range of an inode. The buffer is returned
484 * locked. If other overlapping buffers exist, they are
485 * released before the new buffer is created and locked,
486 * which may imply that this call will block until those buffers
487 * are unlocked. No I/O is implied by this call.
488 */
489xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100490_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab252006-01-11 20:50:22 +1100492 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100494 xfs_buf_flags_t flags,
495 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Nathan Scott204ab252006-01-11 20:50:22 +1100497 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 size_t range_length;
Dave Chinner74f75a02010-09-24 19:59:04 +1000499 struct xfs_perag *pag;
500 struct rb_node **rbp;
501 struct rb_node *parent;
502 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 range_base = (ioff << BBSHIFT);
505 range_length = (isize << BBSHIFT);
506
507 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100508 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab252006-01-11 20:50:22 +1100509 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Dave Chinner74f75a02010-09-24 19:59:04 +1000511 /* get tree root */
512 pag = xfs_perag_get(btp->bt_mount,
513 xfs_daddr_to_agno(btp->bt_mount, ioff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Dave Chinner74f75a02010-09-24 19:59:04 +1000515 /* walk tree */
516 spin_lock(&pag->pag_buf_lock);
517 rbp = &pag->pag_buf_tree.rb_node;
518 parent = NULL;
519 bp = NULL;
520 while (*rbp) {
521 parent = *rbp;
522 bp = rb_entry(parent, struct xfs_buf, b_rbnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Dave Chinner74f75a02010-09-24 19:59:04 +1000524 if (range_base < bp->b_file_offset)
525 rbp = &(*rbp)->rb_left;
526 else if (range_base > bp->b_file_offset)
527 rbp = &(*rbp)->rb_right;
528 else {
529 /*
530 * found a block offset match. If the range doesn't
531 * match, the only way this is allowed is if the buffer
532 * in the cache is stale and the transaction that made
533 * it stale has not yet committed. i.e. we are
534 * reallocating a busy extent. Skip this buffer and
535 * continue searching to the right for an exact match.
536 */
537 if (bp->b_buffer_length != range_length) {
538 ASSERT(bp->b_flags & XBF_STALE);
539 rbp = &(*rbp)->rb_right;
540 continue;
541 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100542 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 goto found;
544 }
545 }
546
547 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100548 if (new_bp) {
549 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 range_length, flags);
Dave Chinner74f75a02010-09-24 19:59:04 +1000551 rb_link_node(&new_bp->b_rbnode, parent, rbp);
552 rb_insert_color(&new_bp->b_rbnode, &pag->pag_buf_tree);
553 /* the buffer keeps the perag reference until it is freed */
554 new_bp->b_pag = pag;
555 spin_unlock(&pag->pag_buf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100557 XFS_STATS_INC(xb_miss_locked);
Dave Chinner74f75a02010-09-24 19:59:04 +1000558 spin_unlock(&pag->pag_buf_lock);
559 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100561 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563found:
Dave Chinner74f75a02010-09-24 19:59:04 +1000564 spin_unlock(&pag->pag_buf_lock);
565 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Dave Chinner90810b92010-11-30 15:16:16 +1100567 if (xfs_buf_cond_lock(bp)) {
568 /* failed, so wait for the lock if requested. */
Nathan Scottce8e9222006-01-11 15:39:08 +1100569 if (!(flags & XBF_TRYLOCK)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100570 xfs_buf_lock(bp);
571 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100573 xfs_buf_rele(bp);
574 XFS_STATS_INC(xb_busy_locked);
575 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578
Nathan Scottce8e9222006-01-11 15:39:08 +1100579 if (bp->b_flags & XBF_STALE) {
580 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
581 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000582 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000583
584 trace_xfs_buf_find(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100585 XFS_STATS_INC(xb_get_locked);
586 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
589/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100590 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 * Storage in memory for all portions of the buffer will be allocated,
592 * although backing storage may not be.
593 */
594xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000595xfs_buf_get(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100597 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100599 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Nathan Scottce8e9222006-01-11 15:39:08 +1100601 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 int error = 0, i;
603
Nathan Scottce8e9222006-01-11 15:39:08 +1100604 new_bp = xfs_buf_allocate(flags);
605 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return NULL;
607
Nathan Scottce8e9222006-01-11 15:39:08 +1100608 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
609 if (bp == new_bp) {
610 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (error)
612 goto no_buffer;
613 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100614 xfs_buf_deallocate(new_bp);
615 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return NULL;
617 }
618
Nathan Scottce8e9222006-01-11 15:39:08 +1100619 for (i = 0; i < bp->b_page_count; i++)
620 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Nathan Scottce8e9222006-01-11 15:39:08 +1100622 if (!(bp->b_flags & XBF_MAPPED)) {
623 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100625 xfs_warn(target->bt_mount,
626 "%s: failed to map pages\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 goto no_buffer;
628 }
629 }
630
Nathan Scottce8e9222006-01-11 15:39:08 +1100631 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 /*
634 * Always fill in the block number now, the mapped cases can do
635 * their own overlay of this later.
636 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100637 bp->b_bn = ioff;
638 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000640 trace_xfs_buf_get(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100641 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100644 if (flags & (XBF_LOCK | XBF_TRYLOCK))
645 xfs_buf_unlock(bp);
646 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return NULL;
648}
649
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100650STATIC int
651_xfs_buf_read(
652 xfs_buf_t *bp,
653 xfs_buf_flags_t flags)
654{
655 int status;
656
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100657 ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE)));
658 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
659
660 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
661 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
662 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | \
663 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
664
665 status = xfs_buf_iorequest(bp);
Dave Chinnerec53d1d2010-07-20 17:52:59 +1000666 if (status || XFS_BUF_ISERROR(bp) || (flags & XBF_ASYNC))
667 return status;
668 return xfs_buf_iowait(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100669}
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000672xfs_buf_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100674 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100676 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Nathan Scottce8e9222006-01-11 15:39:08 +1100678 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Nathan Scottce8e9222006-01-11 15:39:08 +1100680 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000682 bp = xfs_buf_get(target, ioff, isize, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100683 if (bp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000684 trace_xfs_buf_read(bp, flags, _RET_IP_);
685
Nathan Scottce8e9222006-01-11 15:39:08 +1100686 if (!XFS_BUF_ISDONE(bp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100687 XFS_STATS_INC(xb_get_read);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100688 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100689 } else if (flags & XBF_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 /*
691 * Read ahead call which is already satisfied,
692 * drop the buffer
693 */
694 goto no_buffer;
695 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100697 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699 }
700
Nathan Scottce8e9222006-01-11 15:39:08 +1100701 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100704 if (flags & (XBF_LOCK | XBF_TRYLOCK))
705 xfs_buf_unlock(bp);
706 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return NULL;
708}
709
710/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100711 * If we are not low on memory then do the readahead in a deadlock
712 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 */
714void
Nathan Scottce8e9222006-01-11 15:39:08 +1100715xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100717 xfs_off_t ioff,
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000718 size_t isize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
720 struct backing_dev_info *bdi;
721
Nathan Scottce8e9222006-01-11 15:39:08 +1100722 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (bdi_read_congested(bdi))
724 return;
725
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000726 xfs_buf_read(target, ioff, isize,
727 XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD|XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
Dave Chinner5adc94c2010-09-24 21:58:31 +1000730/*
731 * Read an uncached buffer from disk. Allocates and returns a locked
732 * buffer containing the disk contents or nothing.
733 */
734struct xfs_buf *
735xfs_buf_read_uncached(
736 struct xfs_mount *mp,
737 struct xfs_buftarg *target,
738 xfs_daddr_t daddr,
739 size_t length,
740 int flags)
741{
742 xfs_buf_t *bp;
743 int error;
744
745 bp = xfs_buf_get_uncached(target, length, flags);
746 if (!bp)
747 return NULL;
748
749 /* set up the buffer for a read IO */
750 xfs_buf_lock(bp);
751 XFS_BUF_SET_ADDR(bp, daddr);
752 XFS_BUF_READ(bp);
753 XFS_BUF_BUSY(bp);
754
755 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000756 error = xfs_buf_iowait(bp);
Dave Chinner5adc94c2010-09-24 21:58:31 +1000757 if (error || bp->b_error) {
758 xfs_buf_relse(bp);
759 return NULL;
760 }
761 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
764xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100765xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 size_t len,
767 xfs_buftarg_t *target)
768{
Nathan Scottce8e9222006-01-11 15:39:08 +1100769 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Nathan Scottce8e9222006-01-11 15:39:08 +1100771 bp = xfs_buf_allocate(0);
772 if (bp)
773 _xfs_buf_initialize(bp, target, 0, len, 0);
774 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776
777static inline struct page *
778mem_to_page(
779 void *addr)
780{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800781 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return virt_to_page(addr);
783 } else {
784 return vmalloc_to_page(addr);
785 }
786}
787
788int
Nathan Scottce8e9222006-01-11 15:39:08 +1100789xfs_buf_associate_memory(
790 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 void *mem,
792 size_t len)
793{
794 int rval;
795 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100796 unsigned long pageaddr;
797 unsigned long offset;
798 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 int page_count;
800
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100801 pageaddr = (unsigned long)mem & PAGE_CACHE_MASK;
802 offset = (unsigned long)mem - pageaddr;
803 buflen = PAGE_CACHE_ALIGN(len + offset);
804 page_count = buflen >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100807 if (bp->b_pages)
808 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Nathan Scottce8e9222006-01-11 15:39:08 +1100810 bp->b_pages = NULL;
811 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Christoph Hellwig36fae172009-07-18 18:14:58 -0400813 rval = _xfs_buf_get_pages(bp, page_count, XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (rval)
815 return rval;
816
Nathan Scottce8e9222006-01-11 15:39:08 +1100817 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100819 for (i = 0; i < bp->b_page_count; i++) {
820 bp->b_pages[i] = mem_to_page((void *)pageaddr);
821 pageaddr += PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100824 bp->b_count_desired = len;
825 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100826 bp->b_flags |= XBF_MAPPED;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000827 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 return 0;
830}
831
832xfs_buf_t *
Dave Chinner686865f2010-09-24 20:07:47 +1000833xfs_buf_get_uncached(
834 struct xfs_buftarg *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 size_t len,
Dave Chinner686865f2010-09-24 20:07:47 +1000836 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000838 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
839 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Nathan Scottce8e9222006-01-11 15:39:08 +1100842 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (unlikely(bp == NULL))
844 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100845 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000847 error = _xfs_buf_get_pages(bp, page_count, 0);
848 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 goto fail_free_buf;
850
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000851 for (i = 0; i < page_count; i++) {
Dave Chinner686865f2010-09-24 20:07:47 +1000852 bp->b_pages[i] = alloc_page(xb_to_gfp(flags));
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000853 if (!bp->b_pages[i])
854 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000856 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000858 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
859 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100860 xfs_warn(target->bt_mount,
861 "%s: failed to map pages\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Nathan Scottce8e9222006-01-11 15:39:08 +1100865 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Dave Chinner686865f2010-09-24 20:07:47 +1000867 trace_xfs_buf_get_uncached(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000871 while (--i >= 0)
872 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000873 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000875 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 fail:
877 return NULL;
878}
879
880/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 * Increment reference count on buffer, to hold the buffer concurrently
882 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 * Must hold the buffer already to call this function.
884 */
885void
Nathan Scottce8e9222006-01-11 15:39:08 +1100886xfs_buf_hold(
887 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000889 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100890 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892
893/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100894 * Releases a hold on the specified buffer. If the
895 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 */
897void
Nathan Scottce8e9222006-01-11 15:39:08 +1100898xfs_buf_rele(
899 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Dave Chinner74f75a02010-09-24 19:59:04 +1000901 struct xfs_perag *pag = bp->b_pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000903 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Dave Chinner74f75a02010-09-24 19:59:04 +1000905 if (!pag) {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100906 ASSERT(list_empty(&bp->b_lru));
Dave Chinner74f75a02010-09-24 19:59:04 +1000907 ASSERT(RB_EMPTY_NODE(&bp->b_rbnode));
Nathan Scottfad3aa12006-02-01 12:14:52 +1100908 if (atomic_dec_and_test(&bp->b_hold))
909 xfs_buf_free(bp);
910 return;
911 }
912
Dave Chinner74f75a02010-09-24 19:59:04 +1000913 ASSERT(!RB_EMPTY_NODE(&bp->b_rbnode));
Dave Chinner430cbeb2010-12-02 16:30:55 +1100914
Lachlan McIlroy37906892008-08-13 15:42:10 +1000915 ASSERT(atomic_read(&bp->b_hold) > 0);
Dave Chinner74f75a02010-09-24 19:59:04 +1000916 if (atomic_dec_and_lock(&bp->b_hold, &pag->pag_buf_lock)) {
Christoph Hellwigbfc60172011-01-07 13:02:23 +0000917 if (!(bp->b_flags & XBF_STALE) &&
Dave Chinner430cbeb2010-12-02 16:30:55 +1100918 atomic_read(&bp->b_lru_ref)) {
919 xfs_buf_lru_add(bp);
920 spin_unlock(&pag->pag_buf_lock);
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100921 } else {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100922 xfs_buf_lru_del(bp);
Nathan Scottce8e9222006-01-11 15:39:08 +1100923 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
Dave Chinner74f75a02010-09-24 19:59:04 +1000924 rb_erase(&bp->b_rbnode, &pag->pag_buf_tree);
925 spin_unlock(&pag->pag_buf_lock);
926 xfs_perag_put(pag);
Nathan Scottce8e9222006-01-11 15:39:08 +1100927 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
929 }
930}
931
932
933/*
934 * Mutual exclusion on buffers. Locking model:
935 *
936 * Buffers associated with inodes for which buffer locking
937 * is not enabled are not protected by semaphores, and are
938 * assumed to be exclusively owned by the caller. There is a
939 * spinlock in the buffer, used by the caller when concurrent
940 * access is possible.
941 */
942
943/*
Dave Chinner90810b92010-11-30 15:16:16 +1100944 * Locks a buffer object, if it is not already locked. Note that this in
945 * no way locks the underlying pages, so it is only useful for
946 * synchronizing concurrent use of buffer objects, not for synchronizing
947 * independent access to the underlying pages.
948 *
949 * If we come across a stale, pinned, locked buffer, we know that we are
950 * being asked to lock a buffer that has been reallocated. Because it is
951 * pinned, we know that the log has not been pushed to disk and hence it
952 * will still be locked. Rather than continuing to have trylock attempts
953 * fail until someone else pushes the log, push it ourselves before
954 * returning. This means that the xfsaild will not get stuck trying
955 * to push on stale inode buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 */
957int
Nathan Scottce8e9222006-01-11 15:39:08 +1100958xfs_buf_cond_lock(
959 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
961 int locked;
962
Nathan Scottce8e9222006-01-11 15:39:08 +1100963 locked = down_trylock(&bp->b_sema) == 0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000964 if (locked)
Nathan Scottce8e9222006-01-11 15:39:08 +1100965 XB_SET_OWNER(bp);
Dave Chinner90810b92010-11-30 15:16:16 +1100966 else if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
967 xfs_log_force(bp->b_target->bt_mount, 0);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000968
969 trace_xfs_buf_cond_lock(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100970 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973int
Nathan Scottce8e9222006-01-11 15:39:08 +1100974xfs_buf_lock_value(
975 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Stephen Rothwelladaa6932008-04-22 15:26:13 +1000977 return bp->b_sema.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100981 * Locks a buffer object.
982 * Note that this in no way locks the underlying pages, so it is only
983 * useful for synchronizing concurrent use of buffer objects, not for
984 * synchronizing independent access to the underlying pages.
Dave Chinnered3b4d62010-05-21 12:07:08 +1000985 *
986 * If we come across a stale, pinned, locked buffer, we know that we
987 * are being asked to lock a buffer that has been reallocated. Because
988 * it is pinned, we know that the log has not been pushed to disk and
989 * hence it will still be locked. Rather than sleeping until someone
990 * else pushes the log, push it ourselves before trying to get the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100992void
993xfs_buf_lock(
994 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000996 trace_xfs_buf_lock(bp, _RET_IP_);
997
Dave Chinnered3b4d62010-05-21 12:07:08 +1000998 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
Dave Chinnerebad8612010-09-22 10:47:20 +1000999 xfs_log_force(bp->b_target->bt_mount, 0);
Nathan Scottce8e9222006-01-11 15:39:08 +11001000 if (atomic_read(&bp->b_io_remaining))
1001 blk_run_address_space(bp->b_target->bt_mapping);
1002 down(&bp->b_sema);
1003 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001004
1005 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
1008/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001009 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +10001010 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +11001011 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +10001012 * take a reference for the delwri queue because the unlocker is going to
1013 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 */
1015void
Nathan Scottce8e9222006-01-11 15:39:08 +11001016xfs_buf_unlock(
1017 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Nathan Scottce8e9222006-01-11 15:39:08 +11001019 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
1020 atomic_inc(&bp->b_hold);
1021 bp->b_flags |= XBF_ASYNC;
1022 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +10001023 }
1024
Nathan Scottce8e9222006-01-11 15:39:08 +11001025 XB_CLEAR_OWNER(bp);
1026 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001027
1028 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
Nathan Scottce8e9222006-01-11 15:39:08 +11001031STATIC void
1032xfs_buf_wait_unpin(
1033 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
1035 DECLARE_WAITQUEUE (wait, current);
1036
Nathan Scottce8e9222006-01-11 15:39:08 +11001037 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return;
1039
Nathan Scottce8e9222006-01-11 15:39:08 +11001040 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 for (;;) {
1042 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +11001043 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001045 if (atomic_read(&bp->b_io_remaining))
1046 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 schedule();
1048 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001049 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 set_current_state(TASK_RUNNING);
1051}
1052
1053/*
1054 * Buffer Utility Routines
1055 */
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001058xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +00001059 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
David Howellsc4028952006-11-22 14:57:56 +00001061 xfs_buf_t *bp =
1062 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Christoph Hellwig80f6c292010-08-18 05:29:11 -04001064 if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +11001065 (*(bp->b_iodone))(bp);
1066 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 xfs_buf_relse(bp);
1068}
1069
1070void
Nathan Scottce8e9222006-01-11 15:39:08 +11001071xfs_buf_ioend(
1072 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 int schedule)
1074{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001075 trace_xfs_buf_iodone(bp, _RET_IP_);
1076
Lachlan McIlroy77be55a2007-11-23 16:31:00 +11001077 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +11001078 if (bp->b_error == 0)
1079 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Nathan Scottce8e9222006-01-11 15:39:08 +11001081 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001083 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001084 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 } else {
David Howellsc4028952006-11-22 14:57:56 +00001086 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088 } else {
David Chinnerb4dd3302008-08-13 16:36:11 +10001089 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
1091}
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093void
Nathan Scottce8e9222006-01-11 15:39:08 +11001094xfs_buf_ioerror(
1095 xfs_buf_t *bp,
1096 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
1098 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001099 bp->b_error = (unsigned short)error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001100 trace_xfs_buf_ioerror(bp, error, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103int
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001104xfs_bwrite(
1105 struct xfs_mount *mp,
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001106 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
Christoph Hellwig8c383662010-03-12 10:59:40 +00001108 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001110 bp->b_flags |= XBF_WRITE;
Christoph Hellwig8c383662010-03-12 10:59:40 +00001111 bp->b_flags &= ~(XBF_ASYNC | XBF_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001113 xfs_buf_delwri_dequeue(bp);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001114 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Christoph Hellwig8c383662010-03-12 10:59:40 +00001116 error = xfs_buf_iowait(bp);
1117 if (error)
1118 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1119 xfs_buf_relse(bp);
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001120 return error;
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001121}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001123void
1124xfs_bdwrite(
1125 void *mp,
1126 struct xfs_buf *bp)
1127{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001128 trace_xfs_buf_bdwrite(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001130 bp->b_flags &= ~XBF_READ;
1131 bp->b_flags |= (XBF_DELWRI | XBF_ASYNC);
1132
1133 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
Christoph Hellwig4e234712010-01-13 22:17:56 +00001136/*
1137 * Called when we want to stop a buffer from getting written or read.
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001138 * We attach the EIO error, muck with its flags, and call xfs_buf_ioend
Christoph Hellwig4e234712010-01-13 22:17:56 +00001139 * so that the proper iodone callbacks get called.
1140 */
1141STATIC int
1142xfs_bioerror(
1143 xfs_buf_t *bp)
1144{
1145#ifdef XFSERRORDEBUG
1146 ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
1147#endif
1148
1149 /*
1150 * No need to wait until the buffer is unpinned, we aren't flushing it.
1151 */
1152 XFS_BUF_ERROR(bp, EIO);
1153
1154 /*
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001155 * We're calling xfs_buf_ioend, so delete XBF_DONE flag.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001156 */
1157 XFS_BUF_UNREAD(bp);
1158 XFS_BUF_UNDELAYWRITE(bp);
1159 XFS_BUF_UNDONE(bp);
1160 XFS_BUF_STALE(bp);
1161
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001162 xfs_buf_ioend(bp, 0);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001163
1164 return EIO;
1165}
1166
1167/*
1168 * Same as xfs_bioerror, except that we are releasing the buffer
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001169 * here ourselves, and avoiding the xfs_buf_ioend call.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001170 * This is meant for userdata errors; metadata bufs come with
1171 * iodone functions attached, so that we can track down errors.
1172 */
1173STATIC int
1174xfs_bioerror_relse(
1175 struct xfs_buf *bp)
1176{
1177 int64_t fl = XFS_BUF_BFLAGS(bp);
1178 /*
1179 * No need to wait until the buffer is unpinned.
1180 * We aren't flushing it.
1181 *
1182 * chunkhold expects B_DONE to be set, whether
1183 * we actually finish the I/O or not. We don't want to
1184 * change that interface.
1185 */
1186 XFS_BUF_UNREAD(bp);
1187 XFS_BUF_UNDELAYWRITE(bp);
1188 XFS_BUF_DONE(bp);
1189 XFS_BUF_STALE(bp);
1190 XFS_BUF_CLR_IODONE_FUNC(bp);
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001191 if (!(fl & XBF_ASYNC)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001192 /*
1193 * Mark b_error and B_ERROR _both_.
1194 * Lot's of chunkcache code assumes that.
1195 * There's no reason to mark error for
1196 * ASYNC buffers.
1197 */
1198 XFS_BUF_ERROR(bp, EIO);
1199 XFS_BUF_FINISH_IOWAIT(bp);
1200 } else {
1201 xfs_buf_relse(bp);
1202 }
1203
1204 return EIO;
1205}
1206
1207
1208/*
1209 * All xfs metadata buffers except log state machine buffers
1210 * get this attached as their b_bdstrat callback function.
1211 * This is so that we can catch a buffer
1212 * after prematurely unpinning it to forcibly shutdown the filesystem.
1213 */
1214int
1215xfs_bdstrat_cb(
1216 struct xfs_buf *bp)
1217{
Dave Chinnerebad8612010-09-22 10:47:20 +10001218 if (XFS_FORCED_SHUTDOWN(bp->b_target->bt_mount)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001219 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1220 /*
1221 * Metadata write that didn't get logged but
1222 * written delayed anyway. These aren't associated
1223 * with a transaction, and can be ignored.
1224 */
1225 if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
1226 return xfs_bioerror_relse(bp);
1227 else
1228 return xfs_bioerror(bp);
1229 }
1230
1231 xfs_buf_iorequest(bp);
1232 return 0;
1233}
1234
1235/*
1236 * Wrapper around bdstrat so that we can stop data from going to disk in case
1237 * we are shutting down the filesystem. Typically user data goes thru this
1238 * path; one of the exceptions is the superblock.
1239 */
1240void
1241xfsbdstrat(
1242 struct xfs_mount *mp,
1243 struct xfs_buf *bp)
1244{
1245 if (XFS_FORCED_SHUTDOWN(mp)) {
1246 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1247 xfs_bioerror_relse(bp);
1248 return;
1249 }
1250
1251 xfs_buf_iorequest(bp);
1252}
1253
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001254STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001255_xfs_buf_ioend(
1256 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 int schedule)
1258{
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001259 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1260 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Nathan Scottce8e9222006-01-11 15:39:08 +11001261 xfs_buf_ioend(bp, schedule);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263}
1264
Al Viro782e3b32007-10-12 07:17:47 +01001265STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001266xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 int error)
1269{
Nathan Scottce8e9222006-01-11 15:39:08 +11001270 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1271 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001272 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Lachlan McIlroycfbe5262008-12-12 15:27:25 +11001274 xfs_buf_ioerror(bp, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
James Bottomley73c77e22010-01-25 11:42:24 -06001276 if (!error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
1277 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1278
Nathan Scotteedb5532005-09-02 16:39:56 +10001279 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 struct page *page = bvec->bv_page;
1281
Nathan Scott948ecdb2006-09-28 11:03:13 +10001282 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001283 if (unlikely(bp->b_error)) {
1284 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001285 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001286 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 SetPageUptodate(page);
1288 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001289 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1291 }
1292
Nathan Scotteedb5532005-09-02 16:39:56 +10001293 if (--bvec >= bio->bi_io_vec)
1294 prefetchw(&bvec->bv_page->flags);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001295
1296 if (bp->b_flags & _XBF_PAGE_LOCKED)
1297 unlock_page(page);
Nathan Scotteedb5532005-09-02 16:39:56 +10001298 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Nathan Scottce8e9222006-01-11 15:39:08 +11001300 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302}
1303
1304STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001305_xfs_buf_ioapply(
1306 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
Christoph Hellwiga9759f22007-12-07 14:07:08 +11001308 int rw, map_i, total_nr_pages, nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001310 int offset = bp->b_offset;
1311 int size = bp->b_count_desired;
1312 sector_t sector = bp->b_bn;
1313 unsigned int blocksize = bp->b_target->bt_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Nathan Scottce8e9222006-01-11 15:39:08 +11001315 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 map_i = 0;
1317
Nathan Scottce8e9222006-01-11 15:39:08 +11001318 if (bp->b_flags & XBF_ORDERED) {
1319 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwig80f6c292010-08-18 05:29:11 -04001320 rw = WRITE_FLUSH_FUA;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001321 } else if (bp->b_flags & XBF_LOG_BUFFER) {
Nathan Scott51bdd702006-09-28 11:01:57 +10001322 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1323 bp->b_flags &= ~_XBF_RUN_QUEUES;
1324 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001325 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1326 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1327 bp->b_flags &= ~_XBF_RUN_QUEUES;
1328 rw = (bp->b_flags & XBF_WRITE) ? WRITE_META : READ_META;
Nathan Scott51bdd702006-09-28 11:01:57 +10001329 } else {
1330 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1331 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001332 }
1333
Nathan Scottce8e9222006-01-11 15:39:08 +11001334 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 * we populate up the whole page, and hence the other metadata
1336 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001337 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001339 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001340 ((bp->b_flags & (XBF_READ|_XBF_PAGE_LOCKED)) ==
1341 (XBF_READ|_XBF_PAGE_LOCKED)) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001342 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 bio = bio_alloc(GFP_NOIO, 1);
1344
Nathan Scottce8e9222006-01-11 15:39:08 +11001345 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001347 bio->bi_end_io = xfs_buf_bio_end_io;
1348 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Nathan Scottce8e9222006-01-11 15:39:08 +11001350 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 size = 0;
1352
Nathan Scottce8e9222006-01-11 15:39:08 +11001353 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
1355 goto submit_io;
1356 }
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001359 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1361 if (nr_pages > total_nr_pages)
1362 nr_pages = total_nr_pages;
1363
1364 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001365 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001367 bio->bi_end_io = xfs_buf_bio_end_io;
1368 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001371 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 if (nbytes > size)
1374 nbytes = size;
1375
Nathan Scottce8e9222006-01-11 15:39:08 +11001376 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1377 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 break;
1379
1380 offset = 0;
1381 sector += nbytes >> BBSHIFT;
1382 size -= nbytes;
1383 total_nr_pages--;
1384 }
1385
1386submit_io:
1387 if (likely(bio->bi_size)) {
James Bottomley73c77e22010-01-25 11:42:24 -06001388 if (xfs_buf_is_vmapped(bp)) {
1389 flush_kernel_vmap_range(bp->b_addr,
1390 xfs_buf_vmap_len(bp));
1391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 submit_bio(rw, bio);
1393 if (size)
1394 goto next_chunk;
1395 } else {
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001396 /*
1397 * if we get here, no pages were added to the bio. However,
1398 * we can't just error out here - if the pages are locked then
1399 * we have to unlock them otherwise we can hang on a later
1400 * access to the page.
1401 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001402 xfs_buf_ioerror(bp, EIO);
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001403 if (bp->b_flags & _XBF_PAGE_LOCKED) {
1404 int i;
1405 for (i = 0; i < bp->b_page_count; i++)
1406 unlock_page(bp->b_pages[i]);
1407 }
1408 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
1410}
1411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412int
Nathan Scottce8e9222006-01-11 15:39:08 +11001413xfs_buf_iorequest(
1414 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001416 trace_xfs_buf_iorequest(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Nathan Scottce8e9222006-01-11 15:39:08 +11001418 if (bp->b_flags & XBF_DELWRI) {
1419 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 return 0;
1421 }
1422
Nathan Scottce8e9222006-01-11 15:39:08 +11001423 if (bp->b_flags & XBF_WRITE) {
1424 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
1426
Nathan Scottce8e9222006-01-11 15:39:08 +11001427 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 /* Set the count to 1 initially, this will stop an I/O
1430 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001431 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001433 atomic_set(&bp->b_io_remaining, 1);
1434 _xfs_buf_ioapply(bp);
1435 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Nathan Scottce8e9222006-01-11 15:39:08 +11001437 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return 0;
1439}
1440
1441/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001442 * Waits for I/O to complete on the buffer supplied.
1443 * It returns immediately if no I/O is pending.
1444 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 */
1446int
Nathan Scottce8e9222006-01-11 15:39:08 +11001447xfs_buf_iowait(
1448 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001450 trace_xfs_buf_iowait(bp, _RET_IP_);
1451
Nathan Scottce8e9222006-01-11 15:39:08 +11001452 if (atomic_read(&bp->b_io_remaining))
1453 blk_run_address_space(bp->b_target->bt_mapping);
David Chinnerb4dd3302008-08-13 16:36:11 +10001454 wait_for_completion(&bp->b_iowait);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001455
1456 trace_xfs_buf_iowait_done(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +11001457 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458}
1459
Nathan Scottce8e9222006-01-11 15:39:08 +11001460xfs_caddr_t
1461xfs_buf_offset(
1462 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 size_t offset)
1464{
1465 struct page *page;
1466
Nathan Scottce8e9222006-01-11 15:39:08 +11001467 if (bp->b_flags & XBF_MAPPED)
1468 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Nathan Scottce8e9222006-01-11 15:39:08 +11001470 offset += bp->b_offset;
1471 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1472 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473}
1474
1475/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 * Move data into or out of a buffer.
1477 */
1478void
Nathan Scottce8e9222006-01-11 15:39:08 +11001479xfs_buf_iomove(
1480 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 size_t boff, /* starting buffer offset */
1482 size_t bsize, /* length to copy */
Dave Chinnerb9c48642010-01-20 10:47:39 +11001483 void *data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001484 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
1486 size_t bend, cpoff, csize;
1487 struct page *page;
1488
1489 bend = boff + bsize;
1490 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001491 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1492 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001494 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1497
1498 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001499 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 memset(page_address(page) + cpoff, 0, csize);
1501 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001502 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 memcpy(data, page_address(page) + cpoff, csize);
1504 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001505 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 memcpy(page_address(page) + cpoff, data, csize);
1507 }
1508
1509 boff += csize;
1510 data += csize;
1511 }
1512}
1513
1514/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001515 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 */
1517
1518/*
Dave Chinner430cbeb2010-12-02 16:30:55 +11001519 * Wait for any bufs with callbacks that have been submitted but have not yet
1520 * returned. These buffers will have an elevated hold count, so wait on those
1521 * while freeing all the buffers only held by the LRU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 */
1523void
1524xfs_wait_buftarg(
Dave Chinner74f75a02010-09-24 19:59:04 +10001525 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526{
Dave Chinner430cbeb2010-12-02 16:30:55 +11001527 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Dave Chinner430cbeb2010-12-02 16:30:55 +11001529restart:
1530 spin_lock(&btp->bt_lru_lock);
1531 while (!list_empty(&btp->bt_lru)) {
1532 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1533 if (atomic_read(&bp->b_hold) > 1) {
1534 spin_unlock(&btp->bt_lru_lock);
Dave Chinner26af6552010-09-22 10:47:20 +10001535 delay(100);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001536 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001538 /*
1539 * clear the LRU reference count so the bufer doesn't get
1540 * ignored in xfs_buf_rele().
1541 */
1542 atomic_set(&bp->b_lru_ref, 0);
1543 spin_unlock(&btp->bt_lru_lock);
1544 xfs_buf_rele(bp);
1545 spin_lock(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001547 spin_unlock(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
Dave Chinnerff57ab22010-11-30 17:27:57 +11001550int
1551xfs_buftarg_shrink(
1552 struct shrinker *shrink,
1553 int nr_to_scan,
1554 gfp_t mask)
David Chinnera6867a62006-01-11 15:37:58 +11001555{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001556 struct xfs_buftarg *btp = container_of(shrink,
1557 struct xfs_buftarg, bt_shrinker);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001558 struct xfs_buf *bp;
1559 LIST_HEAD(dispose);
1560
1561 if (!nr_to_scan)
1562 return btp->bt_lru_nr;
1563
1564 spin_lock(&btp->bt_lru_lock);
1565 while (!list_empty(&btp->bt_lru)) {
1566 if (nr_to_scan-- <= 0)
1567 break;
1568
1569 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1570
1571 /*
1572 * Decrement the b_lru_ref count unless the value is already
1573 * zero. If the value is already zero, we need to reclaim the
1574 * buffer, otherwise it gets another trip through the LRU.
1575 */
1576 if (!atomic_add_unless(&bp->b_lru_ref, -1, 0)) {
1577 list_move_tail(&bp->b_lru, &btp->bt_lru);
1578 continue;
1579 }
1580
1581 /*
1582 * remove the buffer from the LRU now to avoid needing another
1583 * lock round trip inside xfs_buf_rele().
1584 */
1585 list_move(&bp->b_lru, &dispose);
1586 btp->bt_lru_nr--;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001587 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001588 spin_unlock(&btp->bt_lru_lock);
1589
1590 while (!list_empty(&dispose)) {
1591 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1592 list_del_init(&bp->b_lru);
1593 xfs_buf_rele(bp);
1594 }
1595
1596 return btp->bt_lru_nr;
David Chinnera6867a62006-01-11 15:37:58 +11001597}
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599void
1600xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001601 struct xfs_mount *mp,
1602 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001604 unregister_shrinker(&btp->bt_shrinker);
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 xfs_flush_buftarg(btp, 1);
Christoph Hellwigb7963132009-03-03 14:48:37 -05001607 if (mp->m_flags & XFS_MOUNT_BARRIER)
1608 xfs_blkdev_issue_flush(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001609 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001610
David Chinnera6867a62006-01-11 15:37:58 +11001611 kthread_stop(btp->bt_task);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001612 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615STATIC int
1616xfs_setsize_buftarg_flags(
1617 xfs_buftarg_t *btp,
1618 unsigned int blocksize,
1619 unsigned int sectorsize,
1620 int verbose)
1621{
Nathan Scottce8e9222006-01-11 15:39:08 +11001622 btp->bt_bsize = blocksize;
1623 btp->bt_sshift = ffs(sectorsize) - 1;
1624 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Nathan Scottce8e9222006-01-11 15:39:08 +11001626 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Dave Chinner4f107002011-03-07 10:00:35 +11001627 xfs_warn(btp->bt_mount,
1628 "Cannot set_blocksize to %u on device %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 sectorsize, XFS_BUFTARG_NAME(btp));
1630 return EINVAL;
1631 }
1632
1633 if (verbose &&
1634 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1635 printk(KERN_WARNING
1636 "XFS: %u byte sectors in use on device %s. "
1637 "This is suboptimal; %u or greater is ideal.\n",
1638 sectorsize, XFS_BUFTARG_NAME(btp),
1639 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1640 }
1641
1642 return 0;
1643}
1644
1645/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001646 * When allocating the initial buffer target we have not yet
1647 * read in the superblock, so don't know what sized sectors
1648 * are being used is at this early stage. Play safe.
1649 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650STATIC int
1651xfs_setsize_buftarg_early(
1652 xfs_buftarg_t *btp,
1653 struct block_device *bdev)
1654{
1655 return xfs_setsize_buftarg_flags(btp,
Martin K. Petersene1defc42009-05-22 17:17:49 -04001656 PAGE_CACHE_SIZE, bdev_logical_block_size(bdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657}
1658
1659int
1660xfs_setsize_buftarg(
1661 xfs_buftarg_t *btp,
1662 unsigned int blocksize,
1663 unsigned int sectorsize)
1664{
1665 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1666}
1667
1668STATIC int
1669xfs_mapping_buftarg(
1670 xfs_buftarg_t *btp,
1671 struct block_device *bdev)
1672{
1673 struct backing_dev_info *bdi;
1674 struct inode *inode;
1675 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001676 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001678 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 };
1680
1681 inode = new_inode(bdev->bd_inode->i_sb);
1682 if (!inode) {
1683 printk(KERN_WARNING
1684 "XFS: Cannot allocate mapping inode for device %s\n",
1685 XFS_BUFTARG_NAME(btp));
1686 return ENOMEM;
1687 }
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001688 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 inode->i_mode = S_IFBLK;
1690 inode->i_bdev = bdev;
1691 inode->i_rdev = bdev->bd_dev;
1692 bdi = blk_get_backing_dev_info(bdev);
1693 if (!bdi)
1694 bdi = &default_backing_dev_info;
1695 mapping = &inode->i_data;
1696 mapping->a_ops = &mapping_aops;
1697 mapping->backing_dev_info = bdi;
1698 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001699 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 return 0;
1701}
1702
David Chinnera6867a62006-01-11 15:37:58 +11001703STATIC int
1704xfs_alloc_delwrite_queue(
Jan Engelhardte2a07812010-03-23 09:52:55 +11001705 xfs_buftarg_t *btp,
1706 const char *fsname)
David Chinnera6867a62006-01-11 15:37:58 +11001707{
David Chinnera6867a62006-01-11 15:37:58 +11001708 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
Eric Sandeen007c61c2007-10-11 17:43:56 +10001709 spin_lock_init(&btp->bt_delwrite_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001710 btp->bt_flags = 0;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001711 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd/%s", fsname);
Dave Chinnerff57ab22010-11-30 17:27:57 +11001712 if (IS_ERR(btp->bt_task))
1713 return PTR_ERR(btp->bt_task);
1714 return 0;
David Chinnera6867a62006-01-11 15:37:58 +11001715}
1716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717xfs_buftarg_t *
1718xfs_alloc_buftarg(
Dave Chinnerebad8612010-09-22 10:47:20 +10001719 struct xfs_mount *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 struct block_device *bdev,
Jan Engelhardte2a07812010-03-23 09:52:55 +11001721 int external,
1722 const char *fsname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
1724 xfs_buftarg_t *btp;
1725
1726 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1727
Dave Chinnerebad8612010-09-22 10:47:20 +10001728 btp->bt_mount = mp;
Nathan Scottce8e9222006-01-11 15:39:08 +11001729 btp->bt_dev = bdev->bd_dev;
1730 btp->bt_bdev = bdev;
Dave Chinner430cbeb2010-12-02 16:30:55 +11001731 INIT_LIST_HEAD(&btp->bt_lru);
1732 spin_lock_init(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 if (xfs_setsize_buftarg_early(btp, bdev))
1734 goto error;
1735 if (xfs_mapping_buftarg(btp, bdev))
1736 goto error;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001737 if (xfs_alloc_delwrite_queue(btp, fsname))
David Chinnera6867a62006-01-11 15:37:58 +11001738 goto error;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001739 btp->bt_shrinker.shrink = xfs_buftarg_shrink;
1740 btp->bt_shrinker.seeks = DEFAULT_SEEKS;
1741 register_shrinker(&btp->bt_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 return btp;
1743
1744error:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001745 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 return NULL;
1747}
1748
1749
1750/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001751 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001754xfs_buf_delwri_queue(
1755 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 int unlock)
1757{
Nathan Scottce8e9222006-01-11 15:39:08 +11001758 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1759 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001760
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001761 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1762
Nathan Scottce8e9222006-01-11 15:39:08 +11001763 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
David Chinnera6867a62006-01-11 15:37:58 +11001765 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001767 if (!list_empty(&bp->b_list)) {
1768 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1769 if (unlock)
1770 atomic_dec(&bp->b_hold);
1771 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 }
1773
Dave Chinnerc9c12972010-01-11 11:49:59 +00001774 if (list_empty(dwq)) {
1775 /* start xfsbufd as it is about to have something to do */
1776 wake_up_process(bp->b_target->bt_task);
1777 }
1778
Nathan Scottce8e9222006-01-11 15:39:08 +11001779 bp->b_flags |= _XBF_DELWRI_Q;
1780 list_add_tail(&bp->b_list, dwq);
1781 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001782 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001785 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786}
1787
1788void
Nathan Scottce8e9222006-01-11 15:39:08 +11001789xfs_buf_delwri_dequeue(
1790 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
Nathan Scottce8e9222006-01-11 15:39:08 +11001792 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 int dequeued = 0;
1794
David Chinnera6867a62006-01-11 15:37:58 +11001795 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001796 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1797 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1798 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 dequeued = 1;
1800 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001801 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001802 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
1804 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001805 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001807 trace_xfs_buf_delwri_dequeue(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809
Dave Chinnerd808f612010-02-02 10:13:42 +11001810/*
1811 * If a delwri buffer needs to be pushed before it has aged out, then promote
1812 * it to the head of the delwri queue so that it will be flushed on the next
1813 * xfsbufd run. We do this by resetting the queuetime of the buffer to be older
1814 * than the age currently needed to flush the buffer. Hence the next time the
1815 * xfsbufd sees it is guaranteed to be considered old enough to flush.
1816 */
1817void
1818xfs_buf_delwri_promote(
1819 struct xfs_buf *bp)
1820{
1821 struct xfs_buftarg *btp = bp->b_target;
1822 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10) + 1;
1823
1824 ASSERT(bp->b_flags & XBF_DELWRI);
1825 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1826
1827 /*
1828 * Check the buffer age before locking the delayed write queue as we
1829 * don't need to promote buffers that are already past the flush age.
1830 */
1831 if (bp->b_queuetime < jiffies - age)
1832 return;
1833 bp->b_queuetime = jiffies - age;
1834 spin_lock(&btp->bt_delwrite_lock);
1835 list_move(&bp->b_list, &btp->bt_delwrite_queue);
1836 spin_unlock(&btp->bt_delwrite_lock);
1837}
1838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001840xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 struct workqueue_struct *queue)
1842{
1843 flush_workqueue(queue);
1844}
1845
David Chinner585e6d82007-02-10 18:32:29 +11001846/*
1847 * Move as many buffers as specified to the supplied list
1848 * idicating if we skipped any buffers to prevent deadlocks.
1849 */
1850STATIC int
1851xfs_buf_delwri_split(
1852 xfs_buftarg_t *target,
1853 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001854 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001855{
1856 xfs_buf_t *bp, *n;
1857 struct list_head *dwq = &target->bt_delwrite_queue;
1858 spinlock_t *dwlk = &target->bt_delwrite_lock;
1859 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001860 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001861
David Chinner5e6a07d2007-02-10 18:34:49 +11001862 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001863 INIT_LIST_HEAD(list);
1864 spin_lock(dwlk);
1865 list_for_each_entry_safe(bp, n, dwq, b_list) {
David Chinner585e6d82007-02-10 18:32:29 +11001866 ASSERT(bp->b_flags & XBF_DELWRI);
1867
Christoph Hellwig4d16e922010-06-23 18:11:15 +10001868 if (!XFS_BUF_ISPINNED(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001869 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001870 time_before(jiffies, bp->b_queuetime + age)) {
1871 xfs_buf_unlock(bp);
1872 break;
1873 }
1874
1875 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1876 _XBF_RUN_QUEUES);
1877 bp->b_flags |= XBF_WRITE;
1878 list_move_tail(&bp->b_list, list);
Dave Chinnerbfe27412010-11-08 08:55:05 +00001879 trace_xfs_buf_delwri_split(bp, _RET_IP_);
David Chinner585e6d82007-02-10 18:32:29 +11001880 } else
1881 skipped++;
1882 }
1883 spin_unlock(dwlk);
1884
1885 return skipped;
1886
1887}
1888
Dave Chinner089716a2010-01-26 15:13:25 +11001889/*
1890 * Compare function is more complex than it needs to be because
1891 * the return value is only 32 bits and we are doing comparisons
1892 * on 64 bit values
1893 */
1894static int
1895xfs_buf_cmp(
1896 void *priv,
1897 struct list_head *a,
1898 struct list_head *b)
1899{
1900 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1901 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1902 xfs_daddr_t diff;
1903
1904 diff = ap->b_bn - bp->b_bn;
1905 if (diff < 0)
1906 return -1;
1907 if (diff > 0)
1908 return 1;
1909 return 0;
1910}
1911
1912void
1913xfs_buf_delwri_sort(
1914 xfs_buftarg_t *target,
1915 struct list_head *list)
1916{
1917 list_sort(NULL, list, xfs_buf_cmp);
1918}
1919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001921xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001922 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
Dave Chinner089716a2010-01-26 15:13:25 +11001924 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 current->flags |= PF_MEMALLOC;
1927
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001928 set_freezable();
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 do {
Dave Chinnerc9c12972010-01-11 11:49:59 +00001931 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10);
1932 long tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10);
Dave Chinner089716a2010-01-26 15:13:25 +11001933 int count = 0;
1934 struct list_head tmp;
Dave Chinnerc9c12972010-01-11 11:49:59 +00001935
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001936 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001937 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001938 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001939 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001940 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Dave Chinnerc9c12972010-01-11 11:49:59 +00001943 /* sleep for a long time if there is nothing to do. */
1944 if (list_empty(&target->bt_delwrite_queue))
1945 tout = MAX_SCHEDULE_TIMEOUT;
1946 schedule_timeout_interruptible(tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Dave Chinnerc9c12972010-01-11 11:49:59 +00001948 xfs_buf_delwri_split(target, &tmp, age);
Dave Chinner089716a2010-01-26 15:13:25 +11001949 list_sort(NULL, &tmp, xfs_buf_cmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 while (!list_empty(&tmp)) {
Dave Chinner089716a2010-01-26 15:13:25 +11001951 struct xfs_buf *bp;
1952 bp = list_first_entry(&tmp, struct xfs_buf, b_list);
Nathan Scottce8e9222006-01-11 15:39:08 +11001953 list_del_init(&bp->b_list);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001954 xfs_bdstrat_cb(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001955 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 }
Nathan Scottf07c2252006-09-28 10:52:15 +10001957 if (count)
1958 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001960 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001962 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963}
1964
1965/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001966 * Go through all incore buffers, and release buffers if they belong to
1967 * the given device. This is used in filesystem error handling to
1968 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 */
1970int
1971xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001972 xfs_buftarg_t *target,
1973 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974{
Dave Chinner089716a2010-01-26 15:13:25 +11001975 xfs_buf_t *bp;
David Chinner585e6d82007-02-10 18:32:29 +11001976 int pincount = 0;
Dave Chinner089716a2010-01-26 15:13:25 +11001977 LIST_HEAD(tmp_list);
1978 LIST_HEAD(wait_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Dave Chinnerc626d172009-04-06 18:42:11 +02001980 xfs_buf_runall_queues(xfsconvertd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001981 xfs_buf_runall_queues(xfsdatad_workqueue);
1982 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
David Chinner5e6a07d2007-02-10 18:34:49 +11001984 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
Dave Chinner089716a2010-01-26 15:13:25 +11001985 pincount = xfs_buf_delwri_split(target, &tmp_list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 /*
Dave Chinner089716a2010-01-26 15:13:25 +11001988 * Dropped the delayed write list lock, now walk the temporary list.
1989 * All I/O is issued async and then if we need to wait for completion
1990 * we do that after issuing all the IO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 */
Dave Chinner089716a2010-01-26 15:13:25 +11001992 list_sort(NULL, &tmp_list, xfs_buf_cmp);
1993 while (!list_empty(&tmp_list)) {
1994 bp = list_first_entry(&tmp_list, struct xfs_buf, b_list);
David Chinner585e6d82007-02-10 18:32:29 +11001995 ASSERT(target == bp->b_target);
Dave Chinner089716a2010-01-26 15:13:25 +11001996 list_del_init(&bp->b_list);
1997 if (wait) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001998 bp->b_flags &= ~XBF_ASYNC;
Dave Chinner089716a2010-01-26 15:13:25 +11001999 list_add(&bp->b_list, &wait_list);
2000 }
Christoph Hellwig939d7232010-07-20 17:51:16 +10002001 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 }
2003
Dave Chinner089716a2010-01-26 15:13:25 +11002004 if (wait) {
2005 /* Expedite and wait for IO to complete. */
Nathan Scottf07c2252006-09-28 10:52:15 +10002006 blk_run_address_space(target->bt_mapping);
Dave Chinner089716a2010-01-26 15:13:25 +11002007 while (!list_empty(&wait_list)) {
2008 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
Nathan Scottf07c2252006-09-28 10:52:15 +10002009
Dave Chinner089716a2010-01-26 15:13:25 +11002010 list_del_init(&bp->b_list);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00002011 xfs_buf_iowait(bp);
Dave Chinner089716a2010-01-26 15:13:25 +11002012 xfs_buf_relse(bp);
2013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 }
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 return pincount;
2017}
2018
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002019int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11002020xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021{
Nathan Scott87582802006-03-14 13:18:19 +11002022 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
2023 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11002024 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002025 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002026
Dave Chinner51749e42010-09-08 09:00:22 +00002027 xfslogd_workqueue = alloc_workqueue("xfslogd",
Tejun Heo6370a6a2010-10-11 15:12:27 +02002028 WQ_MEM_RECLAIM | WQ_HIGHPRI, 1);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002029 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002030 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Rafael J. Wysockib4337692007-03-22 00:11:27 -08002032 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002033 if (!xfsdatad_workqueue)
2034 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Dave Chinnerc626d172009-04-06 18:42:11 +02002036 xfsconvertd_workqueue = create_workqueue("xfsconvertd");
2037 if (!xfsconvertd_workqueue)
2038 goto out_destroy_xfsdatad_workqueue;
2039
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002040 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Dave Chinnerc626d172009-04-06 18:42:11 +02002042 out_destroy_xfsdatad_workqueue:
2043 destroy_workqueue(xfsdatad_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002044 out_destroy_xfslogd_workqueue:
2045 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002046 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11002047 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002048 out:
Nathan Scott87582802006-03-14 13:18:19 +11002049 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050}
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052void
Nathan Scottce8e9222006-01-11 15:39:08 +11002053xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
Dave Chinnerc626d172009-04-06 18:42:11 +02002055 destroy_workqueue(xfsconvertd_workqueue);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002056 destroy_workqueue(xfsdatad_workqueue);
2057 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11002058 kmem_zone_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10002060
2061#ifdef CONFIG_KDB_MODULES
2062struct list_head *
2063xfs_get_buftarg_list(void)
2064{
2065 return &xfs_buftarg_list;
2066}
2067#endif