blob: d6928970097fd9047cd7bed4097072e74b869138 [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) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100443 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 goto found;
445 }
446 }
447
448 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100449 if (new_bp) {
450 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 range_length, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100452 new_bp->b_hash = hash;
453 list_add(&new_bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100455 XFS_STATS_INC(xb_miss_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457
458 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100459 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461found:
462 spin_unlock(&hash->bh_lock);
463
464 /* Attempt to get the semaphore without sleeping,
465 * if this does not work then we need to drop the
466 * spinlock and do a hard attempt on the semaphore.
467 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100468 if (down_trylock(&bp->b_sema)) {
469 if (!(flags & XBF_TRYLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 /* wait for buffer ownership */
Nathan Scottce8e9222006-01-11 15:39:08 +1100471 xfs_buf_lock(bp);
472 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 } else {
474 /* We asked for a trylock and failed, no need
475 * to look at file offset and length here, we
Nathan Scottce8e9222006-01-11 15:39:08 +1100476 * know that this buffer at least overlaps our
477 * buffer and is locked, therefore our buffer
478 * either does not exist, or is this buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100480 xfs_buf_rele(bp);
481 XFS_STATS_INC(xb_busy_locked);
482 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484 } else {
485 /* trylock worked */
Nathan Scottce8e9222006-01-11 15:39:08 +1100486 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488
Nathan Scottce8e9222006-01-11 15:39:08 +1100489 if (bp->b_flags & XBF_STALE) {
490 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
491 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000492 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000493
494 trace_xfs_buf_find(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100495 XFS_STATS_INC(xb_get_locked);
496 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
499/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100500 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 * Storage in memory for all portions of the buffer will be allocated,
502 * although backing storage may not be.
503 */
504xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000505xfs_buf_get(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100507 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100509 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Nathan Scottce8e9222006-01-11 15:39:08 +1100511 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 int error = 0, i;
513
Nathan Scottce8e9222006-01-11 15:39:08 +1100514 new_bp = xfs_buf_allocate(flags);
515 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return NULL;
517
Nathan Scottce8e9222006-01-11 15:39:08 +1100518 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
519 if (bp == new_bp) {
520 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (error)
522 goto no_buffer;
523 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100524 xfs_buf_deallocate(new_bp);
525 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return NULL;
527 }
528
Nathan Scottce8e9222006-01-11 15:39:08 +1100529 for (i = 0; i < bp->b_page_count; i++)
530 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Nathan Scottce8e9222006-01-11 15:39:08 +1100532 if (!(bp->b_flags & XBF_MAPPED)) {
533 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (unlikely(error)) {
535 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000536 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 goto no_buffer;
538 }
539 }
540
Nathan Scottce8e9222006-01-11 15:39:08 +1100541 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 /*
544 * Always fill in the block number now, the mapped cases can do
545 * their own overlay of this later.
546 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100547 bp->b_bn = ioff;
548 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000550 trace_xfs_buf_get(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100551 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100554 if (flags & (XBF_LOCK | XBF_TRYLOCK))
555 xfs_buf_unlock(bp);
556 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return NULL;
558}
559
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100560STATIC int
561_xfs_buf_read(
562 xfs_buf_t *bp,
563 xfs_buf_flags_t flags)
564{
565 int status;
566
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100567 ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE)));
568 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
569
570 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
571 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
572 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | \
573 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
574
575 status = xfs_buf_iorequest(bp);
Dave Chinnerec53d1d2010-07-20 17:52:59 +1000576 if (status || XFS_BUF_ISERROR(bp) || (flags & XBF_ASYNC))
577 return status;
578 return xfs_buf_iowait(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000582xfs_buf_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100584 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100586 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Nathan Scottce8e9222006-01-11 15:39:08 +1100588 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Nathan Scottce8e9222006-01-11 15:39:08 +1100590 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000592 bp = xfs_buf_get(target, ioff, isize, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100593 if (bp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000594 trace_xfs_buf_read(bp, flags, _RET_IP_);
595
Nathan Scottce8e9222006-01-11 15:39:08 +1100596 if (!XFS_BUF_ISDONE(bp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100597 XFS_STATS_INC(xb_get_read);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100598 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100599 } else if (flags & XBF_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 /*
601 * Read ahead call which is already satisfied,
602 * drop the buffer
603 */
604 goto no_buffer;
605 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100607 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609 }
610
Nathan Scottce8e9222006-01-11 15:39:08 +1100611 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100614 if (flags & (XBF_LOCK | XBF_TRYLOCK))
615 xfs_buf_unlock(bp);
616 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return NULL;
618}
619
620/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100621 * If we are not low on memory then do the readahead in a deadlock
622 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 */
624void
Nathan Scottce8e9222006-01-11 15:39:08 +1100625xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100627 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100629 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
631 struct backing_dev_info *bdi;
632
Nathan Scottce8e9222006-01-11 15:39:08 +1100633 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (bdi_read_congested(bdi))
635 return;
636
Nathan Scottce8e9222006-01-11 15:39:08 +1100637 flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000638 xfs_buf_read(target, ioff, isize, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Dave Chinner5adc94c2010-09-24 21:58:31 +1000641/*
642 * Read an uncached buffer from disk. Allocates and returns a locked
643 * buffer containing the disk contents or nothing.
644 */
645struct xfs_buf *
646xfs_buf_read_uncached(
647 struct xfs_mount *mp,
648 struct xfs_buftarg *target,
649 xfs_daddr_t daddr,
650 size_t length,
651 int flags)
652{
653 xfs_buf_t *bp;
654 int error;
655
656 bp = xfs_buf_get_uncached(target, length, flags);
657 if (!bp)
658 return NULL;
659
660 /* set up the buffer for a read IO */
661 xfs_buf_lock(bp);
662 XFS_BUF_SET_ADDR(bp, daddr);
663 XFS_BUF_READ(bp);
664 XFS_BUF_BUSY(bp);
665
666 xfsbdstrat(mp, bp);
667 error = xfs_iowait(bp);
668 if (error || bp->b_error) {
669 xfs_buf_relse(bp);
670 return NULL;
671 }
672 return bp;
673}
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100676xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 size_t len,
678 xfs_buftarg_t *target)
679{
Nathan Scottce8e9222006-01-11 15:39:08 +1100680 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Nathan Scottce8e9222006-01-11 15:39:08 +1100682 bp = xfs_buf_allocate(0);
683 if (bp)
684 _xfs_buf_initialize(bp, target, 0, len, 0);
685 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
688static inline struct page *
689mem_to_page(
690 void *addr)
691{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800692 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return virt_to_page(addr);
694 } else {
695 return vmalloc_to_page(addr);
696 }
697}
698
699int
Nathan Scottce8e9222006-01-11 15:39:08 +1100700xfs_buf_associate_memory(
701 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 void *mem,
703 size_t len)
704{
705 int rval;
706 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100707 unsigned long pageaddr;
708 unsigned long offset;
709 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 int page_count;
711
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100712 pageaddr = (unsigned long)mem & PAGE_CACHE_MASK;
713 offset = (unsigned long)mem - pageaddr;
714 buflen = PAGE_CACHE_ALIGN(len + offset);
715 page_count = buflen >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100718 if (bp->b_pages)
719 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Nathan Scottce8e9222006-01-11 15:39:08 +1100721 bp->b_pages = NULL;
722 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Christoph Hellwig36fae172009-07-18 18:14:58 -0400724 rval = _xfs_buf_get_pages(bp, page_count, XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (rval)
726 return rval;
727
Nathan Scottce8e9222006-01-11 15:39:08 +1100728 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100730 for (i = 0; i < bp->b_page_count; i++) {
731 bp->b_pages[i] = mem_to_page((void *)pageaddr);
732 pageaddr += PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100735 bp->b_count_desired = len;
736 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100737 bp->b_flags |= XBF_MAPPED;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000738 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 return 0;
741}
742
743xfs_buf_t *
Dave Chinner686865f2010-09-24 20:07:47 +1000744xfs_buf_get_uncached(
745 struct xfs_buftarg *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 size_t len,
Dave Chinner686865f2010-09-24 20:07:47 +1000747 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000749 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
750 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Nathan Scottce8e9222006-01-11 15:39:08 +1100753 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (unlikely(bp == NULL))
755 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100756 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000758 error = _xfs_buf_get_pages(bp, page_count, 0);
759 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 goto fail_free_buf;
761
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000762 for (i = 0; i < page_count; i++) {
Dave Chinner686865f2010-09-24 20:07:47 +1000763 bp->b_pages[i] = alloc_page(xb_to_gfp(flags));
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000764 if (!bp->b_pages[i])
765 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000767 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000769 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
770 if (unlikely(error)) {
771 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000772 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Nathan Scottce8e9222006-01-11 15:39:08 +1100776 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Dave Chinner686865f2010-09-24 20:07:47 +1000778 trace_xfs_buf_get_uncached(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000782 while (--i >= 0)
783 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000784 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000786 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 fail:
788 return NULL;
789}
790
791/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 * Increment reference count on buffer, to hold the buffer concurrently
793 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 * Must hold the buffer already to call this function.
795 */
796void
Nathan Scottce8e9222006-01-11 15:39:08 +1100797xfs_buf_hold(
798 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000800 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100801 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
804/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100805 * Releases a hold on the specified buffer. If the
806 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 */
808void
Nathan Scottce8e9222006-01-11 15:39:08 +1100809xfs_buf_rele(
810 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Nathan Scottce8e9222006-01-11 15:39:08 +1100812 xfs_bufhash_t *hash = bp->b_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000814 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Nathan Scottfad3aa12006-02-01 12:14:52 +1100816 if (unlikely(!hash)) {
817 ASSERT(!bp->b_relse);
818 if (atomic_dec_and_test(&bp->b_hold))
819 xfs_buf_free(bp);
820 return;
821 }
822
Lachlan McIlroy37906892008-08-13 15:42:10 +1000823 ASSERT(atomic_read(&bp->b_hold) > 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100824 if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) {
825 if (bp->b_relse) {
826 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100828 (*(bp->b_relse)) (bp);
829 } else if (bp->b_flags & XBF_FS_MANAGED) {
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100830 spin_unlock(&hash->bh_lock);
831 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100832 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
833 list_del_init(&bp->b_hash_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100835 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837 }
838}
839
840
841/*
842 * Mutual exclusion on buffers. Locking model:
843 *
844 * Buffers associated with inodes for which buffer locking
845 * is not enabled are not protected by semaphores, and are
846 * assumed to be exclusively owned by the caller. There is a
847 * spinlock in the buffer, used by the caller when concurrent
848 * access is possible.
849 */
850
851/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100852 * Locks a buffer object, if it is not already locked.
853 * Note that this in no way locks the underlying pages, so it is only
854 * useful for synchronizing concurrent use of buffer objects, not for
855 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 */
857int
Nathan Scottce8e9222006-01-11 15:39:08 +1100858xfs_buf_cond_lock(
859 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
861 int locked;
862
Nathan Scottce8e9222006-01-11 15:39:08 +1100863 locked = down_trylock(&bp->b_sema) == 0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000864 if (locked)
Nathan Scottce8e9222006-01-11 15:39:08 +1100865 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000866
867 trace_xfs_buf_cond_lock(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100868 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871int
Nathan Scottce8e9222006-01-11 15:39:08 +1100872xfs_buf_lock_value(
873 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Stephen Rothwelladaa6932008-04-22 15:26:13 +1000875 return bp->b_sema.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100879 * Locks a buffer object.
880 * Note that this in no way locks the underlying pages, so it is only
881 * useful for synchronizing concurrent use of buffer objects, not for
882 * synchronizing independent access to the underlying pages.
Dave Chinnered3b4d62010-05-21 12:07:08 +1000883 *
884 * If we come across a stale, pinned, locked buffer, we know that we
885 * are being asked to lock a buffer that has been reallocated. Because
886 * it is pinned, we know that the log has not been pushed to disk and
887 * hence it will still be locked. Rather than sleeping until someone
888 * else pushes the log, push it ourselves before trying to get the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100890void
891xfs_buf_lock(
892 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000894 trace_xfs_buf_lock(bp, _RET_IP_);
895
Dave Chinnered3b4d62010-05-21 12:07:08 +1000896 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
Dave Chinnerebad8612010-09-22 10:47:20 +1000897 xfs_log_force(bp->b_target->bt_mount, 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100898 if (atomic_read(&bp->b_io_remaining))
899 blk_run_address_space(bp->b_target->bt_mapping);
900 down(&bp->b_sema);
901 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000902
903 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905
906/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100907 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000908 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100909 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000910 * take a reference for the delwri queue because the unlocker is going to
911 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 */
913void
Nathan Scottce8e9222006-01-11 15:39:08 +1100914xfs_buf_unlock(
915 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Nathan Scottce8e9222006-01-11 15:39:08 +1100917 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
918 atomic_inc(&bp->b_hold);
919 bp->b_flags |= XBF_ASYNC;
920 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000921 }
922
Nathan Scottce8e9222006-01-11 15:39:08 +1100923 XB_CLEAR_OWNER(bp);
924 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000925
926 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
Nathan Scottce8e9222006-01-11 15:39:08 +1100929STATIC void
930xfs_buf_wait_unpin(
931 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
933 DECLARE_WAITQUEUE (wait, current);
934
Nathan Scottce8e9222006-01-11 15:39:08 +1100935 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return;
937
Nathan Scottce8e9222006-01-11 15:39:08 +1100938 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 for (;;) {
940 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100941 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 break;
Nathan Scottce8e9222006-01-11 15:39:08 +1100943 if (atomic_read(&bp->b_io_remaining))
944 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 schedule();
946 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100947 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 set_current_state(TASK_RUNNING);
949}
950
951/*
952 * Buffer Utility Routines
953 */
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100956xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +0000957 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
David Howellsc4028952006-11-22 14:57:56 +0000959 xfs_buf_t *bp =
960 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
David Chinner0bfefc42007-05-14 18:24:23 +1000962 /*
963 * We can get an EOPNOTSUPP to ordered writes. Here we clear the
964 * ordered flag and reissue them. Because we can't tell the higher
965 * layers directly that they should not issue ordered I/O anymore, they
Christoph Hellwig73f6aa42008-10-10 17:28:29 +1100966 * need to check if the _XFS_BARRIER_FAILED flag was set during I/O completion.
David Chinner0bfefc42007-05-14 18:24:23 +1000967 */
968 if ((bp->b_error == EOPNOTSUPP) &&
969 (bp->b_flags & (XBF_ORDERED|XBF_ASYNC)) == (XBF_ORDERED|XBF_ASYNC)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000970 trace_xfs_buf_ordered_retry(bp, _RET_IP_);
David Chinner0bfefc42007-05-14 18:24:23 +1000971 bp->b_flags &= ~XBF_ORDERED;
Christoph Hellwig73f6aa42008-10-10 17:28:29 +1100972 bp->b_flags |= _XFS_BARRIER_FAILED;
David Chinner0bfefc42007-05-14 18:24:23 +1000973 xfs_buf_iorequest(bp);
974 } else if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +1100975 (*(bp->b_iodone))(bp);
976 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 xfs_buf_relse(bp);
978}
979
980void
Nathan Scottce8e9222006-01-11 15:39:08 +1100981xfs_buf_ioend(
982 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 int schedule)
984{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000985 trace_xfs_buf_iodone(bp, _RET_IP_);
986
Lachlan McIlroy77be55a2007-11-23 16:31:00 +1100987 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +1100988 if (bp->b_error == 0)
989 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Nathan Scottce8e9222006-01-11 15:39:08 +1100991 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +0000993 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +1100994 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 } else {
David Howellsc4028952006-11-22 14:57:56 +0000996 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
998 } else {
David Chinnerb4dd3302008-08-13 16:36:11 +1000999 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 }
1001}
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003void
Nathan Scottce8e9222006-01-11 15:39:08 +11001004xfs_buf_ioerror(
1005 xfs_buf_t *bp,
1006 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
1008 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001009 bp->b_error = (unsigned short)error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001010 trace_xfs_buf_ioerror(bp, error, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013int
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001014xfs_bwrite(
1015 struct xfs_mount *mp,
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001016 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Christoph Hellwig8c383662010-03-12 10:59:40 +00001018 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001020 bp->b_flags |= XBF_WRITE;
Christoph Hellwig8c383662010-03-12 10:59:40 +00001021 bp->b_flags &= ~(XBF_ASYNC | XBF_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001023 xfs_buf_delwri_dequeue(bp);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001024 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Christoph Hellwig8c383662010-03-12 10:59:40 +00001026 error = xfs_buf_iowait(bp);
1027 if (error)
1028 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1029 xfs_buf_relse(bp);
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001030 return error;
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001031}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001033void
1034xfs_bdwrite(
1035 void *mp,
1036 struct xfs_buf *bp)
1037{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001038 trace_xfs_buf_bdwrite(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001040 bp->b_flags &= ~XBF_READ;
1041 bp->b_flags |= (XBF_DELWRI | XBF_ASYNC);
1042
1043 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
Christoph Hellwig4e234712010-01-13 22:17:56 +00001046/*
1047 * Called when we want to stop a buffer from getting written or read.
1048 * We attach the EIO error, muck with its flags, and call biodone
1049 * so that the proper iodone callbacks get called.
1050 */
1051STATIC int
1052xfs_bioerror(
1053 xfs_buf_t *bp)
1054{
1055#ifdef XFSERRORDEBUG
1056 ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
1057#endif
1058
1059 /*
1060 * No need to wait until the buffer is unpinned, we aren't flushing it.
1061 */
1062 XFS_BUF_ERROR(bp, EIO);
1063
1064 /*
1065 * We're calling biodone, so delete XBF_DONE flag.
1066 */
1067 XFS_BUF_UNREAD(bp);
1068 XFS_BUF_UNDELAYWRITE(bp);
1069 XFS_BUF_UNDONE(bp);
1070 XFS_BUF_STALE(bp);
1071
Christoph Hellwig4e234712010-01-13 22:17:56 +00001072 xfs_biodone(bp);
1073
1074 return EIO;
1075}
1076
1077/*
1078 * Same as xfs_bioerror, except that we are releasing the buffer
1079 * here ourselves, and avoiding the biodone call.
1080 * This is meant for userdata errors; metadata bufs come with
1081 * iodone functions attached, so that we can track down errors.
1082 */
1083STATIC int
1084xfs_bioerror_relse(
1085 struct xfs_buf *bp)
1086{
1087 int64_t fl = XFS_BUF_BFLAGS(bp);
1088 /*
1089 * No need to wait until the buffer is unpinned.
1090 * We aren't flushing it.
1091 *
1092 * chunkhold expects B_DONE to be set, whether
1093 * we actually finish the I/O or not. We don't want to
1094 * change that interface.
1095 */
1096 XFS_BUF_UNREAD(bp);
1097 XFS_BUF_UNDELAYWRITE(bp);
1098 XFS_BUF_DONE(bp);
1099 XFS_BUF_STALE(bp);
1100 XFS_BUF_CLR_IODONE_FUNC(bp);
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001101 if (!(fl & XBF_ASYNC)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001102 /*
1103 * Mark b_error and B_ERROR _both_.
1104 * Lot's of chunkcache code assumes that.
1105 * There's no reason to mark error for
1106 * ASYNC buffers.
1107 */
1108 XFS_BUF_ERROR(bp, EIO);
1109 XFS_BUF_FINISH_IOWAIT(bp);
1110 } else {
1111 xfs_buf_relse(bp);
1112 }
1113
1114 return EIO;
1115}
1116
1117
1118/*
1119 * All xfs metadata buffers except log state machine buffers
1120 * get this attached as their b_bdstrat callback function.
1121 * This is so that we can catch a buffer
1122 * after prematurely unpinning it to forcibly shutdown the filesystem.
1123 */
1124int
1125xfs_bdstrat_cb(
1126 struct xfs_buf *bp)
1127{
Dave Chinnerebad8612010-09-22 10:47:20 +10001128 if (XFS_FORCED_SHUTDOWN(bp->b_target->bt_mount)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001129 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1130 /*
1131 * Metadata write that didn't get logged but
1132 * written delayed anyway. These aren't associated
1133 * with a transaction, and can be ignored.
1134 */
1135 if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
1136 return xfs_bioerror_relse(bp);
1137 else
1138 return xfs_bioerror(bp);
1139 }
1140
1141 xfs_buf_iorequest(bp);
1142 return 0;
1143}
1144
1145/*
1146 * Wrapper around bdstrat so that we can stop data from going to disk in case
1147 * we are shutting down the filesystem. Typically user data goes thru this
1148 * path; one of the exceptions is the superblock.
1149 */
1150void
1151xfsbdstrat(
1152 struct xfs_mount *mp,
1153 struct xfs_buf *bp)
1154{
1155 if (XFS_FORCED_SHUTDOWN(mp)) {
1156 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1157 xfs_bioerror_relse(bp);
1158 return;
1159 }
1160
1161 xfs_buf_iorequest(bp);
1162}
1163
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001164STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001165_xfs_buf_ioend(
1166 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 int schedule)
1168{
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001169 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1170 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Nathan Scottce8e9222006-01-11 15:39:08 +11001171 xfs_buf_ioend(bp, schedule);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
1174
Al Viro782e3b32007-10-12 07:17:47 +01001175STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001176xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 int error)
1179{
Nathan Scottce8e9222006-01-11 15:39:08 +11001180 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1181 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001182 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Lachlan McIlroycfbe5262008-12-12 15:27:25 +11001184 xfs_buf_ioerror(bp, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
James Bottomley73c77e22010-01-25 11:42:24 -06001186 if (!error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
1187 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1188
Nathan Scotteedb5532005-09-02 16:39:56 +10001189 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 struct page *page = bvec->bv_page;
1191
Nathan Scott948ecdb2006-09-28 11:03:13 +10001192 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001193 if (unlikely(bp->b_error)) {
1194 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001195 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001196 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 SetPageUptodate(page);
1198 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001199 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1201 }
1202
Nathan Scotteedb5532005-09-02 16:39:56 +10001203 if (--bvec >= bio->bi_io_vec)
1204 prefetchw(&bvec->bv_page->flags);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001205
1206 if (bp->b_flags & _XBF_PAGE_LOCKED)
1207 unlock_page(page);
Nathan Scotteedb5532005-09-02 16:39:56 +10001208 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Nathan Scottce8e9222006-01-11 15:39:08 +11001210 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212}
1213
1214STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001215_xfs_buf_ioapply(
1216 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
Christoph Hellwiga9759f22007-12-07 14:07:08 +11001218 int rw, map_i, total_nr_pages, nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001220 int offset = bp->b_offset;
1221 int size = bp->b_count_desired;
1222 sector_t sector = bp->b_bn;
1223 unsigned int blocksize = bp->b_target->bt_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Nathan Scottce8e9222006-01-11 15:39:08 +11001225 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 map_i = 0;
1227
Nathan Scottce8e9222006-01-11 15:39:08 +11001228 if (bp->b_flags & XBF_ORDERED) {
1229 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001230 rw = WRITE_BARRIER;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001231 } else if (bp->b_flags & XBF_LOG_BUFFER) {
Nathan Scott51bdd702006-09-28 11:01:57 +10001232 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1233 bp->b_flags &= ~_XBF_RUN_QUEUES;
1234 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001235 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1236 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1237 bp->b_flags &= ~_XBF_RUN_QUEUES;
1238 rw = (bp->b_flags & XBF_WRITE) ? WRITE_META : READ_META;
Nathan Scott51bdd702006-09-28 11:01:57 +10001239 } else {
1240 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1241 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001242 }
1243
Nathan Scottce8e9222006-01-11 15:39:08 +11001244 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 * we populate up the whole page, and hence the other metadata
1246 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001247 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001249 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001250 ((bp->b_flags & (XBF_READ|_XBF_PAGE_LOCKED)) ==
1251 (XBF_READ|_XBF_PAGE_LOCKED)) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001252 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 bio = bio_alloc(GFP_NOIO, 1);
1254
Nathan Scottce8e9222006-01-11 15:39:08 +11001255 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001257 bio->bi_end_io = xfs_buf_bio_end_io;
1258 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Nathan Scottce8e9222006-01-11 15:39:08 +11001260 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 size = 0;
1262
Nathan Scottce8e9222006-01-11 15:39:08 +11001263 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 goto submit_io;
1266 }
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001269 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1271 if (nr_pages > total_nr_pages)
1272 nr_pages = total_nr_pages;
1273
1274 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001275 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001277 bio->bi_end_io = xfs_buf_bio_end_io;
1278 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001281 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 if (nbytes > size)
1284 nbytes = size;
1285
Nathan Scottce8e9222006-01-11 15:39:08 +11001286 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1287 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 break;
1289
1290 offset = 0;
1291 sector += nbytes >> BBSHIFT;
1292 size -= nbytes;
1293 total_nr_pages--;
1294 }
1295
1296submit_io:
1297 if (likely(bio->bi_size)) {
James Bottomley73c77e22010-01-25 11:42:24 -06001298 if (xfs_buf_is_vmapped(bp)) {
1299 flush_kernel_vmap_range(bp->b_addr,
1300 xfs_buf_vmap_len(bp));
1301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 submit_bio(rw, bio);
1303 if (size)
1304 goto next_chunk;
1305 } else {
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001306 /*
1307 * if we get here, no pages were added to the bio. However,
1308 * we can't just error out here - if the pages are locked then
1309 * we have to unlock them otherwise we can hang on a later
1310 * access to the page.
1311 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001312 xfs_buf_ioerror(bp, EIO);
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001313 if (bp->b_flags & _XBF_PAGE_LOCKED) {
1314 int i;
1315 for (i = 0; i < bp->b_page_count; i++)
1316 unlock_page(bp->b_pages[i]);
1317 }
1318 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320}
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322int
Nathan Scottce8e9222006-01-11 15:39:08 +11001323xfs_buf_iorequest(
1324 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001326 trace_xfs_buf_iorequest(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Nathan Scottce8e9222006-01-11 15:39:08 +11001328 if (bp->b_flags & XBF_DELWRI) {
1329 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 return 0;
1331 }
1332
Nathan Scottce8e9222006-01-11 15:39:08 +11001333 if (bp->b_flags & XBF_WRITE) {
1334 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 }
1336
Nathan Scottce8e9222006-01-11 15:39:08 +11001337 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 /* Set the count to 1 initially, this will stop an I/O
1340 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001341 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001343 atomic_set(&bp->b_io_remaining, 1);
1344 _xfs_buf_ioapply(bp);
1345 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Nathan Scottce8e9222006-01-11 15:39:08 +11001347 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 return 0;
1349}
1350
1351/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001352 * Waits for I/O to complete on the buffer supplied.
1353 * It returns immediately if no I/O is pending.
1354 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 */
1356int
Nathan Scottce8e9222006-01-11 15:39:08 +11001357xfs_buf_iowait(
1358 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001360 trace_xfs_buf_iowait(bp, _RET_IP_);
1361
Nathan Scottce8e9222006-01-11 15:39:08 +11001362 if (atomic_read(&bp->b_io_remaining))
1363 blk_run_address_space(bp->b_target->bt_mapping);
David Chinnerb4dd3302008-08-13 16:36:11 +10001364 wait_for_completion(&bp->b_iowait);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001365
1366 trace_xfs_buf_iowait_done(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +11001367 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
Nathan Scottce8e9222006-01-11 15:39:08 +11001370xfs_caddr_t
1371xfs_buf_offset(
1372 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 size_t offset)
1374{
1375 struct page *page;
1376
Nathan Scottce8e9222006-01-11 15:39:08 +11001377 if (bp->b_flags & XBF_MAPPED)
1378 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Nathan Scottce8e9222006-01-11 15:39:08 +11001380 offset += bp->b_offset;
1381 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1382 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
1385/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 * Move data into or out of a buffer.
1387 */
1388void
Nathan Scottce8e9222006-01-11 15:39:08 +11001389xfs_buf_iomove(
1390 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 size_t boff, /* starting buffer offset */
1392 size_t bsize, /* length to copy */
Dave Chinnerb9c48642010-01-20 10:47:39 +11001393 void *data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001394 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
1396 size_t bend, cpoff, csize;
1397 struct page *page;
1398
1399 bend = boff + bsize;
1400 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001401 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1402 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001404 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
1406 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1407
1408 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001409 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 memset(page_address(page) + cpoff, 0, csize);
1411 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001412 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 memcpy(data, page_address(page) + cpoff, csize);
1414 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001415 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 memcpy(page_address(page) + cpoff, data, csize);
1417 }
1418
1419 boff += csize;
1420 data += csize;
1421 }
1422}
1423
1424/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001425 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 */
1427
1428/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001429 * Wait for any bufs with callbacks that have been submitted but
1430 * have not yet returned... walk the hash list for the target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 */
1432void
1433xfs_wait_buftarg(
1434 xfs_buftarg_t *btp)
1435{
1436 xfs_buf_t *bp, *n;
1437 xfs_bufhash_t *hash;
1438 uint i;
1439
1440 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1441 hash = &btp->bt_hash[i];
1442again:
1443 spin_lock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001444 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
1445 ASSERT(btp == bp->b_target);
1446 if (!(bp->b_flags & XBF_FS_MANAGED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 spin_unlock(&hash->bh_lock);
David Chinner2f926582005-09-05 08:33:35 +10001448 /*
1449 * Catch superblock reference count leaks
1450 * immediately
1451 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001452 BUG_ON(bp->b_bn == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 delay(100);
1454 goto again;
1455 }
1456 }
1457 spin_unlock(&hash->bh_lock);
1458 }
1459}
1460
1461/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001462 * Allocate buffer hash table for a given target.
1463 * For devices containing metadata (i.e. not the log/realtime devices)
1464 * we need to allocate a much larger hash table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 */
1466STATIC void
1467xfs_alloc_bufhash(
1468 xfs_buftarg_t *btp,
1469 int external)
1470{
1471 unsigned int i;
1472
Dave Chinner9bc08a42010-09-02 15:14:38 +10001473 btp->bt_hashshift = external ? 3 : 12; /* 8 or 4096 buckets */
Christoph Hellwigbdfb0432010-01-20 21:55:30 +00001474 btp->bt_hash = kmem_zalloc_large((1 << btp->bt_hashshift) *
1475 sizeof(xfs_bufhash_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1477 spin_lock_init(&btp->bt_hash[i].bh_lock);
1478 INIT_LIST_HEAD(&btp->bt_hash[i].bh_list);
1479 }
1480}
1481
1482STATIC void
1483xfs_free_bufhash(
1484 xfs_buftarg_t *btp)
1485{
Christoph Hellwigbdfb0432010-01-20 21:55:30 +00001486 kmem_free_large(btp->bt_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 btp->bt_hash = NULL;
1488}
1489
David Chinnera6867a62006-01-11 15:37:58 +11001490/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001491 * buftarg list for delwrite queue processing
David Chinnera6867a62006-01-11 15:37:58 +11001492 */
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001493static LIST_HEAD(xfs_buftarg_list);
David Chinner7989cb82007-02-10 18:34:56 +11001494static DEFINE_SPINLOCK(xfs_buftarg_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001495
1496STATIC void
1497xfs_register_buftarg(
1498 xfs_buftarg_t *btp)
1499{
1500 spin_lock(&xfs_buftarg_lock);
1501 list_add(&btp->bt_list, &xfs_buftarg_list);
1502 spin_unlock(&xfs_buftarg_lock);
1503}
1504
1505STATIC void
1506xfs_unregister_buftarg(
1507 xfs_buftarg_t *btp)
1508{
1509 spin_lock(&xfs_buftarg_lock);
1510 list_del(&btp->bt_list);
1511 spin_unlock(&xfs_buftarg_lock);
1512}
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514void
1515xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001516 struct xfs_mount *mp,
1517 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
1519 xfs_flush_buftarg(btp, 1);
Christoph Hellwigb7963132009-03-03 14:48:37 -05001520 if (mp->m_flags & XFS_MOUNT_BARRIER)
1521 xfs_blkdev_issue_flush(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 xfs_free_bufhash(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001523 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001524
Nathan Scottce8e9222006-01-11 15:39:08 +11001525 /* Unregister the buftarg first so that we don't get a
1526 * wakeup finding a non-existent task
1527 */
David Chinnera6867a62006-01-11 15:37:58 +11001528 xfs_unregister_buftarg(btp);
1529 kthread_stop(btp->bt_task);
1530
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001531 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534STATIC int
1535xfs_setsize_buftarg_flags(
1536 xfs_buftarg_t *btp,
1537 unsigned int blocksize,
1538 unsigned int sectorsize,
1539 int verbose)
1540{
Nathan Scottce8e9222006-01-11 15:39:08 +11001541 btp->bt_bsize = blocksize;
1542 btp->bt_sshift = ffs(sectorsize) - 1;
1543 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Nathan Scottce8e9222006-01-11 15:39:08 +11001545 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 printk(KERN_WARNING
1547 "XFS: Cannot set_blocksize to %u on device %s\n",
1548 sectorsize, XFS_BUFTARG_NAME(btp));
1549 return EINVAL;
1550 }
1551
1552 if (verbose &&
1553 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1554 printk(KERN_WARNING
1555 "XFS: %u byte sectors in use on device %s. "
1556 "This is suboptimal; %u or greater is ideal.\n",
1557 sectorsize, XFS_BUFTARG_NAME(btp),
1558 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1559 }
1560
1561 return 0;
1562}
1563
1564/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001565 * When allocating the initial buffer target we have not yet
1566 * read in the superblock, so don't know what sized sectors
1567 * are being used is at this early stage. Play safe.
1568 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569STATIC int
1570xfs_setsize_buftarg_early(
1571 xfs_buftarg_t *btp,
1572 struct block_device *bdev)
1573{
1574 return xfs_setsize_buftarg_flags(btp,
Martin K. Petersene1defc42009-05-22 17:17:49 -04001575 PAGE_CACHE_SIZE, bdev_logical_block_size(bdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
1577
1578int
1579xfs_setsize_buftarg(
1580 xfs_buftarg_t *btp,
1581 unsigned int blocksize,
1582 unsigned int sectorsize)
1583{
1584 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1585}
1586
1587STATIC int
1588xfs_mapping_buftarg(
1589 xfs_buftarg_t *btp,
1590 struct block_device *bdev)
1591{
1592 struct backing_dev_info *bdi;
1593 struct inode *inode;
1594 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001595 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001597 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 };
1599
1600 inode = new_inode(bdev->bd_inode->i_sb);
1601 if (!inode) {
1602 printk(KERN_WARNING
1603 "XFS: Cannot allocate mapping inode for device %s\n",
1604 XFS_BUFTARG_NAME(btp));
1605 return ENOMEM;
1606 }
1607 inode->i_mode = S_IFBLK;
1608 inode->i_bdev = bdev;
1609 inode->i_rdev = bdev->bd_dev;
1610 bdi = blk_get_backing_dev_info(bdev);
1611 if (!bdi)
1612 bdi = &default_backing_dev_info;
1613 mapping = &inode->i_data;
1614 mapping->a_ops = &mapping_aops;
1615 mapping->backing_dev_info = bdi;
1616 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001617 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 return 0;
1619}
1620
David Chinnera6867a62006-01-11 15:37:58 +11001621STATIC int
1622xfs_alloc_delwrite_queue(
Jan Engelhardte2a07812010-03-23 09:52:55 +11001623 xfs_buftarg_t *btp,
1624 const char *fsname)
David Chinnera6867a62006-01-11 15:37:58 +11001625{
1626 int error = 0;
1627
1628 INIT_LIST_HEAD(&btp->bt_list);
1629 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
Eric Sandeen007c61c2007-10-11 17:43:56 +10001630 spin_lock_init(&btp->bt_delwrite_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001631 btp->bt_flags = 0;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001632 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd/%s", fsname);
David Chinnera6867a62006-01-11 15:37:58 +11001633 if (IS_ERR(btp->bt_task)) {
1634 error = PTR_ERR(btp->bt_task);
1635 goto out_error;
1636 }
1637 xfs_register_buftarg(btp);
1638out_error:
1639 return error;
1640}
1641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642xfs_buftarg_t *
1643xfs_alloc_buftarg(
Dave Chinnerebad8612010-09-22 10:47:20 +10001644 struct xfs_mount *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 struct block_device *bdev,
Jan Engelhardte2a07812010-03-23 09:52:55 +11001646 int external,
1647 const char *fsname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648{
1649 xfs_buftarg_t *btp;
1650
1651 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1652
Dave Chinnerebad8612010-09-22 10:47:20 +10001653 btp->bt_mount = mp;
Nathan Scottce8e9222006-01-11 15:39:08 +11001654 btp->bt_dev = bdev->bd_dev;
1655 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if (xfs_setsize_buftarg_early(btp, bdev))
1657 goto error;
1658 if (xfs_mapping_buftarg(btp, bdev))
1659 goto error;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001660 if (xfs_alloc_delwrite_queue(btp, fsname))
David Chinnera6867a62006-01-11 15:37:58 +11001661 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 xfs_alloc_bufhash(btp, external);
1663 return btp;
1664
1665error:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001666 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 return NULL;
1668}
1669
1670
1671/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001672 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001675xfs_buf_delwri_queue(
1676 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 int unlock)
1678{
Nathan Scottce8e9222006-01-11 15:39:08 +11001679 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1680 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001681
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001682 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1683
Nathan Scottce8e9222006-01-11 15:39:08 +11001684 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
David Chinnera6867a62006-01-11 15:37:58 +11001686 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001688 if (!list_empty(&bp->b_list)) {
1689 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1690 if (unlock)
1691 atomic_dec(&bp->b_hold);
1692 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 }
1694
Dave Chinnerc9c12972010-01-11 11:49:59 +00001695 if (list_empty(dwq)) {
1696 /* start xfsbufd as it is about to have something to do */
1697 wake_up_process(bp->b_target->bt_task);
1698 }
1699
Nathan Scottce8e9222006-01-11 15:39:08 +11001700 bp->b_flags |= _XBF_DELWRI_Q;
1701 list_add_tail(&bp->b_list, dwq);
1702 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001703 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
1705 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001706 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
1709void
Nathan Scottce8e9222006-01-11 15:39:08 +11001710xfs_buf_delwri_dequeue(
1711 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
Nathan Scottce8e9222006-01-11 15:39:08 +11001713 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 int dequeued = 0;
1715
David Chinnera6867a62006-01-11 15:37:58 +11001716 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001717 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1718 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1719 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 dequeued = 1;
1721 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001722 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001723 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001726 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001728 trace_xfs_buf_delwri_dequeue(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729}
1730
Dave Chinnerd808f612010-02-02 10:13:42 +11001731/*
1732 * If a delwri buffer needs to be pushed before it has aged out, then promote
1733 * it to the head of the delwri queue so that it will be flushed on the next
1734 * xfsbufd run. We do this by resetting the queuetime of the buffer to be older
1735 * than the age currently needed to flush the buffer. Hence the next time the
1736 * xfsbufd sees it is guaranteed to be considered old enough to flush.
1737 */
1738void
1739xfs_buf_delwri_promote(
1740 struct xfs_buf *bp)
1741{
1742 struct xfs_buftarg *btp = bp->b_target;
1743 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10) + 1;
1744
1745 ASSERT(bp->b_flags & XBF_DELWRI);
1746 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1747
1748 /*
1749 * Check the buffer age before locking the delayed write queue as we
1750 * don't need to promote buffers that are already past the flush age.
1751 */
1752 if (bp->b_queuetime < jiffies - age)
1753 return;
1754 bp->b_queuetime = jiffies - age;
1755 spin_lock(&btp->bt_delwrite_lock);
1756 list_move(&bp->b_list, &btp->bt_delwrite_queue);
1757 spin_unlock(&btp->bt_delwrite_lock);
1758}
1759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001761xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 struct workqueue_struct *queue)
1763{
1764 flush_workqueue(queue);
1765}
1766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001768xfsbufd_wakeup(
Dave Chinner7f8275d2010-07-19 14:56:17 +10001769 struct shrinker *shrink,
Nathan Scott15c84a42005-11-04 10:51:01 +11001770 int priority,
1771 gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001773 xfs_buftarg_t *btp;
David Chinnera6867a62006-01-11 15:37:58 +11001774
1775 spin_lock(&xfs_buftarg_lock);
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001776 list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001777 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
David Chinnera6867a62006-01-11 15:37:58 +11001778 continue;
Dave Chinnerc9c12972010-01-11 11:49:59 +00001779 if (list_empty(&btp->bt_delwrite_queue))
1780 continue;
Nathan Scottce8e9222006-01-11 15:39:08 +11001781 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
David Chinnera6867a62006-01-11 15:37:58 +11001782 wake_up_process(btp->bt_task);
1783 }
1784 spin_unlock(&xfs_buftarg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 return 0;
1786}
1787
David Chinner585e6d82007-02-10 18:32:29 +11001788/*
1789 * Move as many buffers as specified to the supplied list
1790 * idicating if we skipped any buffers to prevent deadlocks.
1791 */
1792STATIC int
1793xfs_buf_delwri_split(
1794 xfs_buftarg_t *target,
1795 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001796 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001797{
1798 xfs_buf_t *bp, *n;
1799 struct list_head *dwq = &target->bt_delwrite_queue;
1800 spinlock_t *dwlk = &target->bt_delwrite_lock;
1801 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001802 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001803
David Chinner5e6a07d2007-02-10 18:34:49 +11001804 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001805 INIT_LIST_HEAD(list);
1806 spin_lock(dwlk);
1807 list_for_each_entry_safe(bp, n, dwq, b_list) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001808 trace_xfs_buf_delwri_split(bp, _RET_IP_);
David Chinner585e6d82007-02-10 18:32:29 +11001809 ASSERT(bp->b_flags & XBF_DELWRI);
1810
Christoph Hellwig4d16e922010-06-23 18:11:15 +10001811 if (!XFS_BUF_ISPINNED(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001812 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001813 time_before(jiffies, bp->b_queuetime + age)) {
1814 xfs_buf_unlock(bp);
1815 break;
1816 }
1817
1818 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1819 _XBF_RUN_QUEUES);
1820 bp->b_flags |= XBF_WRITE;
1821 list_move_tail(&bp->b_list, list);
1822 } else
1823 skipped++;
1824 }
1825 spin_unlock(dwlk);
1826
1827 return skipped;
1828
1829}
1830
Dave Chinner089716a2010-01-26 15:13:25 +11001831/*
1832 * Compare function is more complex than it needs to be because
1833 * the return value is only 32 bits and we are doing comparisons
1834 * on 64 bit values
1835 */
1836static int
1837xfs_buf_cmp(
1838 void *priv,
1839 struct list_head *a,
1840 struct list_head *b)
1841{
1842 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1843 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1844 xfs_daddr_t diff;
1845
1846 diff = ap->b_bn - bp->b_bn;
1847 if (diff < 0)
1848 return -1;
1849 if (diff > 0)
1850 return 1;
1851 return 0;
1852}
1853
1854void
1855xfs_buf_delwri_sort(
1856 xfs_buftarg_t *target,
1857 struct list_head *list)
1858{
1859 list_sort(NULL, list, xfs_buf_cmp);
1860}
1861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001863xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001864 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865{
Dave Chinner089716a2010-01-26 15:13:25 +11001866 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 current->flags |= PF_MEMALLOC;
1869
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001870 set_freezable();
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 do {
Dave Chinnerc9c12972010-01-11 11:49:59 +00001873 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10);
1874 long tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10);
Dave Chinner089716a2010-01-26 15:13:25 +11001875 int count = 0;
1876 struct list_head tmp;
Dave Chinnerc9c12972010-01-11 11:49:59 +00001877
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001878 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001879 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001880 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001881 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001882 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Dave Chinnerc9c12972010-01-11 11:49:59 +00001885 /* sleep for a long time if there is nothing to do. */
1886 if (list_empty(&target->bt_delwrite_queue))
1887 tout = MAX_SCHEDULE_TIMEOUT;
1888 schedule_timeout_interruptible(tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Dave Chinnerc9c12972010-01-11 11:49:59 +00001890 xfs_buf_delwri_split(target, &tmp, age);
Dave Chinner089716a2010-01-26 15:13:25 +11001891 list_sort(NULL, &tmp, xfs_buf_cmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 while (!list_empty(&tmp)) {
Dave Chinner089716a2010-01-26 15:13:25 +11001893 struct xfs_buf *bp;
1894 bp = list_first_entry(&tmp, struct xfs_buf, b_list);
Nathan Scottce8e9222006-01-11 15:39:08 +11001895 list_del_init(&bp->b_list);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001896 xfs_bdstrat_cb(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001897 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
Nathan Scottf07c2252006-09-28 10:52:15 +10001899 if (count)
1900 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001902 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001904 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905}
1906
1907/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001908 * Go through all incore buffers, and release buffers if they belong to
1909 * the given device. This is used in filesystem error handling to
1910 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 */
1912int
1913xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001914 xfs_buftarg_t *target,
1915 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
Dave Chinner089716a2010-01-26 15:13:25 +11001917 xfs_buf_t *bp;
David Chinner585e6d82007-02-10 18:32:29 +11001918 int pincount = 0;
Dave Chinner089716a2010-01-26 15:13:25 +11001919 LIST_HEAD(tmp_list);
1920 LIST_HEAD(wait_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
Dave Chinnerc626d172009-04-06 18:42:11 +02001922 xfs_buf_runall_queues(xfsconvertd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001923 xfs_buf_runall_queues(xfsdatad_workqueue);
1924 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
David Chinner5e6a07d2007-02-10 18:34:49 +11001926 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
Dave Chinner089716a2010-01-26 15:13:25 +11001927 pincount = xfs_buf_delwri_split(target, &tmp_list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929 /*
Dave Chinner089716a2010-01-26 15:13:25 +11001930 * Dropped the delayed write list lock, now walk the temporary list.
1931 * All I/O is issued async and then if we need to wait for completion
1932 * we do that after issuing all the IO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 */
Dave Chinner089716a2010-01-26 15:13:25 +11001934 list_sort(NULL, &tmp_list, xfs_buf_cmp);
1935 while (!list_empty(&tmp_list)) {
1936 bp = list_first_entry(&tmp_list, struct xfs_buf, b_list);
David Chinner585e6d82007-02-10 18:32:29 +11001937 ASSERT(target == bp->b_target);
Dave Chinner089716a2010-01-26 15:13:25 +11001938 list_del_init(&bp->b_list);
1939 if (wait) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001940 bp->b_flags &= ~XBF_ASYNC;
Dave Chinner089716a2010-01-26 15:13:25 +11001941 list_add(&bp->b_list, &wait_list);
1942 }
Christoph Hellwig939d7232010-07-20 17:51:16 +10001943 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 }
1945
Dave Chinner089716a2010-01-26 15:13:25 +11001946 if (wait) {
1947 /* Expedite and wait for IO to complete. */
Nathan Scottf07c2252006-09-28 10:52:15 +10001948 blk_run_address_space(target->bt_mapping);
Dave Chinner089716a2010-01-26 15:13:25 +11001949 while (!list_empty(&wait_list)) {
1950 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
Nathan Scottf07c2252006-09-28 10:52:15 +10001951
Dave Chinner089716a2010-01-26 15:13:25 +11001952 list_del_init(&bp->b_list);
1953 xfs_iowait(bp);
1954 xfs_buf_relse(bp);
1955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 }
1957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 return pincount;
1959}
1960
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001961int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001962xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
Nathan Scott87582802006-03-14 13:18:19 +11001964 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1965 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001966 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001967 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001968
Dave Chinner51749e42010-09-08 09:00:22 +00001969 xfslogd_workqueue = alloc_workqueue("xfslogd",
1970 WQ_RESCUER | WQ_HIGHPRI, 1);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001971 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001972 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001974 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001975 if (!xfsdatad_workqueue)
1976 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Dave Chinnerc626d172009-04-06 18:42:11 +02001978 xfsconvertd_workqueue = create_workqueue("xfsconvertd");
1979 if (!xfsconvertd_workqueue)
1980 goto out_destroy_xfsdatad_workqueue;
1981
Rusty Russell8e1f9362007-07-17 04:03:17 -07001982 register_shrinker(&xfs_buf_shake);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001983 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Dave Chinnerc626d172009-04-06 18:42:11 +02001985 out_destroy_xfsdatad_workqueue:
1986 destroy_workqueue(xfsdatad_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001987 out_destroy_xfslogd_workqueue:
1988 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001989 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001990 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001991 out:
Nathan Scott87582802006-03-14 13:18:19 +11001992 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993}
1994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995void
Nathan Scottce8e9222006-01-11 15:39:08 +11001996xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
Rusty Russell8e1f9362007-07-17 04:03:17 -07001998 unregister_shrinker(&xfs_buf_shake);
Dave Chinnerc626d172009-04-06 18:42:11 +02001999 destroy_workqueue(xfsconvertd_workqueue);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002000 destroy_workqueue(xfsdatad_workqueue);
2001 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11002002 kmem_zone_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10002004
2005#ifdef CONFIG_KDB_MODULES
2006struct list_head *
2007xfs_get_buftarg_list(void)
2008{
2009 return &xfs_buftarg_list;
2010}
2011#endif