blob: b93ea3342281ab92e09e4d32cd227a9be2dde447 [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 *);
Dave Chinner7f8275d2010-07-19 14:56:17 +100047STATIC int xfsbufd_wakeup(struct shrinker *, int, gfp_t);
Nathan Scottce8e9222006-01-11 15:39:08 +110048STATIC void xfs_buf_delwri_queue(xfs_buf_t *, int);
Rusty Russell8e1f9362007-07-17 04:03:17 -070049static struct shrinker xfs_buf_shake = {
50 .shrink = xfsbufd_wakeup,
51 .seeks = DEFAULT_SEEKS,
52};
Christoph Hellwig23ea4032005-06-21 15:14:01 +100053
David Chinner7989cb82007-02-10 18:34:56 +110054static struct workqueue_struct *xfslogd_workqueue;
Christoph Hellwig0829c362005-09-02 16:58:49 +100055struct workqueue_struct *xfsdatad_workqueue;
Dave Chinnerc626d172009-04-06 18:42:11 +020056struct workqueue_struct *xfsconvertd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Nathan Scottce8e9222006-01-11 15:39:08 +110058#ifdef XFS_BUF_LOCK_TRACKING
59# define XB_SET_OWNER(bp) ((bp)->b_last_holder = current->pid)
60# define XB_CLEAR_OWNER(bp) ((bp)->b_last_holder = -1)
61# define XB_GET_OWNER(bp) ((bp)->b_last_holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#else
Nathan Scottce8e9222006-01-11 15:39:08 +110063# define XB_SET_OWNER(bp) do { } while (0)
64# define XB_CLEAR_OWNER(bp) do { } while (0)
65# define XB_GET_OWNER(bp) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#endif
67
Nathan Scottce8e9222006-01-11 15:39:08 +110068#define xb_to_gfp(flags) \
69 ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : \
70 ((flags) & XBF_DONT_BLOCK) ? GFP_NOFS : GFP_KERNEL) | __GFP_NOWARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Nathan Scottce8e9222006-01-11 15:39:08 +110072#define xb_to_km(flags) \
73 (((flags) & XBF_DONT_BLOCK) ? KM_NOFS : KM_SLEEP)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Nathan Scottce8e9222006-01-11 15:39:08 +110075#define xfs_buf_allocate(flags) \
76 kmem_zone_alloc(xfs_buf_zone, xb_to_km(flags))
77#define xfs_buf_deallocate(bp) \
78 kmem_zone_free(xfs_buf_zone, (bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
James Bottomley73c77e22010-01-25 11:42:24 -060080static inline int
81xfs_buf_is_vmapped(
82 struct xfs_buf *bp)
83{
84 /*
85 * Return true if the buffer is vmapped.
86 *
87 * The XBF_MAPPED flag is set if the buffer should be mapped, but the
88 * code is clever enough to know it doesn't have to map a single page,
89 * so the check has to be both for XBF_MAPPED and bp->b_page_count > 1.
90 */
91 return (bp->b_flags & XBF_MAPPED) && bp->b_page_count > 1;
92}
93
94static inline int
95xfs_buf_vmap_len(
96 struct xfs_buf *bp)
97{
98 return (bp->b_page_count * PAGE_SIZE) - bp->b_offset;
99}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100102 * Page Region interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 *
Nathan Scottce8e9222006-01-11 15:39:08 +1100104 * For pages in filesystems where the blocksize is smaller than the
105 * pagesize, we use the page->private field (long) to hold a bitmap
106 * of uptodate regions within the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 *
Nathan Scottce8e9222006-01-11 15:39:08 +1100108 * Each such region is "bytes per page / bits per long" bytes long.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 *
Nathan Scottce8e9222006-01-11 15:39:08 +1100110 * NBPPR == number-of-bytes-per-page-region
111 * BTOPR == bytes-to-page-region (rounded up)
112 * BTOPRT == bytes-to-page-region-truncated (rounded down)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
114#if (BITS_PER_LONG == 32)
115#define PRSHIFT (PAGE_CACHE_SHIFT - 5) /* (32 == 1<<5) */
116#elif (BITS_PER_LONG == 64)
117#define PRSHIFT (PAGE_CACHE_SHIFT - 6) /* (64 == 1<<6) */
118#else
119#error BITS_PER_LONG must be 32 or 64
120#endif
121#define NBPPR (PAGE_CACHE_SIZE/BITS_PER_LONG)
122#define BTOPR(b) (((unsigned int)(b) + (NBPPR - 1)) >> PRSHIFT)
123#define BTOPRT(b) (((unsigned int)(b) >> PRSHIFT))
124
125STATIC unsigned long
126page_region_mask(
127 size_t offset,
128 size_t length)
129{
130 unsigned long mask;
131 int first, final;
132
133 first = BTOPR(offset);
134 final = BTOPRT(offset + length - 1);
135 first = min(first, final);
136
137 mask = ~0UL;
138 mask <<= BITS_PER_LONG - (final - first);
139 mask >>= BITS_PER_LONG - (final);
140
141 ASSERT(offset + length <= PAGE_CACHE_SIZE);
142 ASSERT((final - first) < BITS_PER_LONG && (final - first) >= 0);
143
144 return mask;
145}
146
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000147STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148set_page_region(
149 struct page *page,
150 size_t offset,
151 size_t length)
152{
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700153 set_page_private(page,
154 page_private(page) | page_region_mask(offset, length));
155 if (page_private(page) == ~0UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 SetPageUptodate(page);
157}
158
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000159STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160test_page_region(
161 struct page *page,
162 size_t offset,
163 size_t length)
164{
165 unsigned long mask = page_region_mask(offset, length);
166
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700167 return (mask && (page_private(page) & mask) == mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
170/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100171 * Internal xfs_buf_t object manipulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
173
174STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100175_xfs_buf_initialize(
176 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100178 xfs_off_t range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 size_t range_length,
Nathan Scottce8e9222006-01-11 15:39:08 +1100180 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100183 * We don't want certain flags to appear in b_flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100185 flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Nathan Scottce8e9222006-01-11 15:39:08 +1100187 memset(bp, 0, sizeof(xfs_buf_t));
188 atomic_set(&bp->b_hold, 1);
David Chinnerb4dd3302008-08-13 16:36:11 +1000189 init_completion(&bp->b_iowait);
Nathan Scottce8e9222006-01-11 15:39:08 +1100190 INIT_LIST_HEAD(&bp->b_list);
191 INIT_LIST_HEAD(&bp->b_hash_list);
192 init_MUTEX_LOCKED(&bp->b_sema); /* held, no waiters */
193 XB_SET_OWNER(bp);
194 bp->b_target = target;
195 bp->b_file_offset = range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 /*
197 * Set buffer_length and count_desired to the same value initially.
198 * I/O routines should use count_desired, which will be the same in
199 * most cases but may be reset (e.g. XFS recovery).
200 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100201 bp->b_buffer_length = bp->b_count_desired = range_length;
202 bp->b_flags = flags;
203 bp->b_bn = XFS_BUF_DADDR_NULL;
204 atomic_set(&bp->b_pin_count, 0);
205 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Nathan Scottce8e9222006-01-11 15:39:08 +1100207 XFS_STATS_INC(xb_create);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000208
209 trace_xfs_buf_init(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
212/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100213 * Allocate a page array capable of holding a specified number
214 * of pages, and point the page buf at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 */
216STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100217_xfs_buf_get_pages(
218 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 int page_count,
Nathan Scottce8e9222006-01-11 15:39:08 +1100220 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 /* Make sure that we have a page list */
Nathan Scottce8e9222006-01-11 15:39:08 +1100223 if (bp->b_pages == NULL) {
224 bp->b_offset = xfs_buf_poff(bp->b_file_offset);
225 bp->b_page_count = page_count;
226 if (page_count <= XB_PAGES) {
227 bp->b_pages = bp->b_page_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100229 bp->b_pages = kmem_alloc(sizeof(struct page *) *
230 page_count, xb_to_km(flags));
231 if (bp->b_pages == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return -ENOMEM;
233 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100234 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236 return 0;
237}
238
239/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100240 * Frees b_pages if it was allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 */
242STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100243_xfs_buf_free_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 xfs_buf_t *bp)
245{
Nathan Scottce8e9222006-01-11 15:39:08 +1100246 if (bp->b_pages != bp->b_page_array) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000247 kmem_free(bp->b_pages);
Dave Chinner3fc98b12009-12-14 23:11:57 +0000248 bp->b_pages = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250}
251
252/*
253 * Releases the specified buffer.
254 *
255 * The modification state of any associated pages is left unchanged.
Nathan Scottce8e9222006-01-11 15:39:08 +1100256 * The buffer most not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 * hashed and refcounted buffers
258 */
259void
Nathan Scottce8e9222006-01-11 15:39:08 +1100260xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 xfs_buf_t *bp)
262{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000263 trace_xfs_buf_free(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Nathan Scottce8e9222006-01-11 15:39:08 +1100265 ASSERT(list_empty(&bp->b_hash_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000267 if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 uint i;
269
James Bottomley73c77e22010-01-25 11:42:24 -0600270 if (xfs_buf_is_vmapped(bp))
Alex Elder8a262e52010-03-16 18:55:56 +0000271 vm_unmap_ram(bp->b_addr - bp->b_offset,
272 bp->b_page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Nathan Scott948ecdb2006-09-28 11:03:13 +1000274 for (i = 0; i < bp->b_page_count; i++) {
275 struct page *page = bp->b_pages[i];
276
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000277 if (bp->b_flags & _XBF_PAGE_CACHE)
278 ASSERT(!PagePrivate(page));
Nathan Scott948ecdb2006-09-28 11:03:13 +1000279 page_cache_release(page);
280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
Dave Chinner3fc98b12009-12-14 23:11:57 +0000282 _xfs_buf_free_pages(bp);
Nathan Scottce8e9222006-01-11 15:39:08 +1100283 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286/*
287 * Finds all pages for buffer in question and builds it's page list.
288 */
289STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100290_xfs_buf_lookup_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 xfs_buf_t *bp,
292 uint flags)
293{
Nathan Scottce8e9222006-01-11 15:39:08 +1100294 struct address_space *mapping = bp->b_target->bt_mapping;
295 size_t blocksize = bp->b_target->bt_bsize;
296 size_t size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100298 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 unsigned short page_count, i;
300 pgoff_t first;
Nathan Scott204ab252006-01-11 20:50:22 +1100301 xfs_off_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 int error;
303
Nathan Scottce8e9222006-01-11 15:39:08 +1100304 end = bp->b_file_offset + bp->b_buffer_length;
305 page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Nathan Scottce8e9222006-01-11 15:39:08 +1100307 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (unlikely(error))
309 return error;
Nathan Scottce8e9222006-01-11 15:39:08 +1100310 bp->b_flags |= _XBF_PAGE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Nathan Scottce8e9222006-01-11 15:39:08 +1100312 offset = bp->b_offset;
313 first = bp->b_file_offset >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Nathan Scottce8e9222006-01-11 15:39:08 +1100315 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 struct page *page;
317 uint retries = 0;
318
319 retry:
320 page = find_or_create_page(mapping, first + i, gfp_mask);
321 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100322 if (flags & XBF_READ_AHEAD) {
323 bp->b_page_count = i;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000324 for (i = 0; i < bp->b_page_count; i++)
325 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return -ENOMEM;
327 }
328
329 /*
330 * This could deadlock.
331 *
332 * But until all the XFS lowlevel code is revamped to
333 * handle buffer allocation failures we can't do much.
334 */
335 if (!(++retries % 100))
336 printk(KERN_ERR
337 "XFS: possible memory allocation "
338 "deadlock in %s (mode:0x%x)\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000339 __func__, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Nathan Scottce8e9222006-01-11 15:39:08 +1100341 XFS_STATS_INC(xb_page_retries);
Dave Chinner7f8275d2010-07-19 14:56:17 +1000342 xfsbufd_wakeup(NULL, 0, gfp_mask);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200343 congestion_wait(BLK_RW_ASYNC, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 goto retry;
345 }
346
Nathan Scottce8e9222006-01-11 15:39:08 +1100347 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
350 size -= nbytes;
351
Nathan Scott948ecdb2006-09-28 11:03:13 +1000352 ASSERT(!PagePrivate(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (!PageUptodate(page)) {
354 page_count--;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000355 if (blocksize >= PAGE_CACHE_SIZE) {
356 if (flags & XBF_READ)
357 bp->b_flags |= _XBF_PAGE_LOCKED;
358 } else if (!PagePrivate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (test_page_region(page, offset, nbytes))
360 page_count++;
361 }
362 }
363
Nathan Scottce8e9222006-01-11 15:39:08 +1100364 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 offset = 0;
366 }
367
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000368 if (!(bp->b_flags & _XBF_PAGE_LOCKED)) {
369 for (i = 0; i < bp->b_page_count; i++)
370 unlock_page(bp->b_pages[i]);
371 }
372
Nathan Scottce8e9222006-01-11 15:39:08 +1100373 if (page_count == bp->b_page_count)
374 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return error;
377}
378
379/*
380 * Map buffer into kernel address-space if nessecary.
381 */
382STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100383_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 xfs_buf_t *bp,
385 uint flags)
386{
387 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100388 if (bp->b_page_count == 1) {
389 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
390 bp->b_flags |= XBF_MAPPED;
391 } else if (flags & XBF_MAPPED) {
Alex Elder8a262e52010-03-16 18:55:56 +0000392 bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
393 -1, PAGE_KERNEL);
Nathan Scottce8e9222006-01-11 15:39:08 +1100394 if (unlikely(bp->b_addr == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100396 bp->b_addr += bp->b_offset;
397 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399
400 return 0;
401}
402
403/*
404 * Finding and Reading Buffers
405 */
406
407/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100408 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 * a given range of an inode. The buffer is returned
410 * locked. If other overlapping buffers exist, they are
411 * released before the new buffer is created and locked,
412 * which may imply that this call will block until those buffers
413 * are unlocked. No I/O is implied by this call.
414 */
415xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100416_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab252006-01-11 20:50:22 +1100418 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100420 xfs_buf_flags_t flags,
421 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Nathan Scott204ab252006-01-11 20:50:22 +1100423 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 size_t range_length;
425 xfs_bufhash_t *hash;
Nathan Scottce8e9222006-01-11 15:39:08 +1100426 xfs_buf_t *bp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 range_base = (ioff << BBSHIFT);
429 range_length = (isize << BBSHIFT);
430
431 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100432 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab252006-01-11 20:50:22 +1100433 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)];
436
437 spin_lock(&hash->bh_lock);
438
Nathan Scottce8e9222006-01-11 15:39:08 +1100439 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
440 ASSERT(btp == bp->b_target);
441 if (bp->b_file_offset == range_base &&
442 bp->b_buffer_length == range_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100444 * If we look at something, bring it to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 * front of the list for next time.
446 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100447 atomic_inc(&bp->b_hold);
448 list_move(&bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 goto found;
450 }
451 }
452
453 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100454 if (new_bp) {
455 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 range_length, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100457 new_bp->b_hash = hash;
458 list_add(&new_bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100460 XFS_STATS_INC(xb_miss_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462
463 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100464 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466found:
467 spin_unlock(&hash->bh_lock);
468
469 /* Attempt to get the semaphore without sleeping,
470 * if this does not work then we need to drop the
471 * spinlock and do a hard attempt on the semaphore.
472 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100473 if (down_trylock(&bp->b_sema)) {
474 if (!(flags & XBF_TRYLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 /* wait for buffer ownership */
Nathan Scottce8e9222006-01-11 15:39:08 +1100476 xfs_buf_lock(bp);
477 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 } else {
479 /* We asked for a trylock and failed, no need
480 * to look at file offset and length here, we
Nathan Scottce8e9222006-01-11 15:39:08 +1100481 * know that this buffer at least overlaps our
482 * buffer and is locked, therefore our buffer
483 * either does not exist, or is this buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100485 xfs_buf_rele(bp);
486 XFS_STATS_INC(xb_busy_locked);
487 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489 } else {
490 /* trylock worked */
Nathan Scottce8e9222006-01-11 15:39:08 +1100491 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493
Nathan Scottce8e9222006-01-11 15:39:08 +1100494 if (bp->b_flags & XBF_STALE) {
495 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
496 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000497 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000498
499 trace_xfs_buf_find(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100500 XFS_STATS_INC(xb_get_locked);
501 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
504/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100505 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 * Storage in memory for all portions of the buffer will be allocated,
507 * although backing storage may not be.
508 */
509xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000510xfs_buf_get(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100512 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100514 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Nathan Scottce8e9222006-01-11 15:39:08 +1100516 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 int error = 0, i;
518
Nathan Scottce8e9222006-01-11 15:39:08 +1100519 new_bp = xfs_buf_allocate(flags);
520 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return NULL;
522
Nathan Scottce8e9222006-01-11 15:39:08 +1100523 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
524 if (bp == new_bp) {
525 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (error)
527 goto no_buffer;
528 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100529 xfs_buf_deallocate(new_bp);
530 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return NULL;
532 }
533
Nathan Scottce8e9222006-01-11 15:39:08 +1100534 for (i = 0; i < bp->b_page_count; i++)
535 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Nathan Scottce8e9222006-01-11 15:39:08 +1100537 if (!(bp->b_flags & XBF_MAPPED)) {
538 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (unlikely(error)) {
540 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000541 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 goto no_buffer;
543 }
544 }
545
Nathan Scottce8e9222006-01-11 15:39:08 +1100546 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 /*
549 * Always fill in the block number now, the mapped cases can do
550 * their own overlay of this later.
551 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100552 bp->b_bn = ioff;
553 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000555 trace_xfs_buf_get(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100556 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100559 if (flags & (XBF_LOCK | XBF_TRYLOCK))
560 xfs_buf_unlock(bp);
561 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return NULL;
563}
564
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100565STATIC int
566_xfs_buf_read(
567 xfs_buf_t *bp,
568 xfs_buf_flags_t flags)
569{
570 int status;
571
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100572 ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE)));
573 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
574
575 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
576 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
577 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | \
578 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
579
580 status = xfs_buf_iorequest(bp);
Dave Chinnerec53d1d2010-07-20 17:52:59 +1000581 if (status || XFS_BUF_ISERROR(bp) || (flags & XBF_ASYNC))
582 return status;
583 return xfs_buf_iowait(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100584}
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000587xfs_buf_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100589 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100591 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Nathan Scottce8e9222006-01-11 15:39:08 +1100593 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Nathan Scottce8e9222006-01-11 15:39:08 +1100595 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000597 bp = xfs_buf_get(target, ioff, isize, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100598 if (bp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000599 trace_xfs_buf_read(bp, flags, _RET_IP_);
600
Nathan Scottce8e9222006-01-11 15:39:08 +1100601 if (!XFS_BUF_ISDONE(bp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100602 XFS_STATS_INC(xb_get_read);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100603 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100604 } else if (flags & XBF_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 /*
606 * Read ahead call which is already satisfied,
607 * drop the buffer
608 */
609 goto no_buffer;
610 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100612 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614 }
615
Nathan Scottce8e9222006-01-11 15:39:08 +1100616 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100619 if (flags & (XBF_LOCK | XBF_TRYLOCK))
620 xfs_buf_unlock(bp);
621 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return NULL;
623}
624
625/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100626 * If we are not low on memory then do the readahead in a deadlock
627 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 */
629void
Nathan Scottce8e9222006-01-11 15:39:08 +1100630xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100632 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100634 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636 struct backing_dev_info *bdi;
637
Nathan Scottce8e9222006-01-11 15:39:08 +1100638 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (bdi_read_congested(bdi))
640 return;
641
Nathan Scottce8e9222006-01-11 15:39:08 +1100642 flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000643 xfs_buf_read(target, ioff, isize, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
646xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100647xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 size_t len,
649 xfs_buftarg_t *target)
650{
Nathan Scottce8e9222006-01-11 15:39:08 +1100651 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Nathan Scottce8e9222006-01-11 15:39:08 +1100653 bp = xfs_buf_allocate(0);
654 if (bp)
655 _xfs_buf_initialize(bp, target, 0, len, 0);
656 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
659static inline struct page *
660mem_to_page(
661 void *addr)
662{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800663 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return virt_to_page(addr);
665 } else {
666 return vmalloc_to_page(addr);
667 }
668}
669
670int
Nathan Scottce8e9222006-01-11 15:39:08 +1100671xfs_buf_associate_memory(
672 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 void *mem,
674 size_t len)
675{
676 int rval;
677 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100678 unsigned long pageaddr;
679 unsigned long offset;
680 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 int page_count;
682
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100683 pageaddr = (unsigned long)mem & PAGE_CACHE_MASK;
684 offset = (unsigned long)mem - pageaddr;
685 buflen = PAGE_CACHE_ALIGN(len + offset);
686 page_count = buflen >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100689 if (bp->b_pages)
690 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Nathan Scottce8e9222006-01-11 15:39:08 +1100692 bp->b_pages = NULL;
693 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Christoph Hellwig36fae172009-07-18 18:14:58 -0400695 rval = _xfs_buf_get_pages(bp, page_count, XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (rval)
697 return rval;
698
Nathan Scottce8e9222006-01-11 15:39:08 +1100699 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100701 for (i = 0; i < bp->b_page_count; i++) {
702 bp->b_pages[i] = mem_to_page((void *)pageaddr);
703 pageaddr += PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100706 bp->b_count_desired = len;
707 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100708 bp->b_flags |= XBF_MAPPED;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000709 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 return 0;
712}
713
714xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100715xfs_buf_get_noaddr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 size_t len,
717 xfs_buftarg_t *target)
718{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000719 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
720 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Nathan Scottce8e9222006-01-11 15:39:08 +1100723 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (unlikely(bp == NULL))
725 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100726 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000728 error = _xfs_buf_get_pages(bp, page_count, 0);
729 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 goto fail_free_buf;
731
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000732 for (i = 0; i < page_count; i++) {
733 bp->b_pages[i] = alloc_page(GFP_KERNEL);
734 if (!bp->b_pages[i])
735 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000737 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000739 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
740 if (unlikely(error)) {
741 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000742 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Nathan Scottce8e9222006-01-11 15:39:08 +1100746 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000748 trace_xfs_buf_get_noaddr(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000752 while (--i >= 0)
753 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000754 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000756 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 fail:
758 return NULL;
759}
760
761/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * Increment reference count on buffer, to hold the buffer concurrently
763 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 * Must hold the buffer already to call this function.
765 */
766void
Nathan Scottce8e9222006-01-11 15:39:08 +1100767xfs_buf_hold(
768 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000770 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100771 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
774/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100775 * Releases a hold on the specified buffer. If the
776 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 */
778void
Nathan Scottce8e9222006-01-11 15:39:08 +1100779xfs_buf_rele(
780 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Nathan Scottce8e9222006-01-11 15:39:08 +1100782 xfs_bufhash_t *hash = bp->b_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000784 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Nathan Scottfad3aa12006-02-01 12:14:52 +1100786 if (unlikely(!hash)) {
787 ASSERT(!bp->b_relse);
788 if (atomic_dec_and_test(&bp->b_hold))
789 xfs_buf_free(bp);
790 return;
791 }
792
Lachlan McIlroy37906892008-08-13 15:42:10 +1000793 ASSERT(atomic_read(&bp->b_hold) > 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100794 if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) {
795 if (bp->b_relse) {
796 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100798 (*(bp->b_relse)) (bp);
799 } else if (bp->b_flags & XBF_FS_MANAGED) {
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100800 spin_unlock(&hash->bh_lock);
801 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100802 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
803 list_del_init(&bp->b_hash_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100805 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
807 }
808}
809
810
811/*
812 * Mutual exclusion on buffers. Locking model:
813 *
814 * Buffers associated with inodes for which buffer locking
815 * is not enabled are not protected by semaphores, and are
816 * assumed to be exclusively owned by the caller. There is a
817 * spinlock in the buffer, used by the caller when concurrent
818 * access is possible.
819 */
820
821/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100822 * Locks a buffer object, if it is not already locked.
823 * Note that this in no way locks the underlying pages, so it is only
824 * useful for synchronizing concurrent use of buffer objects, not for
825 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 */
827int
Nathan Scottce8e9222006-01-11 15:39:08 +1100828xfs_buf_cond_lock(
829 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
831 int locked;
832
Nathan Scottce8e9222006-01-11 15:39:08 +1100833 locked = down_trylock(&bp->b_sema) == 0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000834 if (locked)
Nathan Scottce8e9222006-01-11 15:39:08 +1100835 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000836
837 trace_xfs_buf_cond_lock(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100838 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841int
Nathan Scottce8e9222006-01-11 15:39:08 +1100842xfs_buf_lock_value(
843 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Stephen Rothwelladaa6932008-04-22 15:26:13 +1000845 return bp->b_sema.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100849 * Locks a buffer object.
850 * Note that this in no way locks the underlying pages, so it is only
851 * useful for synchronizing concurrent use of buffer objects, not for
852 * synchronizing independent access to the underlying pages.
Dave Chinnered3b4d62010-05-21 12:07:08 +1000853 *
854 * If we come across a stale, pinned, locked buffer, we know that we
855 * are being asked to lock a buffer that has been reallocated. Because
856 * it is pinned, we know that the log has not been pushed to disk and
857 * hence it will still be locked. Rather than sleeping until someone
858 * else pushes the log, push it ourselves before trying to get the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100860void
861xfs_buf_lock(
862 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000864 trace_xfs_buf_lock(bp, _RET_IP_);
865
Dave Chinnered3b4d62010-05-21 12:07:08 +1000866 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
867 xfs_log_force(bp->b_mount, 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100868 if (atomic_read(&bp->b_io_remaining))
869 blk_run_address_space(bp->b_target->bt_mapping);
870 down(&bp->b_sema);
871 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000872
873 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
875
876/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100877 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000878 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100879 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000880 * take a reference for the delwri queue because the unlocker is going to
881 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 */
883void
Nathan Scottce8e9222006-01-11 15:39:08 +1100884xfs_buf_unlock(
885 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Nathan Scottce8e9222006-01-11 15:39:08 +1100887 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
888 atomic_inc(&bp->b_hold);
889 bp->b_flags |= XBF_ASYNC;
890 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000891 }
892
Nathan Scottce8e9222006-01-11 15:39:08 +1100893 XB_CLEAR_OWNER(bp);
894 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000895
896 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
Nathan Scottce8e9222006-01-11 15:39:08 +1100899STATIC void
900xfs_buf_wait_unpin(
901 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
903 DECLARE_WAITQUEUE (wait, current);
904
Nathan Scottce8e9222006-01-11 15:39:08 +1100905 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return;
907
Nathan Scottce8e9222006-01-11 15:39:08 +1100908 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 for (;;) {
910 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100911 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 break;
Nathan Scottce8e9222006-01-11 15:39:08 +1100913 if (atomic_read(&bp->b_io_remaining))
914 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 schedule();
916 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100917 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 set_current_state(TASK_RUNNING);
919}
920
921/*
922 * Buffer Utility Routines
923 */
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100926xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +0000927 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
David Howellsc4028952006-11-22 14:57:56 +0000929 xfs_buf_t *bp =
930 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Christoph Hellwig80f6c292010-08-18 05:29:11 -0400932 if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +1100933 (*(bp->b_iodone))(bp);
934 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 xfs_buf_relse(bp);
936}
937
938void
Nathan Scottce8e9222006-01-11 15:39:08 +1100939xfs_buf_ioend(
940 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 int schedule)
942{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000943 trace_xfs_buf_iodone(bp, _RET_IP_);
944
Lachlan McIlroy77be55a2007-11-23 16:31:00 +1100945 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +1100946 if (bp->b_error == 0)
947 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Nathan Scottce8e9222006-01-11 15:39:08 +1100949 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +0000951 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +1100952 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 } else {
David Howellsc4028952006-11-22 14:57:56 +0000954 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
956 } else {
David Chinnerb4dd3302008-08-13 16:36:11 +1000957 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959}
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961void
Nathan Scottce8e9222006-01-11 15:39:08 +1100962xfs_buf_ioerror(
963 xfs_buf_t *bp,
964 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +1100967 bp->b_error = (unsigned short)error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000968 trace_xfs_buf_ioerror(bp, error, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971int
Christoph Hellwig64e0bc72010-01-13 22:17:58 +0000972xfs_bwrite(
973 struct xfs_mount *mp,
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100974 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
Christoph Hellwig8c383662010-03-12 10:59:40 +0000976 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Christoph Hellwig64e0bc72010-01-13 22:17:58 +0000978 bp->b_mount = mp;
979 bp->b_flags |= XBF_WRITE;
Christoph Hellwig8c383662010-03-12 10:59:40 +0000980 bp->b_flags &= ~(XBF_ASYNC | XBF_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100982 xfs_buf_delwri_dequeue(bp);
Christoph Hellwig939d7232010-07-20 17:51:16 +1000983 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Christoph Hellwig8c383662010-03-12 10:59:40 +0000985 error = xfs_buf_iowait(bp);
986 if (error)
987 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
988 xfs_buf_relse(bp);
Christoph Hellwig64e0bc72010-01-13 22:17:58 +0000989 return error;
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100990}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100992void
993xfs_bdwrite(
994 void *mp,
995 struct xfs_buf *bp)
996{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000997 trace_xfs_buf_bdwrite(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Christoph Hellwig15ac08a2008-12-09 04:47:30 -0500999 bp->b_mount = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001001 bp->b_flags &= ~XBF_READ;
1002 bp->b_flags |= (XBF_DELWRI | XBF_ASYNC);
1003
1004 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
Christoph Hellwig4e234712010-01-13 22:17:56 +00001007/*
1008 * Called when we want to stop a buffer from getting written or read.
1009 * We attach the EIO error, muck with its flags, and call biodone
1010 * so that the proper iodone callbacks get called.
1011 */
1012STATIC int
1013xfs_bioerror(
1014 xfs_buf_t *bp)
1015{
1016#ifdef XFSERRORDEBUG
1017 ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
1018#endif
1019
1020 /*
1021 * No need to wait until the buffer is unpinned, we aren't flushing it.
1022 */
1023 XFS_BUF_ERROR(bp, EIO);
1024
1025 /*
1026 * We're calling biodone, so delete XBF_DONE flag.
1027 */
1028 XFS_BUF_UNREAD(bp);
1029 XFS_BUF_UNDELAYWRITE(bp);
1030 XFS_BUF_UNDONE(bp);
1031 XFS_BUF_STALE(bp);
1032
Christoph Hellwig4e234712010-01-13 22:17:56 +00001033 xfs_biodone(bp);
1034
1035 return EIO;
1036}
1037
1038/*
1039 * Same as xfs_bioerror, except that we are releasing the buffer
1040 * here ourselves, and avoiding the biodone call.
1041 * This is meant for userdata errors; metadata bufs come with
1042 * iodone functions attached, so that we can track down errors.
1043 */
1044STATIC int
1045xfs_bioerror_relse(
1046 struct xfs_buf *bp)
1047{
1048 int64_t fl = XFS_BUF_BFLAGS(bp);
1049 /*
1050 * No need to wait until the buffer is unpinned.
1051 * We aren't flushing it.
1052 *
1053 * chunkhold expects B_DONE to be set, whether
1054 * we actually finish the I/O or not. We don't want to
1055 * change that interface.
1056 */
1057 XFS_BUF_UNREAD(bp);
1058 XFS_BUF_UNDELAYWRITE(bp);
1059 XFS_BUF_DONE(bp);
1060 XFS_BUF_STALE(bp);
1061 XFS_BUF_CLR_IODONE_FUNC(bp);
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001062 if (!(fl & XBF_ASYNC)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001063 /*
1064 * Mark b_error and B_ERROR _both_.
1065 * Lot's of chunkcache code assumes that.
1066 * There's no reason to mark error for
1067 * ASYNC buffers.
1068 */
1069 XFS_BUF_ERROR(bp, EIO);
1070 XFS_BUF_FINISH_IOWAIT(bp);
1071 } else {
1072 xfs_buf_relse(bp);
1073 }
1074
1075 return EIO;
1076}
1077
1078
1079/*
1080 * All xfs metadata buffers except log state machine buffers
1081 * get this attached as their b_bdstrat callback function.
1082 * This is so that we can catch a buffer
1083 * after prematurely unpinning it to forcibly shutdown the filesystem.
1084 */
1085int
1086xfs_bdstrat_cb(
1087 struct xfs_buf *bp)
1088{
1089 if (XFS_FORCED_SHUTDOWN(bp->b_mount)) {
1090 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1091 /*
1092 * Metadata write that didn't get logged but
1093 * written delayed anyway. These aren't associated
1094 * with a transaction, and can be ignored.
1095 */
1096 if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
1097 return xfs_bioerror_relse(bp);
1098 else
1099 return xfs_bioerror(bp);
1100 }
1101
1102 xfs_buf_iorequest(bp);
1103 return 0;
1104}
1105
1106/*
1107 * Wrapper around bdstrat so that we can stop data from going to disk in case
1108 * we are shutting down the filesystem. Typically user data goes thru this
1109 * path; one of the exceptions is the superblock.
1110 */
1111void
1112xfsbdstrat(
1113 struct xfs_mount *mp,
1114 struct xfs_buf *bp)
1115{
1116 if (XFS_FORCED_SHUTDOWN(mp)) {
1117 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1118 xfs_bioerror_relse(bp);
1119 return;
1120 }
1121
1122 xfs_buf_iorequest(bp);
1123}
1124
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001125STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001126_xfs_buf_ioend(
1127 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 int schedule)
1129{
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001130 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1131 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Nathan Scottce8e9222006-01-11 15:39:08 +11001132 xfs_buf_ioend(bp, schedule);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
Al Viro782e3b32007-10-12 07:17:47 +01001136STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001137xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 int error)
1140{
Nathan Scottce8e9222006-01-11 15:39:08 +11001141 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1142 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001143 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Lachlan McIlroycfbe5262008-12-12 15:27:25 +11001145 xfs_buf_ioerror(bp, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
James Bottomley73c77e22010-01-25 11:42:24 -06001147 if (!error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
1148 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1149
Nathan Scotteedb5532005-09-02 16:39:56 +10001150 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 struct page *page = bvec->bv_page;
1152
Nathan Scott948ecdb2006-09-28 11:03:13 +10001153 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001154 if (unlikely(bp->b_error)) {
1155 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001156 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001157 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 SetPageUptodate(page);
1159 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001160 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1162 }
1163
Nathan Scotteedb5532005-09-02 16:39:56 +10001164 if (--bvec >= bio->bi_io_vec)
1165 prefetchw(&bvec->bv_page->flags);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001166
1167 if (bp->b_flags & _XBF_PAGE_LOCKED)
1168 unlock_page(page);
Nathan Scotteedb5532005-09-02 16:39:56 +10001169 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Nathan Scottce8e9222006-01-11 15:39:08 +11001171 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
1174
1175STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001176_xfs_buf_ioapply(
1177 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Christoph Hellwiga9759f22007-12-07 14:07:08 +11001179 int rw, map_i, total_nr_pages, nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001181 int offset = bp->b_offset;
1182 int size = bp->b_count_desired;
1183 sector_t sector = bp->b_bn;
1184 unsigned int blocksize = bp->b_target->bt_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Nathan Scottce8e9222006-01-11 15:39:08 +11001186 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 map_i = 0;
1188
Nathan Scottce8e9222006-01-11 15:39:08 +11001189 if (bp->b_flags & XBF_ORDERED) {
1190 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwig80f6c292010-08-18 05:29:11 -04001191 rw = WRITE_FLUSH_FUA;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001192 } else if (bp->b_flags & XBF_LOG_BUFFER) {
Nathan Scott51bdd702006-09-28 11:01:57 +10001193 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1194 bp->b_flags &= ~_XBF_RUN_QUEUES;
1195 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001196 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1197 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1198 bp->b_flags &= ~_XBF_RUN_QUEUES;
1199 rw = (bp->b_flags & XBF_WRITE) ? WRITE_META : READ_META;
Nathan Scott51bdd702006-09-28 11:01:57 +10001200 } else {
1201 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1202 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001203 }
1204
Nathan Scottce8e9222006-01-11 15:39:08 +11001205 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 * we populate up the whole page, and hence the other metadata
1207 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001208 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001210 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001211 ((bp->b_flags & (XBF_READ|_XBF_PAGE_LOCKED)) ==
1212 (XBF_READ|_XBF_PAGE_LOCKED)) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001213 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 bio = bio_alloc(GFP_NOIO, 1);
1215
Nathan Scottce8e9222006-01-11 15:39:08 +11001216 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001218 bio->bi_end_io = xfs_buf_bio_end_io;
1219 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Nathan Scottce8e9222006-01-11 15:39:08 +11001221 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 size = 0;
1223
Nathan Scottce8e9222006-01-11 15:39:08 +11001224 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 goto submit_io;
1227 }
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001230 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1232 if (nr_pages > total_nr_pages)
1233 nr_pages = total_nr_pages;
1234
1235 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001236 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001238 bio->bi_end_io = xfs_buf_bio_end_io;
1239 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001242 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 if (nbytes > size)
1245 nbytes = size;
1246
Nathan Scottce8e9222006-01-11 15:39:08 +11001247 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1248 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 break;
1250
1251 offset = 0;
1252 sector += nbytes >> BBSHIFT;
1253 size -= nbytes;
1254 total_nr_pages--;
1255 }
1256
1257submit_io:
1258 if (likely(bio->bi_size)) {
James Bottomley73c77e22010-01-25 11:42:24 -06001259 if (xfs_buf_is_vmapped(bp)) {
1260 flush_kernel_vmap_range(bp->b_addr,
1261 xfs_buf_vmap_len(bp));
1262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 submit_bio(rw, bio);
1264 if (size)
1265 goto next_chunk;
1266 } else {
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001267 /*
1268 * if we get here, no pages were added to the bio. However,
1269 * we can't just error out here - if the pages are locked then
1270 * we have to unlock them otherwise we can hang on a later
1271 * access to the page.
1272 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001273 xfs_buf_ioerror(bp, EIO);
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001274 if (bp->b_flags & _XBF_PAGE_LOCKED) {
1275 int i;
1276 for (i = 0; i < bp->b_page_count; i++)
1277 unlock_page(bp->b_pages[i]);
1278 }
1279 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
1281}
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283int
Nathan Scottce8e9222006-01-11 15:39:08 +11001284xfs_buf_iorequest(
1285 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001287 trace_xfs_buf_iorequest(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Nathan Scottce8e9222006-01-11 15:39:08 +11001289 if (bp->b_flags & XBF_DELWRI) {
1290 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return 0;
1292 }
1293
Nathan Scottce8e9222006-01-11 15:39:08 +11001294 if (bp->b_flags & XBF_WRITE) {
1295 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 }
1297
Nathan Scottce8e9222006-01-11 15:39:08 +11001298 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 /* Set the count to 1 initially, this will stop an I/O
1301 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001302 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001304 atomic_set(&bp->b_io_remaining, 1);
1305 _xfs_buf_ioapply(bp);
1306 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Nathan Scottce8e9222006-01-11 15:39:08 +11001308 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return 0;
1310}
1311
1312/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001313 * Waits for I/O to complete on the buffer supplied.
1314 * It returns immediately if no I/O is pending.
1315 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 */
1317int
Nathan Scottce8e9222006-01-11 15:39:08 +11001318xfs_buf_iowait(
1319 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001321 trace_xfs_buf_iowait(bp, _RET_IP_);
1322
Nathan Scottce8e9222006-01-11 15:39:08 +11001323 if (atomic_read(&bp->b_io_remaining))
1324 blk_run_address_space(bp->b_target->bt_mapping);
David Chinnerb4dd3302008-08-13 16:36:11 +10001325 wait_for_completion(&bp->b_iowait);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001326
1327 trace_xfs_buf_iowait_done(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +11001328 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
Nathan Scottce8e9222006-01-11 15:39:08 +11001331xfs_caddr_t
1332xfs_buf_offset(
1333 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 size_t offset)
1335{
1336 struct page *page;
1337
Nathan Scottce8e9222006-01-11 15:39:08 +11001338 if (bp->b_flags & XBF_MAPPED)
1339 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Nathan Scottce8e9222006-01-11 15:39:08 +11001341 offset += bp->b_offset;
1342 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1343 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
1345
1346/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 * Move data into or out of a buffer.
1348 */
1349void
Nathan Scottce8e9222006-01-11 15:39:08 +11001350xfs_buf_iomove(
1351 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 size_t boff, /* starting buffer offset */
1353 size_t bsize, /* length to copy */
Dave Chinnerb9c48642010-01-20 10:47:39 +11001354 void *data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001355 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
1357 size_t bend, cpoff, csize;
1358 struct page *page;
1359
1360 bend = boff + bsize;
1361 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001362 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1363 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001365 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1368
1369 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001370 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 memset(page_address(page) + cpoff, 0, csize);
1372 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001373 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 memcpy(data, page_address(page) + cpoff, csize);
1375 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001376 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 memcpy(page_address(page) + cpoff, data, csize);
1378 }
1379
1380 boff += csize;
1381 data += csize;
1382 }
1383}
1384
1385/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001386 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 */
1388
1389/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001390 * Wait for any bufs with callbacks that have been submitted but
1391 * have not yet returned... walk the hash list for the target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 */
1393void
1394xfs_wait_buftarg(
1395 xfs_buftarg_t *btp)
1396{
1397 xfs_buf_t *bp, *n;
1398 xfs_bufhash_t *hash;
1399 uint i;
1400
1401 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1402 hash = &btp->bt_hash[i];
1403again:
1404 spin_lock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001405 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
1406 ASSERT(btp == bp->b_target);
1407 if (!(bp->b_flags & XBF_FS_MANAGED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 spin_unlock(&hash->bh_lock);
David Chinner2f926582005-09-05 08:33:35 +10001409 /*
1410 * Catch superblock reference count leaks
1411 * immediately
1412 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001413 BUG_ON(bp->b_bn == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 delay(100);
1415 goto again;
1416 }
1417 }
1418 spin_unlock(&hash->bh_lock);
1419 }
1420}
1421
1422/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001423 * Allocate buffer hash table for a given target.
1424 * For devices containing metadata (i.e. not the log/realtime devices)
1425 * we need to allocate a much larger hash table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 */
1427STATIC void
1428xfs_alloc_bufhash(
1429 xfs_buftarg_t *btp,
1430 int external)
1431{
1432 unsigned int i;
1433
1434 btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */
1435 btp->bt_hashmask = (1 << btp->bt_hashshift) - 1;
Christoph Hellwigbdfb0432010-01-20 21:55:30 +00001436 btp->bt_hash = kmem_zalloc_large((1 << btp->bt_hashshift) *
1437 sizeof(xfs_bufhash_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1439 spin_lock_init(&btp->bt_hash[i].bh_lock);
1440 INIT_LIST_HEAD(&btp->bt_hash[i].bh_list);
1441 }
1442}
1443
1444STATIC void
1445xfs_free_bufhash(
1446 xfs_buftarg_t *btp)
1447{
Christoph Hellwigbdfb0432010-01-20 21:55:30 +00001448 kmem_free_large(btp->bt_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 btp->bt_hash = NULL;
1450}
1451
David Chinnera6867a62006-01-11 15:37:58 +11001452/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001453 * buftarg list for delwrite queue processing
David Chinnera6867a62006-01-11 15:37:58 +11001454 */
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001455static LIST_HEAD(xfs_buftarg_list);
David Chinner7989cb82007-02-10 18:34:56 +11001456static DEFINE_SPINLOCK(xfs_buftarg_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001457
1458STATIC void
1459xfs_register_buftarg(
1460 xfs_buftarg_t *btp)
1461{
1462 spin_lock(&xfs_buftarg_lock);
1463 list_add(&btp->bt_list, &xfs_buftarg_list);
1464 spin_unlock(&xfs_buftarg_lock);
1465}
1466
1467STATIC void
1468xfs_unregister_buftarg(
1469 xfs_buftarg_t *btp)
1470{
1471 spin_lock(&xfs_buftarg_lock);
1472 list_del(&btp->bt_list);
1473 spin_unlock(&xfs_buftarg_lock);
1474}
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476void
1477xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001478 struct xfs_mount *mp,
1479 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
1481 xfs_flush_buftarg(btp, 1);
Christoph Hellwigb7963132009-03-03 14:48:37 -05001482 if (mp->m_flags & XFS_MOUNT_BARRIER)
1483 xfs_blkdev_issue_flush(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 xfs_free_bufhash(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001485 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001486
Nathan Scottce8e9222006-01-11 15:39:08 +11001487 /* Unregister the buftarg first so that we don't get a
1488 * wakeup finding a non-existent task
1489 */
David Chinnera6867a62006-01-11 15:37:58 +11001490 xfs_unregister_buftarg(btp);
1491 kthread_stop(btp->bt_task);
1492
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001493 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496STATIC int
1497xfs_setsize_buftarg_flags(
1498 xfs_buftarg_t *btp,
1499 unsigned int blocksize,
1500 unsigned int sectorsize,
1501 int verbose)
1502{
Nathan Scottce8e9222006-01-11 15:39:08 +11001503 btp->bt_bsize = blocksize;
1504 btp->bt_sshift = ffs(sectorsize) - 1;
1505 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Nathan Scottce8e9222006-01-11 15:39:08 +11001507 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 printk(KERN_WARNING
1509 "XFS: Cannot set_blocksize to %u on device %s\n",
1510 sectorsize, XFS_BUFTARG_NAME(btp));
1511 return EINVAL;
1512 }
1513
1514 if (verbose &&
1515 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1516 printk(KERN_WARNING
1517 "XFS: %u byte sectors in use on device %s. "
1518 "This is suboptimal; %u or greater is ideal.\n",
1519 sectorsize, XFS_BUFTARG_NAME(btp),
1520 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1521 }
1522
1523 return 0;
1524}
1525
1526/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001527 * When allocating the initial buffer target we have not yet
1528 * read in the superblock, so don't know what sized sectors
1529 * are being used is at this early stage. Play safe.
1530 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531STATIC int
1532xfs_setsize_buftarg_early(
1533 xfs_buftarg_t *btp,
1534 struct block_device *bdev)
1535{
1536 return xfs_setsize_buftarg_flags(btp,
Martin K. Petersene1defc42009-05-22 17:17:49 -04001537 PAGE_CACHE_SIZE, bdev_logical_block_size(bdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538}
1539
1540int
1541xfs_setsize_buftarg(
1542 xfs_buftarg_t *btp,
1543 unsigned int blocksize,
1544 unsigned int sectorsize)
1545{
1546 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1547}
1548
1549STATIC int
1550xfs_mapping_buftarg(
1551 xfs_buftarg_t *btp,
1552 struct block_device *bdev)
1553{
1554 struct backing_dev_info *bdi;
1555 struct inode *inode;
1556 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001557 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001559 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 };
1561
1562 inode = new_inode(bdev->bd_inode->i_sb);
1563 if (!inode) {
1564 printk(KERN_WARNING
1565 "XFS: Cannot allocate mapping inode for device %s\n",
1566 XFS_BUFTARG_NAME(btp));
1567 return ENOMEM;
1568 }
1569 inode->i_mode = S_IFBLK;
1570 inode->i_bdev = bdev;
1571 inode->i_rdev = bdev->bd_dev;
1572 bdi = blk_get_backing_dev_info(bdev);
1573 if (!bdi)
1574 bdi = &default_backing_dev_info;
1575 mapping = &inode->i_data;
1576 mapping->a_ops = &mapping_aops;
1577 mapping->backing_dev_info = bdi;
1578 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001579 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return 0;
1581}
1582
David Chinnera6867a62006-01-11 15:37:58 +11001583STATIC int
1584xfs_alloc_delwrite_queue(
Jan Engelhardte2a07812010-03-23 09:52:55 +11001585 xfs_buftarg_t *btp,
1586 const char *fsname)
David Chinnera6867a62006-01-11 15:37:58 +11001587{
1588 int error = 0;
1589
1590 INIT_LIST_HEAD(&btp->bt_list);
1591 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
Eric Sandeen007c61c2007-10-11 17:43:56 +10001592 spin_lock_init(&btp->bt_delwrite_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001593 btp->bt_flags = 0;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001594 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd/%s", fsname);
David Chinnera6867a62006-01-11 15:37:58 +11001595 if (IS_ERR(btp->bt_task)) {
1596 error = PTR_ERR(btp->bt_task);
1597 goto out_error;
1598 }
1599 xfs_register_buftarg(btp);
1600out_error:
1601 return error;
1602}
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604xfs_buftarg_t *
1605xfs_alloc_buftarg(
1606 struct block_device *bdev,
Jan Engelhardte2a07812010-03-23 09:52:55 +11001607 int external,
1608 const char *fsname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
1610 xfs_buftarg_t *btp;
1611
1612 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1613
Nathan Scottce8e9222006-01-11 15:39:08 +11001614 btp->bt_dev = bdev->bd_dev;
1615 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (xfs_setsize_buftarg_early(btp, bdev))
1617 goto error;
1618 if (xfs_mapping_buftarg(btp, bdev))
1619 goto error;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001620 if (xfs_alloc_delwrite_queue(btp, fsname))
David Chinnera6867a62006-01-11 15:37:58 +11001621 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 xfs_alloc_bufhash(btp, external);
1623 return btp;
1624
1625error:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001626 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 return NULL;
1628}
1629
1630
1631/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001632 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001635xfs_buf_delwri_queue(
1636 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 int unlock)
1638{
Nathan Scottce8e9222006-01-11 15:39:08 +11001639 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1640 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001641
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001642 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1643
Nathan Scottce8e9222006-01-11 15:39:08 +11001644 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
David Chinnera6867a62006-01-11 15:37:58 +11001646 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001648 if (!list_empty(&bp->b_list)) {
1649 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1650 if (unlock)
1651 atomic_dec(&bp->b_hold);
1652 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
1654
Dave Chinnerc9c12972010-01-11 11:49:59 +00001655 if (list_empty(dwq)) {
1656 /* start xfsbufd as it is about to have something to do */
1657 wake_up_process(bp->b_target->bt_task);
1658 }
1659
Nathan Scottce8e9222006-01-11 15:39:08 +11001660 bp->b_flags |= _XBF_DELWRI_Q;
1661 list_add_tail(&bp->b_list, dwq);
1662 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001663 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
1665 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001666 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667}
1668
1669void
Nathan Scottce8e9222006-01-11 15:39:08 +11001670xfs_buf_delwri_dequeue(
1671 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
Nathan Scottce8e9222006-01-11 15:39:08 +11001673 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 int dequeued = 0;
1675
David Chinnera6867a62006-01-11 15:37:58 +11001676 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001677 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1678 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1679 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 dequeued = 1;
1681 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001682 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001683 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001686 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001688 trace_xfs_buf_delwri_dequeue(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689}
1690
Dave Chinnerd808f612010-02-02 10:13:42 +11001691/*
1692 * If a delwri buffer needs to be pushed before it has aged out, then promote
1693 * it to the head of the delwri queue so that it will be flushed on the next
1694 * xfsbufd run. We do this by resetting the queuetime of the buffer to be older
1695 * than the age currently needed to flush the buffer. Hence the next time the
1696 * xfsbufd sees it is guaranteed to be considered old enough to flush.
1697 */
1698void
1699xfs_buf_delwri_promote(
1700 struct xfs_buf *bp)
1701{
1702 struct xfs_buftarg *btp = bp->b_target;
1703 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10) + 1;
1704
1705 ASSERT(bp->b_flags & XBF_DELWRI);
1706 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1707
1708 /*
1709 * Check the buffer age before locking the delayed write queue as we
1710 * don't need to promote buffers that are already past the flush age.
1711 */
1712 if (bp->b_queuetime < jiffies - age)
1713 return;
1714 bp->b_queuetime = jiffies - age;
1715 spin_lock(&btp->bt_delwrite_lock);
1716 list_move(&bp->b_list, &btp->bt_delwrite_queue);
1717 spin_unlock(&btp->bt_delwrite_lock);
1718}
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001721xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 struct workqueue_struct *queue)
1723{
1724 flush_workqueue(queue);
1725}
1726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001728xfsbufd_wakeup(
Dave Chinner7f8275d2010-07-19 14:56:17 +10001729 struct shrinker *shrink,
Nathan Scott15c84a42005-11-04 10:51:01 +11001730 int priority,
1731 gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732{
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001733 xfs_buftarg_t *btp;
David Chinnera6867a62006-01-11 15:37:58 +11001734
1735 spin_lock(&xfs_buftarg_lock);
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001736 list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001737 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
David Chinnera6867a62006-01-11 15:37:58 +11001738 continue;
Dave Chinnerc9c12972010-01-11 11:49:59 +00001739 if (list_empty(&btp->bt_delwrite_queue))
1740 continue;
Nathan Scottce8e9222006-01-11 15:39:08 +11001741 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
David Chinnera6867a62006-01-11 15:37:58 +11001742 wake_up_process(btp->bt_task);
1743 }
1744 spin_unlock(&xfs_buftarg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 return 0;
1746}
1747
David Chinner585e6d82007-02-10 18:32:29 +11001748/*
1749 * Move as many buffers as specified to the supplied list
1750 * idicating if we skipped any buffers to prevent deadlocks.
1751 */
1752STATIC int
1753xfs_buf_delwri_split(
1754 xfs_buftarg_t *target,
1755 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001756 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001757{
1758 xfs_buf_t *bp, *n;
1759 struct list_head *dwq = &target->bt_delwrite_queue;
1760 spinlock_t *dwlk = &target->bt_delwrite_lock;
1761 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001762 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001763
David Chinner5e6a07d2007-02-10 18:34:49 +11001764 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001765 INIT_LIST_HEAD(list);
1766 spin_lock(dwlk);
1767 list_for_each_entry_safe(bp, n, dwq, b_list) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001768 trace_xfs_buf_delwri_split(bp, _RET_IP_);
David Chinner585e6d82007-02-10 18:32:29 +11001769 ASSERT(bp->b_flags & XBF_DELWRI);
1770
Christoph Hellwig4d16e922010-06-23 18:11:15 +10001771 if (!XFS_BUF_ISPINNED(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001772 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001773 time_before(jiffies, bp->b_queuetime + age)) {
1774 xfs_buf_unlock(bp);
1775 break;
1776 }
1777
1778 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1779 _XBF_RUN_QUEUES);
1780 bp->b_flags |= XBF_WRITE;
1781 list_move_tail(&bp->b_list, list);
1782 } else
1783 skipped++;
1784 }
1785 spin_unlock(dwlk);
1786
1787 return skipped;
1788
1789}
1790
Dave Chinner089716a2010-01-26 15:13:25 +11001791/*
1792 * Compare function is more complex than it needs to be because
1793 * the return value is only 32 bits and we are doing comparisons
1794 * on 64 bit values
1795 */
1796static int
1797xfs_buf_cmp(
1798 void *priv,
1799 struct list_head *a,
1800 struct list_head *b)
1801{
1802 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1803 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1804 xfs_daddr_t diff;
1805
1806 diff = ap->b_bn - bp->b_bn;
1807 if (diff < 0)
1808 return -1;
1809 if (diff > 0)
1810 return 1;
1811 return 0;
1812}
1813
1814void
1815xfs_buf_delwri_sort(
1816 xfs_buftarg_t *target,
1817 struct list_head *list)
1818{
1819 list_sort(NULL, list, xfs_buf_cmp);
1820}
1821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001823xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001824 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
Dave Chinner089716a2010-01-26 15:13:25 +11001826 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 current->flags |= PF_MEMALLOC;
1829
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001830 set_freezable();
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 do {
Dave Chinnerc9c12972010-01-11 11:49:59 +00001833 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10);
1834 long tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10);
Dave Chinner089716a2010-01-26 15:13:25 +11001835 int count = 0;
1836 struct list_head tmp;
Dave Chinnerc9c12972010-01-11 11:49:59 +00001837
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001838 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001839 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001840 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001841 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001842 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Dave Chinnerc9c12972010-01-11 11:49:59 +00001845 /* sleep for a long time if there is nothing to do. */
1846 if (list_empty(&target->bt_delwrite_queue))
1847 tout = MAX_SCHEDULE_TIMEOUT;
1848 schedule_timeout_interruptible(tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Dave Chinnerc9c12972010-01-11 11:49:59 +00001850 xfs_buf_delwri_split(target, &tmp, age);
Dave Chinner089716a2010-01-26 15:13:25 +11001851 list_sort(NULL, &tmp, xfs_buf_cmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 while (!list_empty(&tmp)) {
Dave Chinner089716a2010-01-26 15:13:25 +11001853 struct xfs_buf *bp;
1854 bp = list_first_entry(&tmp, struct xfs_buf, b_list);
Nathan Scottce8e9222006-01-11 15:39:08 +11001855 list_del_init(&bp->b_list);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001856 xfs_bdstrat_cb(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001857 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 }
Nathan Scottf07c2252006-09-28 10:52:15 +10001859 if (count)
1860 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001862 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001864 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865}
1866
1867/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001868 * Go through all incore buffers, and release buffers if they belong to
1869 * the given device. This is used in filesystem error handling to
1870 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 */
1872int
1873xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001874 xfs_buftarg_t *target,
1875 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
Dave Chinner089716a2010-01-26 15:13:25 +11001877 xfs_buf_t *bp;
David Chinner585e6d82007-02-10 18:32:29 +11001878 int pincount = 0;
Dave Chinner089716a2010-01-26 15:13:25 +11001879 LIST_HEAD(tmp_list);
1880 LIST_HEAD(wait_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Dave Chinnerc626d172009-04-06 18:42:11 +02001882 xfs_buf_runall_queues(xfsconvertd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001883 xfs_buf_runall_queues(xfsdatad_workqueue);
1884 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
David Chinner5e6a07d2007-02-10 18:34:49 +11001886 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
Dave Chinner089716a2010-01-26 15:13:25 +11001887 pincount = xfs_buf_delwri_split(target, &tmp_list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889 /*
Dave Chinner089716a2010-01-26 15:13:25 +11001890 * Dropped the delayed write list lock, now walk the temporary list.
1891 * All I/O is issued async and then if we need to wait for completion
1892 * we do that after issuing all the IO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 */
Dave Chinner089716a2010-01-26 15:13:25 +11001894 list_sort(NULL, &tmp_list, xfs_buf_cmp);
1895 while (!list_empty(&tmp_list)) {
1896 bp = list_first_entry(&tmp_list, struct xfs_buf, b_list);
David Chinner585e6d82007-02-10 18:32:29 +11001897 ASSERT(target == bp->b_target);
Dave Chinner089716a2010-01-26 15:13:25 +11001898 list_del_init(&bp->b_list);
1899 if (wait) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001900 bp->b_flags &= ~XBF_ASYNC;
Dave Chinner089716a2010-01-26 15:13:25 +11001901 list_add(&bp->b_list, &wait_list);
1902 }
Christoph Hellwig939d7232010-07-20 17:51:16 +10001903 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 }
1905
Dave Chinner089716a2010-01-26 15:13:25 +11001906 if (wait) {
1907 /* Expedite and wait for IO to complete. */
Nathan Scottf07c2252006-09-28 10:52:15 +10001908 blk_run_address_space(target->bt_mapping);
Dave Chinner089716a2010-01-26 15:13:25 +11001909 while (!list_empty(&wait_list)) {
1910 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
Nathan Scottf07c2252006-09-28 10:52:15 +10001911
Dave Chinner089716a2010-01-26 15:13:25 +11001912 list_del_init(&bp->b_list);
1913 xfs_iowait(bp);
1914 xfs_buf_relse(bp);
1915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 }
1917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 return pincount;
1919}
1920
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001921int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001922xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
Nathan Scott87582802006-03-14 13:18:19 +11001924 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1925 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001926 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001927 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001928
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001929 xfslogd_workqueue = create_workqueue("xfslogd");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001930 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001931 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001933 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001934 if (!xfsdatad_workqueue)
1935 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Dave Chinnerc626d172009-04-06 18:42:11 +02001937 xfsconvertd_workqueue = create_workqueue("xfsconvertd");
1938 if (!xfsconvertd_workqueue)
1939 goto out_destroy_xfsdatad_workqueue;
1940
Rusty Russell8e1f9362007-07-17 04:03:17 -07001941 register_shrinker(&xfs_buf_shake);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001942 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Dave Chinnerc626d172009-04-06 18:42:11 +02001944 out_destroy_xfsdatad_workqueue:
1945 destroy_workqueue(xfsdatad_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001946 out_destroy_xfslogd_workqueue:
1947 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001948 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001949 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001950 out:
Nathan Scott87582802006-03-14 13:18:19 +11001951 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952}
1953
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954void
Nathan Scottce8e9222006-01-11 15:39:08 +11001955xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956{
Rusty Russell8e1f9362007-07-17 04:03:17 -07001957 unregister_shrinker(&xfs_buf_shake);
Dave Chinnerc626d172009-04-06 18:42:11 +02001958 destroy_workqueue(xfsconvertd_workqueue);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001959 destroy_workqueue(xfsdatad_workqueue);
1960 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001961 kmem_zone_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001963
1964#ifdef CONFIG_KDB_MODULES
1965struct list_head *
1966xfs_get_buftarg_list(void)
1967{
1968 return &xfs_buftarg_list;
1969}
1970#endif