blob: 0a00d7a2fc2374549baa6a405a8ec5202cb4b0af [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/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100166 * Internal xfs_buf_t object manipulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 */
168
169STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100170_xfs_buf_initialize(
171 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100173 xfs_off_t range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 size_t range_length,
Nathan Scottce8e9222006-01-11 15:39:08 +1100175 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100178 * We don't want certain flags to appear in b_flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100180 flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Nathan Scottce8e9222006-01-11 15:39:08 +1100182 memset(bp, 0, sizeof(xfs_buf_t));
183 atomic_set(&bp->b_hold, 1);
David Chinnerb4dd3302008-08-13 16:36:11 +1000184 init_completion(&bp->b_iowait);
Nathan Scottce8e9222006-01-11 15:39:08 +1100185 INIT_LIST_HEAD(&bp->b_list);
Dave Chinner74f75a02010-09-24 19:59:04 +1000186 RB_CLEAR_NODE(&bp->b_rbnode);
Thomas Gleixnera731cd12010-09-07 14:33:15 +0000187 sema_init(&bp->b_sema, 0); /* held, no waiters */
Nathan Scottce8e9222006-01-11 15:39:08 +1100188 XB_SET_OWNER(bp);
189 bp->b_target = target;
190 bp->b_file_offset = range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 /*
192 * Set buffer_length and count_desired to the same value initially.
193 * I/O routines should use count_desired, which will be the same in
194 * most cases but may be reset (e.g. XFS recovery).
195 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100196 bp->b_buffer_length = bp->b_count_desired = range_length;
197 bp->b_flags = flags;
198 bp->b_bn = XFS_BUF_DADDR_NULL;
199 atomic_set(&bp->b_pin_count, 0);
200 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Nathan Scottce8e9222006-01-11 15:39:08 +1100202 XFS_STATS_INC(xb_create);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000203
204 trace_xfs_buf_init(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
207/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100208 * Allocate a page array capable of holding a specified number
209 * of pages, and point the page buf at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 */
211STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100212_xfs_buf_get_pages(
213 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 int page_count,
Nathan Scottce8e9222006-01-11 15:39:08 +1100215 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 /* Make sure that we have a page list */
Nathan Scottce8e9222006-01-11 15:39:08 +1100218 if (bp->b_pages == NULL) {
219 bp->b_offset = xfs_buf_poff(bp->b_file_offset);
220 bp->b_page_count = page_count;
221 if (page_count <= XB_PAGES) {
222 bp->b_pages = bp->b_page_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100224 bp->b_pages = kmem_alloc(sizeof(struct page *) *
225 page_count, xb_to_km(flags));
226 if (bp->b_pages == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return -ENOMEM;
228 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100229 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
231 return 0;
232}
233
234/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100235 * Frees b_pages if it was allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 */
237STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100238_xfs_buf_free_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 xfs_buf_t *bp)
240{
Nathan Scottce8e9222006-01-11 15:39:08 +1100241 if (bp->b_pages != bp->b_page_array) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000242 kmem_free(bp->b_pages);
Dave Chinner3fc98b12009-12-14 23:11:57 +0000243 bp->b_pages = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245}
246
247/*
248 * Releases the specified buffer.
249 *
250 * The modification state of any associated pages is left unchanged.
Nathan Scottce8e9222006-01-11 15:39:08 +1100251 * The buffer most not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 * hashed and refcounted buffers
253 */
254void
Nathan Scottce8e9222006-01-11 15:39:08 +1100255xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 xfs_buf_t *bp)
257{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000258 trace_xfs_buf_free(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000260 if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 uint i;
262
James Bottomley73c77e22010-01-25 11:42:24 -0600263 if (xfs_buf_is_vmapped(bp))
Alex Elder8a262e52010-03-16 18:55:56 +0000264 vm_unmap_ram(bp->b_addr - bp->b_offset,
265 bp->b_page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Nathan Scott948ecdb2006-09-28 11:03:13 +1000267 for (i = 0; i < bp->b_page_count; i++) {
268 struct page *page = bp->b_pages[i];
269
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000270 if (bp->b_flags & _XBF_PAGE_CACHE)
271 ASSERT(!PagePrivate(page));
Nathan Scott948ecdb2006-09-28 11:03:13 +1000272 page_cache_release(page);
273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
Dave Chinner3fc98b12009-12-14 23:11:57 +0000275 _xfs_buf_free_pages(bp);
Nathan Scottce8e9222006-01-11 15:39:08 +1100276 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
279/*
280 * Finds all pages for buffer in question and builds it's page list.
281 */
282STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100283_xfs_buf_lookup_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 xfs_buf_t *bp,
285 uint flags)
286{
Nathan Scottce8e9222006-01-11 15:39:08 +1100287 struct address_space *mapping = bp->b_target->bt_mapping;
288 size_t blocksize = bp->b_target->bt_bsize;
289 size_t size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100291 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 unsigned short page_count, i;
293 pgoff_t first;
Nathan Scott204ab252006-01-11 20:50:22 +1100294 xfs_off_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 int error;
296
Nathan Scottce8e9222006-01-11 15:39:08 +1100297 end = bp->b_file_offset + bp->b_buffer_length;
298 page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Nathan Scottce8e9222006-01-11 15:39:08 +1100300 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (unlikely(error))
302 return error;
Nathan Scottce8e9222006-01-11 15:39:08 +1100303 bp->b_flags |= _XBF_PAGE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Nathan Scottce8e9222006-01-11 15:39:08 +1100305 offset = bp->b_offset;
306 first = bp->b_file_offset >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Nathan Scottce8e9222006-01-11 15:39:08 +1100308 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 struct page *page;
310 uint retries = 0;
311
312 retry:
313 page = find_or_create_page(mapping, first + i, gfp_mask);
314 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100315 if (flags & XBF_READ_AHEAD) {
316 bp->b_page_count = i;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000317 for (i = 0; i < bp->b_page_count; i++)
318 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return -ENOMEM;
320 }
321
322 /*
323 * This could deadlock.
324 *
325 * But until all the XFS lowlevel code is revamped to
326 * handle buffer allocation failures we can't do much.
327 */
328 if (!(++retries % 100))
329 printk(KERN_ERR
330 "XFS: possible memory allocation "
331 "deadlock in %s (mode:0x%x)\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000332 __func__, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Nathan Scottce8e9222006-01-11 15:39:08 +1100334 XFS_STATS_INC(xb_page_retries);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200335 congestion_wait(BLK_RW_ASYNC, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 goto retry;
337 }
338
Nathan Scottce8e9222006-01-11 15:39:08 +1100339 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
342 size -= nbytes;
343
Nathan Scott948ecdb2006-09-28 11:03:13 +1000344 ASSERT(!PagePrivate(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (!PageUptodate(page)) {
346 page_count--;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000347 if (blocksize >= PAGE_CACHE_SIZE) {
348 if (flags & XBF_READ)
349 bp->b_flags |= _XBF_PAGE_LOCKED;
350 } else if (!PagePrivate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (test_page_region(page, offset, nbytes))
352 page_count++;
353 }
354 }
355
Nathan Scottce8e9222006-01-11 15:39:08 +1100356 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 offset = 0;
358 }
359
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000360 if (!(bp->b_flags & _XBF_PAGE_LOCKED)) {
361 for (i = 0; i < bp->b_page_count; i++)
362 unlock_page(bp->b_pages[i]);
363 }
364
Nathan Scottce8e9222006-01-11 15:39:08 +1100365 if (page_count == bp->b_page_count)
366 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return error;
369}
370
371/*
372 * Map buffer into kernel address-space if nessecary.
373 */
374STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100375_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 xfs_buf_t *bp,
377 uint flags)
378{
379 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100380 if (bp->b_page_count == 1) {
381 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
382 bp->b_flags |= XBF_MAPPED;
383 } else if (flags & XBF_MAPPED) {
Alex Elder8a262e52010-03-16 18:55:56 +0000384 bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
385 -1, PAGE_KERNEL);
Nathan Scottce8e9222006-01-11 15:39:08 +1100386 if (unlikely(bp->b_addr == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100388 bp->b_addr += bp->b_offset;
389 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391
392 return 0;
393}
394
395/*
396 * Finding and Reading Buffers
397 */
398
399/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100400 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 * a given range of an inode. The buffer is returned
402 * locked. If other overlapping buffers exist, they are
403 * released before the new buffer is created and locked,
404 * which may imply that this call will block until those buffers
405 * are unlocked. No I/O is implied by this call.
406 */
407xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100408_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab252006-01-11 20:50:22 +1100410 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100412 xfs_buf_flags_t flags,
413 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Nathan Scott204ab252006-01-11 20:50:22 +1100415 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 size_t range_length;
Dave Chinner74f75a02010-09-24 19:59:04 +1000417 struct xfs_perag *pag;
418 struct rb_node **rbp;
419 struct rb_node *parent;
420 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 range_base = (ioff << BBSHIFT);
423 range_length = (isize << BBSHIFT);
424
425 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100426 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab252006-01-11 20:50:22 +1100427 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Dave Chinner74f75a02010-09-24 19:59:04 +1000429 /* get tree root */
430 pag = xfs_perag_get(btp->bt_mount,
431 xfs_daddr_to_agno(btp->bt_mount, ioff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Dave Chinner74f75a02010-09-24 19:59:04 +1000433 /* walk tree */
434 spin_lock(&pag->pag_buf_lock);
435 rbp = &pag->pag_buf_tree.rb_node;
436 parent = NULL;
437 bp = NULL;
438 while (*rbp) {
439 parent = *rbp;
440 bp = rb_entry(parent, struct xfs_buf, b_rbnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Dave Chinner74f75a02010-09-24 19:59:04 +1000442 if (range_base < bp->b_file_offset)
443 rbp = &(*rbp)->rb_left;
444 else if (range_base > bp->b_file_offset)
445 rbp = &(*rbp)->rb_right;
446 else {
447 /*
448 * found a block offset match. If the range doesn't
449 * match, the only way this is allowed is if the buffer
450 * in the cache is stale and the transaction that made
451 * it stale has not yet committed. i.e. we are
452 * reallocating a busy extent. Skip this buffer and
453 * continue searching to the right for an exact match.
454 */
455 if (bp->b_buffer_length != range_length) {
456 ASSERT(bp->b_flags & XBF_STALE);
457 rbp = &(*rbp)->rb_right;
458 continue;
459 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100460 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 goto found;
462 }
463 }
464
465 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100466 if (new_bp) {
467 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 range_length, flags);
Dave Chinner74f75a02010-09-24 19:59:04 +1000469 rb_link_node(&new_bp->b_rbnode, parent, rbp);
470 rb_insert_color(&new_bp->b_rbnode, &pag->pag_buf_tree);
471 /* the buffer keeps the perag reference until it is freed */
472 new_bp->b_pag = pag;
473 spin_unlock(&pag->pag_buf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100475 XFS_STATS_INC(xb_miss_locked);
Dave Chinner74f75a02010-09-24 19:59:04 +1000476 spin_unlock(&pag->pag_buf_lock);
477 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100479 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481found:
Dave Chinner74f75a02010-09-24 19:59:04 +1000482 spin_unlock(&pag->pag_buf_lock);
483 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Dave Chinner90810b92010-11-30 15:16:16 +1100485 if (xfs_buf_cond_lock(bp)) {
486 /* failed, so wait for the lock if requested. */
Nathan Scottce8e9222006-01-11 15:39:08 +1100487 if (!(flags & XBF_TRYLOCK)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100488 xfs_buf_lock(bp);
489 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100491 xfs_buf_rele(bp);
492 XFS_STATS_INC(xb_busy_locked);
493 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496
Nathan Scottce8e9222006-01-11 15:39:08 +1100497 if (bp->b_flags & XBF_STALE) {
498 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
499 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000500 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000501
502 trace_xfs_buf_find(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100503 XFS_STATS_INC(xb_get_locked);
504 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
507/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100508 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * Storage in memory for all portions of the buffer will be allocated,
510 * although backing storage may not be.
511 */
512xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000513xfs_buf_get(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100515 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100517 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Nathan Scottce8e9222006-01-11 15:39:08 +1100519 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 int error = 0, i;
521
Nathan Scottce8e9222006-01-11 15:39:08 +1100522 new_bp = xfs_buf_allocate(flags);
523 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return NULL;
525
Nathan Scottce8e9222006-01-11 15:39:08 +1100526 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
527 if (bp == new_bp) {
528 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (error)
530 goto no_buffer;
531 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100532 xfs_buf_deallocate(new_bp);
533 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 return NULL;
535 }
536
Nathan Scottce8e9222006-01-11 15:39:08 +1100537 for (i = 0; i < bp->b_page_count; i++)
538 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Nathan Scottce8e9222006-01-11 15:39:08 +1100540 if (!(bp->b_flags & XBF_MAPPED)) {
541 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (unlikely(error)) {
543 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000544 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 goto no_buffer;
546 }
547 }
548
Nathan Scottce8e9222006-01-11 15:39:08 +1100549 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 /*
552 * Always fill in the block number now, the mapped cases can do
553 * their own overlay of this later.
554 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100555 bp->b_bn = ioff;
556 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000558 trace_xfs_buf_get(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100559 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100562 if (flags & (XBF_LOCK | XBF_TRYLOCK))
563 xfs_buf_unlock(bp);
564 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return NULL;
566}
567
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100568STATIC int
569_xfs_buf_read(
570 xfs_buf_t *bp,
571 xfs_buf_flags_t flags)
572{
573 int status;
574
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100575 ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE)));
576 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
577
578 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
579 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
580 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | \
581 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
582
583 status = xfs_buf_iorequest(bp);
Dave Chinnerec53d1d2010-07-20 17:52:59 +1000584 if (status || XFS_BUF_ISERROR(bp) || (flags & XBF_ASYNC))
585 return status;
586 return xfs_buf_iowait(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100587}
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000590xfs_buf_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100592 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100594 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Nathan Scottce8e9222006-01-11 15:39:08 +1100596 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Nathan Scottce8e9222006-01-11 15:39:08 +1100598 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000600 bp = xfs_buf_get(target, ioff, isize, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100601 if (bp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000602 trace_xfs_buf_read(bp, flags, _RET_IP_);
603
Nathan Scottce8e9222006-01-11 15:39:08 +1100604 if (!XFS_BUF_ISDONE(bp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100605 XFS_STATS_INC(xb_get_read);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100606 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100607 } else if (flags & XBF_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 /*
609 * Read ahead call which is already satisfied,
610 * drop the buffer
611 */
612 goto no_buffer;
613 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100615 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617 }
618
Nathan Scottce8e9222006-01-11 15:39:08 +1100619 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100622 if (flags & (XBF_LOCK | XBF_TRYLOCK))
623 xfs_buf_unlock(bp);
624 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return NULL;
626}
627
628/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100629 * If we are not low on memory then do the readahead in a deadlock
630 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 */
632void
Nathan Scottce8e9222006-01-11 15:39:08 +1100633xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100635 xfs_off_t ioff,
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000636 size_t isize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 struct backing_dev_info *bdi;
639
Nathan Scottce8e9222006-01-11 15:39:08 +1100640 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (bdi_read_congested(bdi))
642 return;
643
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000644 xfs_buf_read(target, ioff, isize,
645 XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD|XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
647
Dave Chinner5adc94c2010-09-24 21:58:31 +1000648/*
649 * Read an uncached buffer from disk. Allocates and returns a locked
650 * buffer containing the disk contents or nothing.
651 */
652struct xfs_buf *
653xfs_buf_read_uncached(
654 struct xfs_mount *mp,
655 struct xfs_buftarg *target,
656 xfs_daddr_t daddr,
657 size_t length,
658 int flags)
659{
660 xfs_buf_t *bp;
661 int error;
662
663 bp = xfs_buf_get_uncached(target, length, flags);
664 if (!bp)
665 return NULL;
666
667 /* set up the buffer for a read IO */
668 xfs_buf_lock(bp);
669 XFS_BUF_SET_ADDR(bp, daddr);
670 XFS_BUF_READ(bp);
671 XFS_BUF_BUSY(bp);
672
673 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000674 error = xfs_buf_iowait(bp);
Dave Chinner5adc94c2010-09-24 21:58:31 +1000675 if (error || bp->b_error) {
676 xfs_buf_relse(bp);
677 return NULL;
678 }
679 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
682xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100683xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 size_t len,
685 xfs_buftarg_t *target)
686{
Nathan Scottce8e9222006-01-11 15:39:08 +1100687 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Nathan Scottce8e9222006-01-11 15:39:08 +1100689 bp = xfs_buf_allocate(0);
690 if (bp)
691 _xfs_buf_initialize(bp, target, 0, len, 0);
692 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
695static inline struct page *
696mem_to_page(
697 void *addr)
698{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800699 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return virt_to_page(addr);
701 } else {
702 return vmalloc_to_page(addr);
703 }
704}
705
706int
Nathan Scottce8e9222006-01-11 15:39:08 +1100707xfs_buf_associate_memory(
708 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 void *mem,
710 size_t len)
711{
712 int rval;
713 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100714 unsigned long pageaddr;
715 unsigned long offset;
716 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 int page_count;
718
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100719 pageaddr = (unsigned long)mem & PAGE_CACHE_MASK;
720 offset = (unsigned long)mem - pageaddr;
721 buflen = PAGE_CACHE_ALIGN(len + offset);
722 page_count = buflen >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100725 if (bp->b_pages)
726 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Nathan Scottce8e9222006-01-11 15:39:08 +1100728 bp->b_pages = NULL;
729 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Christoph Hellwig36fae172009-07-18 18:14:58 -0400731 rval = _xfs_buf_get_pages(bp, page_count, XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (rval)
733 return rval;
734
Nathan Scottce8e9222006-01-11 15:39:08 +1100735 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100737 for (i = 0; i < bp->b_page_count; i++) {
738 bp->b_pages[i] = mem_to_page((void *)pageaddr);
739 pageaddr += PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100742 bp->b_count_desired = len;
743 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100744 bp->b_flags |= XBF_MAPPED;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000745 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 return 0;
748}
749
750xfs_buf_t *
Dave Chinner686865f2010-09-24 20:07:47 +1000751xfs_buf_get_uncached(
752 struct xfs_buftarg *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 size_t len,
Dave Chinner686865f2010-09-24 20:07:47 +1000754 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000756 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
757 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Nathan Scottce8e9222006-01-11 15:39:08 +1100760 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (unlikely(bp == NULL))
762 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100763 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000765 error = _xfs_buf_get_pages(bp, page_count, 0);
766 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 goto fail_free_buf;
768
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000769 for (i = 0; i < page_count; i++) {
Dave Chinner686865f2010-09-24 20:07:47 +1000770 bp->b_pages[i] = alloc_page(xb_to_gfp(flags));
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000771 if (!bp->b_pages[i])
772 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000774 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000776 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
777 if (unlikely(error)) {
778 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000779 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Nathan Scottce8e9222006-01-11 15:39:08 +1100783 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Dave Chinner686865f2010-09-24 20:07:47 +1000785 trace_xfs_buf_get_uncached(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000789 while (--i >= 0)
790 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000791 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000793 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 fail:
795 return NULL;
796}
797
798/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 * Increment reference count on buffer, to hold the buffer concurrently
800 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 * Must hold the buffer already to call this function.
802 */
803void
Nathan Scottce8e9222006-01-11 15:39:08 +1100804xfs_buf_hold(
805 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000807 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100808 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
811/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100812 * Releases a hold on the specified buffer. If the
813 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 */
815void
Nathan Scottce8e9222006-01-11 15:39:08 +1100816xfs_buf_rele(
817 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Dave Chinner74f75a02010-09-24 19:59:04 +1000819 struct xfs_perag *pag = bp->b_pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000821 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Dave Chinner74f75a02010-09-24 19:59:04 +1000823 if (!pag) {
Nathan Scottfad3aa12006-02-01 12:14:52 +1100824 ASSERT(!bp->b_relse);
Dave Chinner74f75a02010-09-24 19:59:04 +1000825 ASSERT(RB_EMPTY_NODE(&bp->b_rbnode));
Nathan Scottfad3aa12006-02-01 12:14:52 +1100826 if (atomic_dec_and_test(&bp->b_hold))
827 xfs_buf_free(bp);
828 return;
829 }
830
Dave Chinner74f75a02010-09-24 19:59:04 +1000831 ASSERT(!RB_EMPTY_NODE(&bp->b_rbnode));
Lachlan McIlroy37906892008-08-13 15:42:10 +1000832 ASSERT(atomic_read(&bp->b_hold) > 0);
Dave Chinner74f75a02010-09-24 19:59:04 +1000833 if (atomic_dec_and_lock(&bp->b_hold, &pag->pag_buf_lock)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100834 if (bp->b_relse) {
835 atomic_inc(&bp->b_hold);
Dave Chinner74f75a02010-09-24 19:59:04 +1000836 spin_unlock(&pag->pag_buf_lock);
837 bp->b_relse(bp);
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100838 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100839 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
Dave Chinner74f75a02010-09-24 19:59:04 +1000840 rb_erase(&bp->b_rbnode, &pag->pag_buf_tree);
841 spin_unlock(&pag->pag_buf_lock);
842 xfs_perag_put(pag);
Nathan Scottce8e9222006-01-11 15:39:08 +1100843 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
845 }
846}
847
848
849/*
850 * Mutual exclusion on buffers. Locking model:
851 *
852 * Buffers associated with inodes for which buffer locking
853 * is not enabled are not protected by semaphores, and are
854 * assumed to be exclusively owned by the caller. There is a
855 * spinlock in the buffer, used by the caller when concurrent
856 * access is possible.
857 */
858
859/*
Dave Chinner90810b92010-11-30 15:16:16 +1100860 * Locks a buffer object, if it is not already locked. Note that this in
861 * no way locks the underlying pages, so it is only useful for
862 * synchronizing concurrent use of buffer objects, not for synchronizing
863 * independent access to the underlying pages.
864 *
865 * If we come across a stale, pinned, locked buffer, we know that we are
866 * being asked to lock a buffer that has been reallocated. Because it is
867 * pinned, we know that the log has not been pushed to disk and hence it
868 * will still be locked. Rather than continuing to have trylock attempts
869 * fail until someone else pushes the log, push it ourselves before
870 * returning. This means that the xfsaild will not get stuck trying
871 * to push on stale inode buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 */
873int
Nathan Scottce8e9222006-01-11 15:39:08 +1100874xfs_buf_cond_lock(
875 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
877 int locked;
878
Nathan Scottce8e9222006-01-11 15:39:08 +1100879 locked = down_trylock(&bp->b_sema) == 0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000880 if (locked)
Nathan Scottce8e9222006-01-11 15:39:08 +1100881 XB_SET_OWNER(bp);
Dave Chinner90810b92010-11-30 15:16:16 +1100882 else if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
883 xfs_log_force(bp->b_target->bt_mount, 0);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000884
885 trace_xfs_buf_cond_lock(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100886 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889int
Nathan Scottce8e9222006-01-11 15:39:08 +1100890xfs_buf_lock_value(
891 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Stephen Rothwelladaa6932008-04-22 15:26:13 +1000893 return bp->b_sema.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100897 * Locks a buffer object.
898 * Note that this in no way locks the underlying pages, so it is only
899 * useful for synchronizing concurrent use of buffer objects, not for
900 * synchronizing independent access to the underlying pages.
Dave Chinnered3b4d62010-05-21 12:07:08 +1000901 *
902 * If we come across a stale, pinned, locked buffer, we know that we
903 * are being asked to lock a buffer that has been reallocated. Because
904 * it is pinned, we know that the log has not been pushed to disk and
905 * hence it will still be locked. Rather than sleeping until someone
906 * else pushes the log, push it ourselves before trying to get the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100908void
909xfs_buf_lock(
910 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000912 trace_xfs_buf_lock(bp, _RET_IP_);
913
Dave Chinnered3b4d62010-05-21 12:07:08 +1000914 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
Dave Chinnerebad8612010-09-22 10:47:20 +1000915 xfs_log_force(bp->b_target->bt_mount, 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100916 if (atomic_read(&bp->b_io_remaining))
917 blk_run_address_space(bp->b_target->bt_mapping);
918 down(&bp->b_sema);
919 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000920
921 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
924/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100925 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000926 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100927 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000928 * take a reference for the delwri queue because the unlocker is going to
929 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 */
931void
Nathan Scottce8e9222006-01-11 15:39:08 +1100932xfs_buf_unlock(
933 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Nathan Scottce8e9222006-01-11 15:39:08 +1100935 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
936 atomic_inc(&bp->b_hold);
937 bp->b_flags |= XBF_ASYNC;
938 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000939 }
940
Nathan Scottce8e9222006-01-11 15:39:08 +1100941 XB_CLEAR_OWNER(bp);
942 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000943
944 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Nathan Scottce8e9222006-01-11 15:39:08 +1100947STATIC void
948xfs_buf_wait_unpin(
949 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 DECLARE_WAITQUEUE (wait, current);
952
Nathan Scottce8e9222006-01-11 15:39:08 +1100953 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return;
955
Nathan Scottce8e9222006-01-11 15:39:08 +1100956 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 for (;;) {
958 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100959 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 break;
Nathan Scottce8e9222006-01-11 15:39:08 +1100961 if (atomic_read(&bp->b_io_remaining))
962 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 schedule();
964 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100965 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 set_current_state(TASK_RUNNING);
967}
968
969/*
970 * Buffer Utility Routines
971 */
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100974xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +0000975 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
David Howellsc4028952006-11-22 14:57:56 +0000977 xfs_buf_t *bp =
978 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Christoph Hellwig80f6c292010-08-18 05:29:11 -0400980 if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +1100981 (*(bp->b_iodone))(bp);
982 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 xfs_buf_relse(bp);
984}
985
986void
Nathan Scottce8e9222006-01-11 15:39:08 +1100987xfs_buf_ioend(
988 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 int schedule)
990{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000991 trace_xfs_buf_iodone(bp, _RET_IP_);
992
Lachlan McIlroy77be55a2007-11-23 16:31:00 +1100993 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +1100994 if (bp->b_error == 0)
995 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Nathan Scottce8e9222006-01-11 15:39:08 +1100997 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +0000999 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001000 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 } else {
David Howellsc4028952006-11-22 14:57:56 +00001002 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
1004 } else {
David Chinnerb4dd3302008-08-13 16:36:11 +10001005 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
1007}
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009void
Nathan Scottce8e9222006-01-11 15:39:08 +11001010xfs_buf_ioerror(
1011 xfs_buf_t *bp,
1012 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
1014 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001015 bp->b_error = (unsigned short)error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001016 trace_xfs_buf_ioerror(bp, error, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019int
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001020xfs_bwrite(
1021 struct xfs_mount *mp,
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001022 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Christoph Hellwig8c383662010-03-12 10:59:40 +00001024 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001026 bp->b_flags |= XBF_WRITE;
Christoph Hellwig8c383662010-03-12 10:59:40 +00001027 bp->b_flags &= ~(XBF_ASYNC | XBF_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001029 xfs_buf_delwri_dequeue(bp);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001030 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Christoph Hellwig8c383662010-03-12 10:59:40 +00001032 error = xfs_buf_iowait(bp);
1033 if (error)
1034 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1035 xfs_buf_relse(bp);
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001036 return error;
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001037}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001039void
1040xfs_bdwrite(
1041 void *mp,
1042 struct xfs_buf *bp)
1043{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001044 trace_xfs_buf_bdwrite(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001046 bp->b_flags &= ~XBF_READ;
1047 bp->b_flags |= (XBF_DELWRI | XBF_ASYNC);
1048
1049 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050}
1051
Christoph Hellwig4e234712010-01-13 22:17:56 +00001052/*
1053 * Called when we want to stop a buffer from getting written or read.
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001054 * We attach the EIO error, muck with its flags, and call xfs_buf_ioend
Christoph Hellwig4e234712010-01-13 22:17:56 +00001055 * so that the proper iodone callbacks get called.
1056 */
1057STATIC int
1058xfs_bioerror(
1059 xfs_buf_t *bp)
1060{
1061#ifdef XFSERRORDEBUG
1062 ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
1063#endif
1064
1065 /*
1066 * No need to wait until the buffer is unpinned, we aren't flushing it.
1067 */
1068 XFS_BUF_ERROR(bp, EIO);
1069
1070 /*
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001071 * We're calling xfs_buf_ioend, so delete XBF_DONE flag.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001072 */
1073 XFS_BUF_UNREAD(bp);
1074 XFS_BUF_UNDELAYWRITE(bp);
1075 XFS_BUF_UNDONE(bp);
1076 XFS_BUF_STALE(bp);
1077
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001078 xfs_buf_ioend(bp, 0);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001079
1080 return EIO;
1081}
1082
1083/*
1084 * Same as xfs_bioerror, except that we are releasing the buffer
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001085 * here ourselves, and avoiding the xfs_buf_ioend call.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001086 * This is meant for userdata errors; metadata bufs come with
1087 * iodone functions attached, so that we can track down errors.
1088 */
1089STATIC int
1090xfs_bioerror_relse(
1091 struct xfs_buf *bp)
1092{
1093 int64_t fl = XFS_BUF_BFLAGS(bp);
1094 /*
1095 * No need to wait until the buffer is unpinned.
1096 * We aren't flushing it.
1097 *
1098 * chunkhold expects B_DONE to be set, whether
1099 * we actually finish the I/O or not. We don't want to
1100 * change that interface.
1101 */
1102 XFS_BUF_UNREAD(bp);
1103 XFS_BUF_UNDELAYWRITE(bp);
1104 XFS_BUF_DONE(bp);
1105 XFS_BUF_STALE(bp);
1106 XFS_BUF_CLR_IODONE_FUNC(bp);
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001107 if (!(fl & XBF_ASYNC)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001108 /*
1109 * Mark b_error and B_ERROR _both_.
1110 * Lot's of chunkcache code assumes that.
1111 * There's no reason to mark error for
1112 * ASYNC buffers.
1113 */
1114 XFS_BUF_ERROR(bp, EIO);
1115 XFS_BUF_FINISH_IOWAIT(bp);
1116 } else {
1117 xfs_buf_relse(bp);
1118 }
1119
1120 return EIO;
1121}
1122
1123
1124/*
1125 * All xfs metadata buffers except log state machine buffers
1126 * get this attached as their b_bdstrat callback function.
1127 * This is so that we can catch a buffer
1128 * after prematurely unpinning it to forcibly shutdown the filesystem.
1129 */
1130int
1131xfs_bdstrat_cb(
1132 struct xfs_buf *bp)
1133{
Dave Chinnerebad8612010-09-22 10:47:20 +10001134 if (XFS_FORCED_SHUTDOWN(bp->b_target->bt_mount)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001135 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1136 /*
1137 * Metadata write that didn't get logged but
1138 * written delayed anyway. These aren't associated
1139 * with a transaction, and can be ignored.
1140 */
1141 if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
1142 return xfs_bioerror_relse(bp);
1143 else
1144 return xfs_bioerror(bp);
1145 }
1146
1147 xfs_buf_iorequest(bp);
1148 return 0;
1149}
1150
1151/*
1152 * Wrapper around bdstrat so that we can stop data from going to disk in case
1153 * we are shutting down the filesystem. Typically user data goes thru this
1154 * path; one of the exceptions is the superblock.
1155 */
1156void
1157xfsbdstrat(
1158 struct xfs_mount *mp,
1159 struct xfs_buf *bp)
1160{
1161 if (XFS_FORCED_SHUTDOWN(mp)) {
1162 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1163 xfs_bioerror_relse(bp);
1164 return;
1165 }
1166
1167 xfs_buf_iorequest(bp);
1168}
1169
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001170STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001171_xfs_buf_ioend(
1172 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 int schedule)
1174{
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001175 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1176 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Nathan Scottce8e9222006-01-11 15:39:08 +11001177 xfs_buf_ioend(bp, schedule);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
Al Viro782e3b32007-10-12 07:17:47 +01001181STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001182xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 int error)
1185{
Nathan Scottce8e9222006-01-11 15:39:08 +11001186 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1187 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001188 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Lachlan McIlroycfbe5262008-12-12 15:27:25 +11001190 xfs_buf_ioerror(bp, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
James Bottomley73c77e22010-01-25 11:42:24 -06001192 if (!error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
1193 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1194
Nathan Scotteedb5532005-09-02 16:39:56 +10001195 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 struct page *page = bvec->bv_page;
1197
Nathan Scott948ecdb2006-09-28 11:03:13 +10001198 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001199 if (unlikely(bp->b_error)) {
1200 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001201 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001202 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 SetPageUptodate(page);
1204 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001205 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1207 }
1208
Nathan Scotteedb5532005-09-02 16:39:56 +10001209 if (--bvec >= bio->bi_io_vec)
1210 prefetchw(&bvec->bv_page->flags);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001211
1212 if (bp->b_flags & _XBF_PAGE_LOCKED)
1213 unlock_page(page);
Nathan Scotteedb5532005-09-02 16:39:56 +10001214 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Nathan Scottce8e9222006-01-11 15:39:08 +11001216 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
1220STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001221_xfs_buf_ioapply(
1222 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
Christoph Hellwiga9759f22007-12-07 14:07:08 +11001224 int rw, map_i, total_nr_pages, nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001226 int offset = bp->b_offset;
1227 int size = bp->b_count_desired;
1228 sector_t sector = bp->b_bn;
1229 unsigned int blocksize = bp->b_target->bt_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Nathan Scottce8e9222006-01-11 15:39:08 +11001231 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 map_i = 0;
1233
Nathan Scottce8e9222006-01-11 15:39:08 +11001234 if (bp->b_flags & XBF_ORDERED) {
1235 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwig80f6c292010-08-18 05:29:11 -04001236 rw = WRITE_FLUSH_FUA;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001237 } else if (bp->b_flags & XBF_LOG_BUFFER) {
Nathan Scott51bdd702006-09-28 11:01:57 +10001238 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1239 bp->b_flags &= ~_XBF_RUN_QUEUES;
1240 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001241 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1242 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1243 bp->b_flags &= ~_XBF_RUN_QUEUES;
1244 rw = (bp->b_flags & XBF_WRITE) ? WRITE_META : READ_META;
Nathan Scott51bdd702006-09-28 11:01:57 +10001245 } else {
1246 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1247 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001248 }
1249
Nathan Scottce8e9222006-01-11 15:39:08 +11001250 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 * we populate up the whole page, and hence the other metadata
1252 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001253 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001255 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001256 ((bp->b_flags & (XBF_READ|_XBF_PAGE_LOCKED)) ==
1257 (XBF_READ|_XBF_PAGE_LOCKED)) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001258 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 bio = bio_alloc(GFP_NOIO, 1);
1260
Nathan Scottce8e9222006-01-11 15:39:08 +11001261 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001263 bio->bi_end_io = xfs_buf_bio_end_io;
1264 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Nathan Scottce8e9222006-01-11 15:39:08 +11001266 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 size = 0;
1268
Nathan Scottce8e9222006-01-11 15:39:08 +11001269 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 goto submit_io;
1272 }
1273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001275 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1277 if (nr_pages > total_nr_pages)
1278 nr_pages = total_nr_pages;
1279
1280 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001281 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001283 bio->bi_end_io = xfs_buf_bio_end_io;
1284 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001287 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 if (nbytes > size)
1290 nbytes = size;
1291
Nathan Scottce8e9222006-01-11 15:39:08 +11001292 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1293 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 break;
1295
1296 offset = 0;
1297 sector += nbytes >> BBSHIFT;
1298 size -= nbytes;
1299 total_nr_pages--;
1300 }
1301
1302submit_io:
1303 if (likely(bio->bi_size)) {
James Bottomley73c77e22010-01-25 11:42:24 -06001304 if (xfs_buf_is_vmapped(bp)) {
1305 flush_kernel_vmap_range(bp->b_addr,
1306 xfs_buf_vmap_len(bp));
1307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 submit_bio(rw, bio);
1309 if (size)
1310 goto next_chunk;
1311 } else {
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001312 /*
1313 * if we get here, no pages were added to the bio. However,
1314 * we can't just error out here - if the pages are locked then
1315 * we have to unlock them otherwise we can hang on a later
1316 * access to the page.
1317 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001318 xfs_buf_ioerror(bp, EIO);
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001319 if (bp->b_flags & _XBF_PAGE_LOCKED) {
1320 int i;
1321 for (i = 0; i < bp->b_page_count; i++)
1322 unlock_page(bp->b_pages[i]);
1323 }
1324 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
1326}
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328int
Nathan Scottce8e9222006-01-11 15:39:08 +11001329xfs_buf_iorequest(
1330 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001332 trace_xfs_buf_iorequest(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Nathan Scottce8e9222006-01-11 15:39:08 +11001334 if (bp->b_flags & XBF_DELWRI) {
1335 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 return 0;
1337 }
1338
Nathan Scottce8e9222006-01-11 15:39:08 +11001339 if (bp->b_flags & XBF_WRITE) {
1340 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
1342
Nathan Scottce8e9222006-01-11 15:39:08 +11001343 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 /* Set the count to 1 initially, this will stop an I/O
1346 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001347 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001349 atomic_set(&bp->b_io_remaining, 1);
1350 _xfs_buf_ioapply(bp);
1351 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Nathan Scottce8e9222006-01-11 15:39:08 +11001353 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return 0;
1355}
1356
1357/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001358 * Waits for I/O to complete on the buffer supplied.
1359 * It returns immediately if no I/O is pending.
1360 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 */
1362int
Nathan Scottce8e9222006-01-11 15:39:08 +11001363xfs_buf_iowait(
1364 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001366 trace_xfs_buf_iowait(bp, _RET_IP_);
1367
Nathan Scottce8e9222006-01-11 15:39:08 +11001368 if (atomic_read(&bp->b_io_remaining))
1369 blk_run_address_space(bp->b_target->bt_mapping);
David Chinnerb4dd3302008-08-13 16:36:11 +10001370 wait_for_completion(&bp->b_iowait);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001371
1372 trace_xfs_buf_iowait_done(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +11001373 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
Nathan Scottce8e9222006-01-11 15:39:08 +11001376xfs_caddr_t
1377xfs_buf_offset(
1378 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 size_t offset)
1380{
1381 struct page *page;
1382
Nathan Scottce8e9222006-01-11 15:39:08 +11001383 if (bp->b_flags & XBF_MAPPED)
1384 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Nathan Scottce8e9222006-01-11 15:39:08 +11001386 offset += bp->b_offset;
1387 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1388 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
1390
1391/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 * Move data into or out of a buffer.
1393 */
1394void
Nathan Scottce8e9222006-01-11 15:39:08 +11001395xfs_buf_iomove(
1396 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 size_t boff, /* starting buffer offset */
1398 size_t bsize, /* length to copy */
Dave Chinnerb9c48642010-01-20 10:47:39 +11001399 void *data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001400 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
1402 size_t bend, cpoff, csize;
1403 struct page *page;
1404
1405 bend = boff + bsize;
1406 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001407 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1408 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001410 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1413
1414 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001415 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 memset(page_address(page) + cpoff, 0, csize);
1417 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001418 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 memcpy(data, page_address(page) + cpoff, csize);
1420 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001421 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 memcpy(page_address(page) + cpoff, data, csize);
1423 }
1424
1425 boff += csize;
1426 data += csize;
1427 }
1428}
1429
1430/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001431 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 */
1433
1434/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001435 * Wait for any bufs with callbacks that have been submitted but
1436 * have not yet returned... walk the hash list for the target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 */
1438void
1439xfs_wait_buftarg(
Dave Chinner74f75a02010-09-24 19:59:04 +10001440 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
Dave Chinner74f75a02010-09-24 19:59:04 +10001442 struct xfs_perag *pag;
1443 uint i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Dave Chinner74f75a02010-09-24 19:59:04 +10001445 for (i = 0; i < btp->bt_mount->m_sb.sb_agcount; i++) {
1446 pag = xfs_perag_get(btp->bt_mount, i);
1447 spin_lock(&pag->pag_buf_lock);
1448 while (rb_first(&pag->pag_buf_tree)) {
1449 spin_unlock(&pag->pag_buf_lock);
Dave Chinner26af6552010-09-22 10:47:20 +10001450 delay(100);
Dave Chinner74f75a02010-09-24 19:59:04 +10001451 spin_lock(&pag->pag_buf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 }
Dave Chinner74f75a02010-09-24 19:59:04 +10001453 spin_unlock(&pag->pag_buf_lock);
1454 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456}
1457
Dave Chinnerff57ab22010-11-30 17:27:57 +11001458int
1459xfs_buftarg_shrink(
1460 struct shrinker *shrink,
1461 int nr_to_scan,
1462 gfp_t mask)
David Chinnera6867a62006-01-11 15:37:58 +11001463{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001464 struct xfs_buftarg *btp = container_of(shrink,
1465 struct xfs_buftarg, bt_shrinker);
1466 if (nr_to_scan) {
1467 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
1468 return -1;
1469 if (list_empty(&btp->bt_delwrite_queue))
1470 return -1;
1471 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
1472 wake_up_process(btp->bt_task);
1473 }
1474 return list_empty(&btp->bt_delwrite_queue) ? -1 : 1;
David Chinnera6867a62006-01-11 15:37:58 +11001475}
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477void
1478xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001479 struct xfs_mount *mp,
1480 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001482 unregister_shrinker(&btp->bt_shrinker);
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 xfs_flush_buftarg(btp, 1);
Christoph Hellwigb7963132009-03-03 14:48:37 -05001485 if (mp->m_flags & XFS_MOUNT_BARRIER)
1486 xfs_blkdev_issue_flush(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001487 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001488
David Chinnera6867a62006-01-11 15:37:58 +11001489 kthread_stop(btp->bt_task);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001490 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493STATIC int
1494xfs_setsize_buftarg_flags(
1495 xfs_buftarg_t *btp,
1496 unsigned int blocksize,
1497 unsigned int sectorsize,
1498 int verbose)
1499{
Nathan Scottce8e9222006-01-11 15:39:08 +11001500 btp->bt_bsize = blocksize;
1501 btp->bt_sshift = ffs(sectorsize) - 1;
1502 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Nathan Scottce8e9222006-01-11 15:39:08 +11001504 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 printk(KERN_WARNING
1506 "XFS: Cannot set_blocksize to %u on device %s\n",
1507 sectorsize, XFS_BUFTARG_NAME(btp));
1508 return EINVAL;
1509 }
1510
1511 if (verbose &&
1512 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1513 printk(KERN_WARNING
1514 "XFS: %u byte sectors in use on device %s. "
1515 "This is suboptimal; %u or greater is ideal.\n",
1516 sectorsize, XFS_BUFTARG_NAME(btp),
1517 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1518 }
1519
1520 return 0;
1521}
1522
1523/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001524 * When allocating the initial buffer target we have not yet
1525 * read in the superblock, so don't know what sized sectors
1526 * are being used is at this early stage. Play safe.
1527 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528STATIC int
1529xfs_setsize_buftarg_early(
1530 xfs_buftarg_t *btp,
1531 struct block_device *bdev)
1532{
1533 return xfs_setsize_buftarg_flags(btp,
Martin K. Petersene1defc42009-05-22 17:17:49 -04001534 PAGE_CACHE_SIZE, bdev_logical_block_size(bdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535}
1536
1537int
1538xfs_setsize_buftarg(
1539 xfs_buftarg_t *btp,
1540 unsigned int blocksize,
1541 unsigned int sectorsize)
1542{
1543 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1544}
1545
1546STATIC int
1547xfs_mapping_buftarg(
1548 xfs_buftarg_t *btp,
1549 struct block_device *bdev)
1550{
1551 struct backing_dev_info *bdi;
1552 struct inode *inode;
1553 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001554 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001556 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 };
1558
1559 inode = new_inode(bdev->bd_inode->i_sb);
1560 if (!inode) {
1561 printk(KERN_WARNING
1562 "XFS: Cannot allocate mapping inode for device %s\n",
1563 XFS_BUFTARG_NAME(btp));
1564 return ENOMEM;
1565 }
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001566 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 inode->i_mode = S_IFBLK;
1568 inode->i_bdev = bdev;
1569 inode->i_rdev = bdev->bd_dev;
1570 bdi = blk_get_backing_dev_info(bdev);
1571 if (!bdi)
1572 bdi = &default_backing_dev_info;
1573 mapping = &inode->i_data;
1574 mapping->a_ops = &mapping_aops;
1575 mapping->backing_dev_info = bdi;
1576 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001577 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 return 0;
1579}
1580
David Chinnera6867a62006-01-11 15:37:58 +11001581STATIC int
1582xfs_alloc_delwrite_queue(
Jan Engelhardte2a07812010-03-23 09:52:55 +11001583 xfs_buftarg_t *btp,
1584 const char *fsname)
David Chinnera6867a62006-01-11 15:37:58 +11001585{
David Chinnera6867a62006-01-11 15:37:58 +11001586 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
Eric Sandeen007c61c2007-10-11 17:43:56 +10001587 spin_lock_init(&btp->bt_delwrite_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001588 btp->bt_flags = 0;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001589 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd/%s", fsname);
Dave Chinnerff57ab22010-11-30 17:27:57 +11001590 if (IS_ERR(btp->bt_task))
1591 return PTR_ERR(btp->bt_task);
1592 return 0;
David Chinnera6867a62006-01-11 15:37:58 +11001593}
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595xfs_buftarg_t *
1596xfs_alloc_buftarg(
Dave Chinnerebad8612010-09-22 10:47:20 +10001597 struct xfs_mount *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 struct block_device *bdev,
Jan Engelhardte2a07812010-03-23 09:52:55 +11001599 int external,
1600 const char *fsname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
1602 xfs_buftarg_t *btp;
1603
1604 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1605
Dave Chinnerebad8612010-09-22 10:47:20 +10001606 btp->bt_mount = mp;
Nathan Scottce8e9222006-01-11 15:39:08 +11001607 btp->bt_dev = bdev->bd_dev;
1608 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if (xfs_setsize_buftarg_early(btp, bdev))
1610 goto error;
1611 if (xfs_mapping_buftarg(btp, bdev))
1612 goto error;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001613 if (xfs_alloc_delwrite_queue(btp, fsname))
David Chinnera6867a62006-01-11 15:37:58 +11001614 goto error;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001615 btp->bt_shrinker.shrink = xfs_buftarg_shrink;
1616 btp->bt_shrinker.seeks = DEFAULT_SEEKS;
1617 register_shrinker(&btp->bt_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 return btp;
1619
1620error:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001621 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 return NULL;
1623}
1624
1625
1626/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001627 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001630xfs_buf_delwri_queue(
1631 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 int unlock)
1633{
Nathan Scottce8e9222006-01-11 15:39:08 +11001634 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1635 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001636
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001637 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1638
Nathan Scottce8e9222006-01-11 15:39:08 +11001639 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
David Chinnera6867a62006-01-11 15:37:58 +11001641 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001643 if (!list_empty(&bp->b_list)) {
1644 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1645 if (unlock)
1646 atomic_dec(&bp->b_hold);
1647 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
1649
Dave Chinnerc9c12972010-01-11 11:49:59 +00001650 if (list_empty(dwq)) {
1651 /* start xfsbufd as it is about to have something to do */
1652 wake_up_process(bp->b_target->bt_task);
1653 }
1654
Nathan Scottce8e9222006-01-11 15:39:08 +11001655 bp->b_flags |= _XBF_DELWRI_Q;
1656 list_add_tail(&bp->b_list, dwq);
1657 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001658 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001661 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662}
1663
1664void
Nathan Scottce8e9222006-01-11 15:39:08 +11001665xfs_buf_delwri_dequeue(
1666 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
Nathan Scottce8e9222006-01-11 15:39:08 +11001668 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 int dequeued = 0;
1670
David Chinnera6867a62006-01-11 15:37:58 +11001671 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001672 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1673 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1674 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 dequeued = 1;
1676 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001677 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001678 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001681 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001683 trace_xfs_buf_delwri_dequeue(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684}
1685
Dave Chinnerd808f612010-02-02 10:13:42 +11001686/*
1687 * If a delwri buffer needs to be pushed before it has aged out, then promote
1688 * it to the head of the delwri queue so that it will be flushed on the next
1689 * xfsbufd run. We do this by resetting the queuetime of the buffer to be older
1690 * than the age currently needed to flush the buffer. Hence the next time the
1691 * xfsbufd sees it is guaranteed to be considered old enough to flush.
1692 */
1693void
1694xfs_buf_delwri_promote(
1695 struct xfs_buf *bp)
1696{
1697 struct xfs_buftarg *btp = bp->b_target;
1698 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10) + 1;
1699
1700 ASSERT(bp->b_flags & XBF_DELWRI);
1701 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1702
1703 /*
1704 * Check the buffer age before locking the delayed write queue as we
1705 * don't need to promote buffers that are already past the flush age.
1706 */
1707 if (bp->b_queuetime < jiffies - age)
1708 return;
1709 bp->b_queuetime = jiffies - age;
1710 spin_lock(&btp->bt_delwrite_lock);
1711 list_move(&bp->b_list, &btp->bt_delwrite_queue);
1712 spin_unlock(&btp->bt_delwrite_lock);
1713}
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001716xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 struct workqueue_struct *queue)
1718{
1719 flush_workqueue(queue);
1720}
1721
David Chinner585e6d82007-02-10 18:32:29 +11001722/*
1723 * Move as many buffers as specified to the supplied list
1724 * idicating if we skipped any buffers to prevent deadlocks.
1725 */
1726STATIC int
1727xfs_buf_delwri_split(
1728 xfs_buftarg_t *target,
1729 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001730 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001731{
1732 xfs_buf_t *bp, *n;
1733 struct list_head *dwq = &target->bt_delwrite_queue;
1734 spinlock_t *dwlk = &target->bt_delwrite_lock;
1735 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001736 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001737
David Chinner5e6a07d2007-02-10 18:34:49 +11001738 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001739 INIT_LIST_HEAD(list);
1740 spin_lock(dwlk);
1741 list_for_each_entry_safe(bp, n, dwq, b_list) {
David Chinner585e6d82007-02-10 18:32:29 +11001742 ASSERT(bp->b_flags & XBF_DELWRI);
1743
Christoph Hellwig4d16e922010-06-23 18:11:15 +10001744 if (!XFS_BUF_ISPINNED(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001745 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001746 time_before(jiffies, bp->b_queuetime + age)) {
1747 xfs_buf_unlock(bp);
1748 break;
1749 }
1750
1751 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1752 _XBF_RUN_QUEUES);
1753 bp->b_flags |= XBF_WRITE;
1754 list_move_tail(&bp->b_list, list);
Dave Chinnerbfe27412010-11-08 08:55:05 +00001755 trace_xfs_buf_delwri_split(bp, _RET_IP_);
David Chinner585e6d82007-02-10 18:32:29 +11001756 } else
1757 skipped++;
1758 }
1759 spin_unlock(dwlk);
1760
1761 return skipped;
1762
1763}
1764
Dave Chinner089716a2010-01-26 15:13:25 +11001765/*
1766 * Compare function is more complex than it needs to be because
1767 * the return value is only 32 bits and we are doing comparisons
1768 * on 64 bit values
1769 */
1770static int
1771xfs_buf_cmp(
1772 void *priv,
1773 struct list_head *a,
1774 struct list_head *b)
1775{
1776 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1777 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1778 xfs_daddr_t diff;
1779
1780 diff = ap->b_bn - bp->b_bn;
1781 if (diff < 0)
1782 return -1;
1783 if (diff > 0)
1784 return 1;
1785 return 0;
1786}
1787
1788void
1789xfs_buf_delwri_sort(
1790 xfs_buftarg_t *target,
1791 struct list_head *list)
1792{
1793 list_sort(NULL, list, xfs_buf_cmp);
1794}
1795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001797xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001798 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799{
Dave Chinner089716a2010-01-26 15:13:25 +11001800 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 current->flags |= PF_MEMALLOC;
1803
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001804 set_freezable();
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 do {
Dave Chinnerc9c12972010-01-11 11:49:59 +00001807 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10);
1808 long tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10);
Dave Chinner089716a2010-01-26 15:13:25 +11001809 int count = 0;
1810 struct list_head tmp;
Dave Chinnerc9c12972010-01-11 11:49:59 +00001811
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001812 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001813 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001814 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001815 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001816 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Dave Chinnerc9c12972010-01-11 11:49:59 +00001819 /* sleep for a long time if there is nothing to do. */
1820 if (list_empty(&target->bt_delwrite_queue))
1821 tout = MAX_SCHEDULE_TIMEOUT;
1822 schedule_timeout_interruptible(tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Dave Chinnerc9c12972010-01-11 11:49:59 +00001824 xfs_buf_delwri_split(target, &tmp, age);
Dave Chinner089716a2010-01-26 15:13:25 +11001825 list_sort(NULL, &tmp, xfs_buf_cmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 while (!list_empty(&tmp)) {
Dave Chinner089716a2010-01-26 15:13:25 +11001827 struct xfs_buf *bp;
1828 bp = list_first_entry(&tmp, struct xfs_buf, b_list);
Nathan Scottce8e9222006-01-11 15:39:08 +11001829 list_del_init(&bp->b_list);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001830 xfs_bdstrat_cb(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001831 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 }
Nathan Scottf07c2252006-09-28 10:52:15 +10001833 if (count)
1834 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001836 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001838 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
1840
1841/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001842 * Go through all incore buffers, and release buffers if they belong to
1843 * the given device. This is used in filesystem error handling to
1844 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 */
1846int
1847xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001848 xfs_buftarg_t *target,
1849 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
Dave Chinner089716a2010-01-26 15:13:25 +11001851 xfs_buf_t *bp;
David Chinner585e6d82007-02-10 18:32:29 +11001852 int pincount = 0;
Dave Chinner089716a2010-01-26 15:13:25 +11001853 LIST_HEAD(tmp_list);
1854 LIST_HEAD(wait_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Dave Chinnerc626d172009-04-06 18:42:11 +02001856 xfs_buf_runall_queues(xfsconvertd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001857 xfs_buf_runall_queues(xfsdatad_workqueue);
1858 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
David Chinner5e6a07d2007-02-10 18:34:49 +11001860 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
Dave Chinner089716a2010-01-26 15:13:25 +11001861 pincount = xfs_buf_delwri_split(target, &tmp_list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863 /*
Dave Chinner089716a2010-01-26 15:13:25 +11001864 * Dropped the delayed write list lock, now walk the temporary list.
1865 * All I/O is issued async and then if we need to wait for completion
1866 * we do that after issuing all the IO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 */
Dave Chinner089716a2010-01-26 15:13:25 +11001868 list_sort(NULL, &tmp_list, xfs_buf_cmp);
1869 while (!list_empty(&tmp_list)) {
1870 bp = list_first_entry(&tmp_list, struct xfs_buf, b_list);
David Chinner585e6d82007-02-10 18:32:29 +11001871 ASSERT(target == bp->b_target);
Dave Chinner089716a2010-01-26 15:13:25 +11001872 list_del_init(&bp->b_list);
1873 if (wait) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001874 bp->b_flags &= ~XBF_ASYNC;
Dave Chinner089716a2010-01-26 15:13:25 +11001875 list_add(&bp->b_list, &wait_list);
1876 }
Christoph Hellwig939d7232010-07-20 17:51:16 +10001877 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 }
1879
Dave Chinner089716a2010-01-26 15:13:25 +11001880 if (wait) {
1881 /* Expedite and wait for IO to complete. */
Nathan Scottf07c2252006-09-28 10:52:15 +10001882 blk_run_address_space(target->bt_mapping);
Dave Chinner089716a2010-01-26 15:13:25 +11001883 while (!list_empty(&wait_list)) {
1884 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
Nathan Scottf07c2252006-09-28 10:52:15 +10001885
Dave Chinner089716a2010-01-26 15:13:25 +11001886 list_del_init(&bp->b_list);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001887 xfs_buf_iowait(bp);
Dave Chinner089716a2010-01-26 15:13:25 +11001888 xfs_buf_relse(bp);
1889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 }
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return pincount;
1893}
1894
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001895int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001896xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
Nathan Scott87582802006-03-14 13:18:19 +11001898 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1899 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001900 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001901 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001902
Dave Chinner51749e42010-09-08 09:00:22 +00001903 xfslogd_workqueue = alloc_workqueue("xfslogd",
Tejun Heo6370a6a2010-10-11 15:12:27 +02001904 WQ_MEM_RECLAIM | WQ_HIGHPRI, 1);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001905 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001906 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001908 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001909 if (!xfsdatad_workqueue)
1910 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Dave Chinnerc626d172009-04-06 18:42:11 +02001912 xfsconvertd_workqueue = create_workqueue("xfsconvertd");
1913 if (!xfsconvertd_workqueue)
1914 goto out_destroy_xfsdatad_workqueue;
1915
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001916 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Dave Chinnerc626d172009-04-06 18:42:11 +02001918 out_destroy_xfsdatad_workqueue:
1919 destroy_workqueue(xfsdatad_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001920 out_destroy_xfslogd_workqueue:
1921 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001922 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001923 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001924 out:
Nathan Scott87582802006-03-14 13:18:19 +11001925 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926}
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928void
Nathan Scottce8e9222006-01-11 15:39:08 +11001929xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930{
Dave Chinnerc626d172009-04-06 18:42:11 +02001931 destroy_workqueue(xfsconvertd_workqueue);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001932 destroy_workqueue(xfsdatad_workqueue);
1933 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001934 kmem_zone_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001936
1937#ifdef CONFIG_KDB_MODULES
1938struct list_head *
1939xfs_get_buftarg_list(void)
1940{
1941 return &xfs_buftarg_list;
1942}
1943#endif