blob: 749d7d39d6577e749bb2bf6198895cfd737b9a16 [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);
Dave Chinner74f75a02010-09-24 19:59:04 +1000191 RB_CLEAR_NODE(&bp->b_rbnode);
Nathan Scottce8e9222006-01-11 15:39:08 +1100192 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
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000265 if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 uint i;
267
James Bottomley73c77e22010-01-25 11:42:24 -0600268 if (xfs_buf_is_vmapped(bp))
Alex Elder8a262e52010-03-16 18:55:56 +0000269 vm_unmap_ram(bp->b_addr - bp->b_offset,
270 bp->b_page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Nathan Scott948ecdb2006-09-28 11:03:13 +1000272 for (i = 0; i < bp->b_page_count; i++) {
273 struct page *page = bp->b_pages[i];
274
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000275 if (bp->b_flags & _XBF_PAGE_CACHE)
276 ASSERT(!PagePrivate(page));
Nathan Scott948ecdb2006-09-28 11:03:13 +1000277 page_cache_release(page);
278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
Dave Chinner3fc98b12009-12-14 23:11:57 +0000280 _xfs_buf_free_pages(bp);
Nathan Scottce8e9222006-01-11 15:39:08 +1100281 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
284/*
285 * Finds all pages for buffer in question and builds it's page list.
286 */
287STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100288_xfs_buf_lookup_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 xfs_buf_t *bp,
290 uint flags)
291{
Nathan Scottce8e9222006-01-11 15:39:08 +1100292 struct address_space *mapping = bp->b_target->bt_mapping;
293 size_t blocksize = bp->b_target->bt_bsize;
294 size_t size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100296 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 unsigned short page_count, i;
298 pgoff_t first;
Nathan Scott204ab252006-01-11 20:50:22 +1100299 xfs_off_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 int error;
301
Nathan Scottce8e9222006-01-11 15:39:08 +1100302 end = bp->b_file_offset + bp->b_buffer_length;
303 page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Nathan Scottce8e9222006-01-11 15:39:08 +1100305 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (unlikely(error))
307 return error;
Nathan Scottce8e9222006-01-11 15:39:08 +1100308 bp->b_flags |= _XBF_PAGE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Nathan Scottce8e9222006-01-11 15:39:08 +1100310 offset = bp->b_offset;
311 first = bp->b_file_offset >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Nathan Scottce8e9222006-01-11 15:39:08 +1100313 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 struct page *page;
315 uint retries = 0;
316
317 retry:
318 page = find_or_create_page(mapping, first + i, gfp_mask);
319 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100320 if (flags & XBF_READ_AHEAD) {
321 bp->b_page_count = i;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000322 for (i = 0; i < bp->b_page_count; i++)
323 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return -ENOMEM;
325 }
326
327 /*
328 * This could deadlock.
329 *
330 * But until all the XFS lowlevel code is revamped to
331 * handle buffer allocation failures we can't do much.
332 */
333 if (!(++retries % 100))
334 printk(KERN_ERR
335 "XFS: possible memory allocation "
336 "deadlock in %s (mode:0x%x)\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000337 __func__, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Nathan Scottce8e9222006-01-11 15:39:08 +1100339 XFS_STATS_INC(xb_page_retries);
Dave Chinner7f8275d2010-07-19 14:56:17 +1000340 xfsbufd_wakeup(NULL, 0, gfp_mask);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200341 congestion_wait(BLK_RW_ASYNC, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 goto retry;
343 }
344
Nathan Scottce8e9222006-01-11 15:39:08 +1100345 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
348 size -= nbytes;
349
Nathan Scott948ecdb2006-09-28 11:03:13 +1000350 ASSERT(!PagePrivate(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (!PageUptodate(page)) {
352 page_count--;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000353 if (blocksize >= PAGE_CACHE_SIZE) {
354 if (flags & XBF_READ)
355 bp->b_flags |= _XBF_PAGE_LOCKED;
356 } else if (!PagePrivate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (test_page_region(page, offset, nbytes))
358 page_count++;
359 }
360 }
361
Nathan Scottce8e9222006-01-11 15:39:08 +1100362 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 offset = 0;
364 }
365
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000366 if (!(bp->b_flags & _XBF_PAGE_LOCKED)) {
367 for (i = 0; i < bp->b_page_count; i++)
368 unlock_page(bp->b_pages[i]);
369 }
370
Nathan Scottce8e9222006-01-11 15:39:08 +1100371 if (page_count == bp->b_page_count)
372 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return error;
375}
376
377/*
378 * Map buffer into kernel address-space if nessecary.
379 */
380STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100381_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 xfs_buf_t *bp,
383 uint flags)
384{
385 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100386 if (bp->b_page_count == 1) {
387 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
388 bp->b_flags |= XBF_MAPPED;
389 } else if (flags & XBF_MAPPED) {
Alex Elder8a262e52010-03-16 18:55:56 +0000390 bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
391 -1, PAGE_KERNEL);
Nathan Scottce8e9222006-01-11 15:39:08 +1100392 if (unlikely(bp->b_addr == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100394 bp->b_addr += bp->b_offset;
395 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397
398 return 0;
399}
400
401/*
402 * Finding and Reading Buffers
403 */
404
405/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100406 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 * a given range of an inode. The buffer is returned
408 * locked. If other overlapping buffers exist, they are
409 * released before the new buffer is created and locked,
410 * which may imply that this call will block until those buffers
411 * are unlocked. No I/O is implied by this call.
412 */
413xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100414_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab252006-01-11 20:50:22 +1100416 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100418 xfs_buf_flags_t flags,
419 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
Nathan Scott204ab252006-01-11 20:50:22 +1100421 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 size_t range_length;
Dave Chinner74f75a02010-09-24 19:59:04 +1000423 struct xfs_perag *pag;
424 struct rb_node **rbp;
425 struct rb_node *parent;
426 xfs_buf_t *bp;
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
Dave Chinner74f75a02010-09-24 19:59:04 +1000435 /* get tree root */
436 pag = xfs_perag_get(btp->bt_mount,
437 xfs_daddr_to_agno(btp->bt_mount, ioff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Dave Chinner74f75a02010-09-24 19:59:04 +1000439 /* walk tree */
440 spin_lock(&pag->pag_buf_lock);
441 rbp = &pag->pag_buf_tree.rb_node;
442 parent = NULL;
443 bp = NULL;
444 while (*rbp) {
445 parent = *rbp;
446 bp = rb_entry(parent, struct xfs_buf, b_rbnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Dave Chinner74f75a02010-09-24 19:59:04 +1000448 if (range_base < bp->b_file_offset)
449 rbp = &(*rbp)->rb_left;
450 else if (range_base > bp->b_file_offset)
451 rbp = &(*rbp)->rb_right;
452 else {
453 /*
454 * found a block offset match. If the range doesn't
455 * match, the only way this is allowed is if the buffer
456 * in the cache is stale and the transaction that made
457 * it stale has not yet committed. i.e. we are
458 * reallocating a busy extent. Skip this buffer and
459 * continue searching to the right for an exact match.
460 */
461 if (bp->b_buffer_length != range_length) {
462 ASSERT(bp->b_flags & XBF_STALE);
463 rbp = &(*rbp)->rb_right;
464 continue;
465 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100466 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 goto found;
468 }
469 }
470
471 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100472 if (new_bp) {
473 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 range_length, flags);
Dave Chinner74f75a02010-09-24 19:59:04 +1000475 rb_link_node(&new_bp->b_rbnode, parent, rbp);
476 rb_insert_color(&new_bp->b_rbnode, &pag->pag_buf_tree);
477 /* the buffer keeps the perag reference until it is freed */
478 new_bp->b_pag = pag;
479 spin_unlock(&pag->pag_buf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100481 XFS_STATS_INC(xb_miss_locked);
Dave Chinner74f75a02010-09-24 19:59:04 +1000482 spin_unlock(&pag->pag_buf_lock);
483 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100485 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487found:
Dave Chinner74f75a02010-09-24 19:59:04 +1000488 spin_unlock(&pag->pag_buf_lock);
489 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 /* Attempt to get the semaphore without sleeping,
492 * if this does not work then we need to drop the
493 * spinlock and do a hard attempt on the semaphore.
494 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100495 if (down_trylock(&bp->b_sema)) {
496 if (!(flags & XBF_TRYLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 /* wait for buffer ownership */
Nathan Scottce8e9222006-01-11 15:39:08 +1100498 xfs_buf_lock(bp);
499 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 } else {
501 /* We asked for a trylock and failed, no need
502 * to look at file offset and length here, we
Nathan Scottce8e9222006-01-11 15:39:08 +1100503 * know that this buffer at least overlaps our
504 * buffer and is locked, therefore our buffer
505 * either does not exist, or is this buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100507 xfs_buf_rele(bp);
508 XFS_STATS_INC(xb_busy_locked);
509 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511 } else {
512 /* trylock worked */
Nathan Scottce8e9222006-01-11 15:39:08 +1100513 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515
Nathan Scottce8e9222006-01-11 15:39:08 +1100516 if (bp->b_flags & XBF_STALE) {
517 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
518 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000519 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000520
521 trace_xfs_buf_find(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100522 XFS_STATS_INC(xb_get_locked);
523 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
526/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100527 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 * Storage in memory for all portions of the buffer will be allocated,
529 * although backing storage may not be.
530 */
531xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000532xfs_buf_get(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100534 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100536 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Nathan Scottce8e9222006-01-11 15:39:08 +1100538 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 int error = 0, i;
540
Nathan Scottce8e9222006-01-11 15:39:08 +1100541 new_bp = xfs_buf_allocate(flags);
542 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return NULL;
544
Nathan Scottce8e9222006-01-11 15:39:08 +1100545 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
546 if (bp == new_bp) {
547 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (error)
549 goto no_buffer;
550 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100551 xfs_buf_deallocate(new_bp);
552 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return NULL;
554 }
555
Nathan Scottce8e9222006-01-11 15:39:08 +1100556 for (i = 0; i < bp->b_page_count; i++)
557 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Nathan Scottce8e9222006-01-11 15:39:08 +1100559 if (!(bp->b_flags & XBF_MAPPED)) {
560 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (unlikely(error)) {
562 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000563 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 goto no_buffer;
565 }
566 }
567
Nathan Scottce8e9222006-01-11 15:39:08 +1100568 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 /*
571 * Always fill in the block number now, the mapped cases can do
572 * their own overlay of this later.
573 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100574 bp->b_bn = ioff;
575 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000577 trace_xfs_buf_get(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100578 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100581 if (flags & (XBF_LOCK | XBF_TRYLOCK))
582 xfs_buf_unlock(bp);
583 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return NULL;
585}
586
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100587STATIC int
588_xfs_buf_read(
589 xfs_buf_t *bp,
590 xfs_buf_flags_t flags)
591{
592 int status;
593
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100594 ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE)));
595 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
596
597 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
598 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
599 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | \
600 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
601
602 status = xfs_buf_iorequest(bp);
Dave Chinnerec53d1d2010-07-20 17:52:59 +1000603 if (status || XFS_BUF_ISERROR(bp) || (flags & XBF_ASYNC))
604 return status;
605 return xfs_buf_iowait(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100606}
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000609xfs_buf_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100611 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100613 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Nathan Scottce8e9222006-01-11 15:39:08 +1100615 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Nathan Scottce8e9222006-01-11 15:39:08 +1100617 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000619 bp = xfs_buf_get(target, ioff, isize, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100620 if (bp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000621 trace_xfs_buf_read(bp, flags, _RET_IP_);
622
Nathan Scottce8e9222006-01-11 15:39:08 +1100623 if (!XFS_BUF_ISDONE(bp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100624 XFS_STATS_INC(xb_get_read);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100625 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100626 } else if (flags & XBF_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /*
628 * Read ahead call which is already satisfied,
629 * drop the buffer
630 */
631 goto no_buffer;
632 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100634 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
636 }
637
Nathan Scottce8e9222006-01-11 15:39:08 +1100638 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100641 if (flags & (XBF_LOCK | XBF_TRYLOCK))
642 xfs_buf_unlock(bp);
643 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return NULL;
645}
646
647/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100648 * If we are not low on memory then do the readahead in a deadlock
649 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 */
651void
Nathan Scottce8e9222006-01-11 15:39:08 +1100652xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100654 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100656 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 struct backing_dev_info *bdi;
659
Nathan Scottce8e9222006-01-11 15:39:08 +1100660 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 if (bdi_read_congested(bdi))
662 return;
663
Nathan Scottce8e9222006-01-11 15:39:08 +1100664 flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000665 xfs_buf_read(target, ioff, isize, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
Dave Chinner5adc94c2010-09-24 21:58:31 +1000668/*
669 * Read an uncached buffer from disk. Allocates and returns a locked
670 * buffer containing the disk contents or nothing.
671 */
672struct xfs_buf *
673xfs_buf_read_uncached(
674 struct xfs_mount *mp,
675 struct xfs_buftarg *target,
676 xfs_daddr_t daddr,
677 size_t length,
678 int flags)
679{
680 xfs_buf_t *bp;
681 int error;
682
683 bp = xfs_buf_get_uncached(target, length, flags);
684 if (!bp)
685 return NULL;
686
687 /* set up the buffer for a read IO */
688 xfs_buf_lock(bp);
689 XFS_BUF_SET_ADDR(bp, daddr);
690 XFS_BUF_READ(bp);
691 XFS_BUF_BUSY(bp);
692
693 xfsbdstrat(mp, bp);
694 error = xfs_iowait(bp);
695 if (error || bp->b_error) {
696 xfs_buf_relse(bp);
697 return NULL;
698 }
699 return bp;
700}
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100703xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 size_t len,
705 xfs_buftarg_t *target)
706{
Nathan Scottce8e9222006-01-11 15:39:08 +1100707 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Nathan Scottce8e9222006-01-11 15:39:08 +1100709 bp = xfs_buf_allocate(0);
710 if (bp)
711 _xfs_buf_initialize(bp, target, 0, len, 0);
712 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
715static inline struct page *
716mem_to_page(
717 void *addr)
718{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800719 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return virt_to_page(addr);
721 } else {
722 return vmalloc_to_page(addr);
723 }
724}
725
726int
Nathan Scottce8e9222006-01-11 15:39:08 +1100727xfs_buf_associate_memory(
728 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 void *mem,
730 size_t len)
731{
732 int rval;
733 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100734 unsigned long pageaddr;
735 unsigned long offset;
736 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 int page_count;
738
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100739 pageaddr = (unsigned long)mem & PAGE_CACHE_MASK;
740 offset = (unsigned long)mem - pageaddr;
741 buflen = PAGE_CACHE_ALIGN(len + offset);
742 page_count = buflen >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100745 if (bp->b_pages)
746 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Nathan Scottce8e9222006-01-11 15:39:08 +1100748 bp->b_pages = NULL;
749 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Christoph Hellwig36fae172009-07-18 18:14:58 -0400751 rval = _xfs_buf_get_pages(bp, page_count, XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (rval)
753 return rval;
754
Nathan Scottce8e9222006-01-11 15:39:08 +1100755 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100757 for (i = 0; i < bp->b_page_count; i++) {
758 bp->b_pages[i] = mem_to_page((void *)pageaddr);
759 pageaddr += PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100762 bp->b_count_desired = len;
763 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100764 bp->b_flags |= XBF_MAPPED;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000765 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 return 0;
768}
769
770xfs_buf_t *
Dave Chinner686865f2010-09-24 20:07:47 +1000771xfs_buf_get_uncached(
772 struct xfs_buftarg *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 size_t len,
Dave Chinner686865f2010-09-24 20:07:47 +1000774 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000776 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
777 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Nathan Scottce8e9222006-01-11 15:39:08 +1100780 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (unlikely(bp == NULL))
782 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100783 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000785 error = _xfs_buf_get_pages(bp, page_count, 0);
786 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 goto fail_free_buf;
788
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000789 for (i = 0; i < page_count; i++) {
Dave Chinner686865f2010-09-24 20:07:47 +1000790 bp->b_pages[i] = alloc_page(xb_to_gfp(flags));
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000791 if (!bp->b_pages[i])
792 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000794 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000796 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
797 if (unlikely(error)) {
798 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000799 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Nathan Scottce8e9222006-01-11 15:39:08 +1100803 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Dave Chinner686865f2010-09-24 20:07:47 +1000805 trace_xfs_buf_get_uncached(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000809 while (--i >= 0)
810 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000811 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000813 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 fail:
815 return NULL;
816}
817
818/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 * Increment reference count on buffer, to hold the buffer concurrently
820 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 * Must hold the buffer already to call this function.
822 */
823void
Nathan Scottce8e9222006-01-11 15:39:08 +1100824xfs_buf_hold(
825 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000827 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100828 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
831/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100832 * Releases a hold on the specified buffer. If the
833 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 */
835void
Nathan Scottce8e9222006-01-11 15:39:08 +1100836xfs_buf_rele(
837 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Dave Chinner74f75a02010-09-24 19:59:04 +1000839 struct xfs_perag *pag = bp->b_pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000841 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Dave Chinner74f75a02010-09-24 19:59:04 +1000843 if (!pag) {
Nathan Scottfad3aa12006-02-01 12:14:52 +1100844 ASSERT(!bp->b_relse);
Dave Chinner74f75a02010-09-24 19:59:04 +1000845 ASSERT(RB_EMPTY_NODE(&bp->b_rbnode));
Nathan Scottfad3aa12006-02-01 12:14:52 +1100846 if (atomic_dec_and_test(&bp->b_hold))
847 xfs_buf_free(bp);
848 return;
849 }
850
Dave Chinner74f75a02010-09-24 19:59:04 +1000851 ASSERT(!RB_EMPTY_NODE(&bp->b_rbnode));
Lachlan McIlroy37906892008-08-13 15:42:10 +1000852 ASSERT(atomic_read(&bp->b_hold) > 0);
Dave Chinner74f75a02010-09-24 19:59:04 +1000853 if (atomic_dec_and_lock(&bp->b_hold, &pag->pag_buf_lock)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100854 if (bp->b_relse) {
855 atomic_inc(&bp->b_hold);
Dave Chinner74f75a02010-09-24 19:59:04 +1000856 spin_unlock(&pag->pag_buf_lock);
857 bp->b_relse(bp);
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100858 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100859 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
Dave Chinner74f75a02010-09-24 19:59:04 +1000860 rb_erase(&bp->b_rbnode, &pag->pag_buf_tree);
861 spin_unlock(&pag->pag_buf_lock);
862 xfs_perag_put(pag);
Nathan Scottce8e9222006-01-11 15:39:08 +1100863 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
865 }
866}
867
868
869/*
870 * Mutual exclusion on buffers. Locking model:
871 *
872 * Buffers associated with inodes for which buffer locking
873 * is not enabled are not protected by semaphores, and are
874 * assumed to be exclusively owned by the caller. There is a
875 * spinlock in the buffer, used by the caller when concurrent
876 * access is possible.
877 */
878
879/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100880 * Locks a buffer object, if it is not already locked.
881 * Note that this in no way locks the underlying pages, so it is only
882 * useful for synchronizing concurrent use of buffer objects, not for
883 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 */
885int
Nathan Scottce8e9222006-01-11 15:39:08 +1100886xfs_buf_cond_lock(
887 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
889 int locked;
890
Nathan Scottce8e9222006-01-11 15:39:08 +1100891 locked = down_trylock(&bp->b_sema) == 0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000892 if (locked)
Nathan Scottce8e9222006-01-11 15:39:08 +1100893 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000894
895 trace_xfs_buf_cond_lock(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100896 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899int
Nathan Scottce8e9222006-01-11 15:39:08 +1100900xfs_buf_lock_value(
901 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Stephen Rothwelladaa6932008-04-22 15:26:13 +1000903 return bp->b_sema.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100907 * Locks a buffer object.
908 * Note that this in no way locks the underlying pages, so it is only
909 * useful for synchronizing concurrent use of buffer objects, not for
910 * synchronizing independent access to the underlying pages.
Dave Chinnered3b4d62010-05-21 12:07:08 +1000911 *
912 * If we come across a stale, pinned, locked buffer, we know that we
913 * are being asked to lock a buffer that has been reallocated. Because
914 * it is pinned, we know that the log has not been pushed to disk and
915 * hence it will still be locked. Rather than sleeping until someone
916 * else pushes the log, push it ourselves before trying to get the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100918void
919xfs_buf_lock(
920 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000922 trace_xfs_buf_lock(bp, _RET_IP_);
923
Dave Chinnered3b4d62010-05-21 12:07:08 +1000924 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
Dave Chinnerebad8612010-09-22 10:47:20 +1000925 xfs_log_force(bp->b_target->bt_mount, 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100926 if (atomic_read(&bp->b_io_remaining))
927 blk_run_address_space(bp->b_target->bt_mapping);
928 down(&bp->b_sema);
929 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000930
931 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100935 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000936 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100937 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000938 * take a reference for the delwri queue because the unlocker is going to
939 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 */
941void
Nathan Scottce8e9222006-01-11 15:39:08 +1100942xfs_buf_unlock(
943 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Nathan Scottce8e9222006-01-11 15:39:08 +1100945 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
946 atomic_inc(&bp->b_hold);
947 bp->b_flags |= XBF_ASYNC;
948 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000949 }
950
Nathan Scottce8e9222006-01-11 15:39:08 +1100951 XB_CLEAR_OWNER(bp);
952 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000953
954 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
Nathan Scottce8e9222006-01-11 15:39:08 +1100957STATIC void
958xfs_buf_wait_unpin(
959 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
961 DECLARE_WAITQUEUE (wait, current);
962
Nathan Scottce8e9222006-01-11 15:39:08 +1100963 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 return;
965
Nathan Scottce8e9222006-01-11 15:39:08 +1100966 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 for (;;) {
968 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100969 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 break;
Nathan Scottce8e9222006-01-11 15:39:08 +1100971 if (atomic_read(&bp->b_io_remaining))
972 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 schedule();
974 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100975 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 set_current_state(TASK_RUNNING);
977}
978
979/*
980 * Buffer Utility Routines
981 */
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100984xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +0000985 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
David Howellsc4028952006-11-22 14:57:56 +0000987 xfs_buf_t *bp =
988 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
David Chinner0bfefc42007-05-14 18:24:23 +1000990 /*
991 * We can get an EOPNOTSUPP to ordered writes. Here we clear the
992 * ordered flag and reissue them. Because we can't tell the higher
993 * layers directly that they should not issue ordered I/O anymore, they
Christoph Hellwig73f6aa42008-10-10 17:28:29 +1100994 * need to check if the _XFS_BARRIER_FAILED flag was set during I/O completion.
David Chinner0bfefc42007-05-14 18:24:23 +1000995 */
996 if ((bp->b_error == EOPNOTSUPP) &&
997 (bp->b_flags & (XBF_ORDERED|XBF_ASYNC)) == (XBF_ORDERED|XBF_ASYNC)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000998 trace_xfs_buf_ordered_retry(bp, _RET_IP_);
David Chinner0bfefc42007-05-14 18:24:23 +1000999 bp->b_flags &= ~XBF_ORDERED;
Christoph Hellwig73f6aa42008-10-10 17:28:29 +11001000 bp->b_flags |= _XFS_BARRIER_FAILED;
David Chinner0bfefc42007-05-14 18:24:23 +10001001 xfs_buf_iorequest(bp);
1002 } else if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +11001003 (*(bp->b_iodone))(bp);
1004 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 xfs_buf_relse(bp);
1006}
1007
1008void
Nathan Scottce8e9222006-01-11 15:39:08 +11001009xfs_buf_ioend(
1010 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 int schedule)
1012{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001013 trace_xfs_buf_iodone(bp, _RET_IP_);
1014
Lachlan McIlroy77be55a2007-11-23 16:31:00 +11001015 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +11001016 if (bp->b_error == 0)
1017 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Nathan Scottce8e9222006-01-11 15:39:08 +11001019 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001021 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001022 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 } else {
David Howellsc4028952006-11-22 14:57:56 +00001024 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 }
1026 } else {
David Chinnerb4dd3302008-08-13 16:36:11 +10001027 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
1029}
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031void
Nathan Scottce8e9222006-01-11 15:39:08 +11001032xfs_buf_ioerror(
1033 xfs_buf_t *bp,
1034 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
1036 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001037 bp->b_error = (unsigned short)error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001038 trace_xfs_buf_ioerror(bp, error, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041int
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001042xfs_bwrite(
1043 struct xfs_mount *mp,
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001044 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Christoph Hellwig8c383662010-03-12 10:59:40 +00001046 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001048 bp->b_flags |= XBF_WRITE;
Christoph Hellwig8c383662010-03-12 10:59:40 +00001049 bp->b_flags &= ~(XBF_ASYNC | XBF_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001051 xfs_buf_delwri_dequeue(bp);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001052 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Christoph Hellwig8c383662010-03-12 10:59:40 +00001054 error = xfs_buf_iowait(bp);
1055 if (error)
1056 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1057 xfs_buf_relse(bp);
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001058 return error;
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001059}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001061void
1062xfs_bdwrite(
1063 void *mp,
1064 struct xfs_buf *bp)
1065{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001066 trace_xfs_buf_bdwrite(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001068 bp->b_flags &= ~XBF_READ;
1069 bp->b_flags |= (XBF_DELWRI | XBF_ASYNC);
1070
1071 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072}
1073
Christoph Hellwig4e234712010-01-13 22:17:56 +00001074/*
1075 * Called when we want to stop a buffer from getting written or read.
1076 * We attach the EIO error, muck with its flags, and call biodone
1077 * so that the proper iodone callbacks get called.
1078 */
1079STATIC int
1080xfs_bioerror(
1081 xfs_buf_t *bp)
1082{
1083#ifdef XFSERRORDEBUG
1084 ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
1085#endif
1086
1087 /*
1088 * No need to wait until the buffer is unpinned, we aren't flushing it.
1089 */
1090 XFS_BUF_ERROR(bp, EIO);
1091
1092 /*
1093 * We're calling biodone, so delete XBF_DONE flag.
1094 */
1095 XFS_BUF_UNREAD(bp);
1096 XFS_BUF_UNDELAYWRITE(bp);
1097 XFS_BUF_UNDONE(bp);
1098 XFS_BUF_STALE(bp);
1099
Christoph Hellwig4e234712010-01-13 22:17:56 +00001100 xfs_biodone(bp);
1101
1102 return EIO;
1103}
1104
1105/*
1106 * Same as xfs_bioerror, except that we are releasing the buffer
1107 * here ourselves, and avoiding the biodone call.
1108 * This is meant for userdata errors; metadata bufs come with
1109 * iodone functions attached, so that we can track down errors.
1110 */
1111STATIC int
1112xfs_bioerror_relse(
1113 struct xfs_buf *bp)
1114{
1115 int64_t fl = XFS_BUF_BFLAGS(bp);
1116 /*
1117 * No need to wait until the buffer is unpinned.
1118 * We aren't flushing it.
1119 *
1120 * chunkhold expects B_DONE to be set, whether
1121 * we actually finish the I/O or not. We don't want to
1122 * change that interface.
1123 */
1124 XFS_BUF_UNREAD(bp);
1125 XFS_BUF_UNDELAYWRITE(bp);
1126 XFS_BUF_DONE(bp);
1127 XFS_BUF_STALE(bp);
1128 XFS_BUF_CLR_IODONE_FUNC(bp);
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001129 if (!(fl & XBF_ASYNC)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001130 /*
1131 * Mark b_error and B_ERROR _both_.
1132 * Lot's of chunkcache code assumes that.
1133 * There's no reason to mark error for
1134 * ASYNC buffers.
1135 */
1136 XFS_BUF_ERROR(bp, EIO);
1137 XFS_BUF_FINISH_IOWAIT(bp);
1138 } else {
1139 xfs_buf_relse(bp);
1140 }
1141
1142 return EIO;
1143}
1144
1145
1146/*
1147 * All xfs metadata buffers except log state machine buffers
1148 * get this attached as their b_bdstrat callback function.
1149 * This is so that we can catch a buffer
1150 * after prematurely unpinning it to forcibly shutdown the filesystem.
1151 */
1152int
1153xfs_bdstrat_cb(
1154 struct xfs_buf *bp)
1155{
Dave Chinnerebad8612010-09-22 10:47:20 +10001156 if (XFS_FORCED_SHUTDOWN(bp->b_target->bt_mount)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001157 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1158 /*
1159 * Metadata write that didn't get logged but
1160 * written delayed anyway. These aren't associated
1161 * with a transaction, and can be ignored.
1162 */
1163 if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
1164 return xfs_bioerror_relse(bp);
1165 else
1166 return xfs_bioerror(bp);
1167 }
1168
1169 xfs_buf_iorequest(bp);
1170 return 0;
1171}
1172
1173/*
1174 * Wrapper around bdstrat so that we can stop data from going to disk in case
1175 * we are shutting down the filesystem. Typically user data goes thru this
1176 * path; one of the exceptions is the superblock.
1177 */
1178void
1179xfsbdstrat(
1180 struct xfs_mount *mp,
1181 struct xfs_buf *bp)
1182{
1183 if (XFS_FORCED_SHUTDOWN(mp)) {
1184 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1185 xfs_bioerror_relse(bp);
1186 return;
1187 }
1188
1189 xfs_buf_iorequest(bp);
1190}
1191
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001192STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001193_xfs_buf_ioend(
1194 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 int schedule)
1196{
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001197 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1198 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Nathan Scottce8e9222006-01-11 15:39:08 +11001199 xfs_buf_ioend(bp, schedule);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Al Viro782e3b32007-10-12 07:17:47 +01001203STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001204xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 int error)
1207{
Nathan Scottce8e9222006-01-11 15:39:08 +11001208 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1209 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001210 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Lachlan McIlroycfbe5262008-12-12 15:27:25 +11001212 xfs_buf_ioerror(bp, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
James Bottomley73c77e22010-01-25 11:42:24 -06001214 if (!error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
1215 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1216
Nathan Scotteedb5532005-09-02 16:39:56 +10001217 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 struct page *page = bvec->bv_page;
1219
Nathan Scott948ecdb2006-09-28 11:03:13 +10001220 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001221 if (unlikely(bp->b_error)) {
1222 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001223 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001224 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 SetPageUptodate(page);
1226 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001227 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1229 }
1230
Nathan Scotteedb5532005-09-02 16:39:56 +10001231 if (--bvec >= bio->bi_io_vec)
1232 prefetchw(&bvec->bv_page->flags);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001233
1234 if (bp->b_flags & _XBF_PAGE_LOCKED)
1235 unlock_page(page);
Nathan Scotteedb5532005-09-02 16:39:56 +10001236 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Nathan Scottce8e9222006-01-11 15:39:08 +11001238 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
1242STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001243_xfs_buf_ioapply(
1244 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245{
Christoph Hellwiga9759f22007-12-07 14:07:08 +11001246 int rw, map_i, total_nr_pages, nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001248 int offset = bp->b_offset;
1249 int size = bp->b_count_desired;
1250 sector_t sector = bp->b_bn;
1251 unsigned int blocksize = bp->b_target->bt_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Nathan Scottce8e9222006-01-11 15:39:08 +11001253 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 map_i = 0;
1255
Nathan Scottce8e9222006-01-11 15:39:08 +11001256 if (bp->b_flags & XBF_ORDERED) {
1257 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001258 rw = WRITE_BARRIER;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001259 } else if (bp->b_flags & XBF_LOG_BUFFER) {
Nathan Scott51bdd702006-09-28 11:01:57 +10001260 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1261 bp->b_flags &= ~_XBF_RUN_QUEUES;
1262 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001263 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1264 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1265 bp->b_flags &= ~_XBF_RUN_QUEUES;
1266 rw = (bp->b_flags & XBF_WRITE) ? WRITE_META : READ_META;
Nathan Scott51bdd702006-09-28 11:01:57 +10001267 } else {
1268 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1269 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001270 }
1271
Nathan Scottce8e9222006-01-11 15:39:08 +11001272 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 * we populate up the whole page, and hence the other metadata
1274 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001275 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001277 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001278 ((bp->b_flags & (XBF_READ|_XBF_PAGE_LOCKED)) ==
1279 (XBF_READ|_XBF_PAGE_LOCKED)) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001280 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 bio = bio_alloc(GFP_NOIO, 1);
1282
Nathan Scottce8e9222006-01-11 15:39:08 +11001283 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001285 bio->bi_end_io = xfs_buf_bio_end_io;
1286 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Nathan Scottce8e9222006-01-11 15:39:08 +11001288 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 size = 0;
1290
Nathan Scottce8e9222006-01-11 15:39:08 +11001291 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 goto submit_io;
1294 }
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001297 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1299 if (nr_pages > total_nr_pages)
1300 nr_pages = total_nr_pages;
1301
1302 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001303 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001305 bio->bi_end_io = xfs_buf_bio_end_io;
1306 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001309 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 if (nbytes > size)
1312 nbytes = size;
1313
Nathan Scottce8e9222006-01-11 15:39:08 +11001314 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1315 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 break;
1317
1318 offset = 0;
1319 sector += nbytes >> BBSHIFT;
1320 size -= nbytes;
1321 total_nr_pages--;
1322 }
1323
1324submit_io:
1325 if (likely(bio->bi_size)) {
James Bottomley73c77e22010-01-25 11:42:24 -06001326 if (xfs_buf_is_vmapped(bp)) {
1327 flush_kernel_vmap_range(bp->b_addr,
1328 xfs_buf_vmap_len(bp));
1329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 submit_bio(rw, bio);
1331 if (size)
1332 goto next_chunk;
1333 } else {
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001334 /*
1335 * if we get here, no pages were added to the bio. However,
1336 * we can't just error out here - if the pages are locked then
1337 * we have to unlock them otherwise we can hang on a later
1338 * access to the page.
1339 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001340 xfs_buf_ioerror(bp, EIO);
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001341 if (bp->b_flags & _XBF_PAGE_LOCKED) {
1342 int i;
1343 for (i = 0; i < bp->b_page_count; i++)
1344 unlock_page(bp->b_pages[i]);
1345 }
1346 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
1348}
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350int
Nathan Scottce8e9222006-01-11 15:39:08 +11001351xfs_buf_iorequest(
1352 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001354 trace_xfs_buf_iorequest(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Nathan Scottce8e9222006-01-11 15:39:08 +11001356 if (bp->b_flags & XBF_DELWRI) {
1357 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 return 0;
1359 }
1360
Nathan Scottce8e9222006-01-11 15:39:08 +11001361 if (bp->b_flags & XBF_WRITE) {
1362 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
1364
Nathan Scottce8e9222006-01-11 15:39:08 +11001365 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 /* Set the count to 1 initially, this will stop an I/O
1368 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001369 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001371 atomic_set(&bp->b_io_remaining, 1);
1372 _xfs_buf_ioapply(bp);
1373 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Nathan Scottce8e9222006-01-11 15:39:08 +11001375 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 return 0;
1377}
1378
1379/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001380 * Waits for I/O to complete on the buffer supplied.
1381 * It returns immediately if no I/O is pending.
1382 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 */
1384int
Nathan Scottce8e9222006-01-11 15:39:08 +11001385xfs_buf_iowait(
1386 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001388 trace_xfs_buf_iowait(bp, _RET_IP_);
1389
Nathan Scottce8e9222006-01-11 15:39:08 +11001390 if (atomic_read(&bp->b_io_remaining))
1391 blk_run_address_space(bp->b_target->bt_mapping);
David Chinnerb4dd3302008-08-13 16:36:11 +10001392 wait_for_completion(&bp->b_iowait);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001393
1394 trace_xfs_buf_iowait_done(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +11001395 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396}
1397
Nathan Scottce8e9222006-01-11 15:39:08 +11001398xfs_caddr_t
1399xfs_buf_offset(
1400 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 size_t offset)
1402{
1403 struct page *page;
1404
Nathan Scottce8e9222006-01-11 15:39:08 +11001405 if (bp->b_flags & XBF_MAPPED)
1406 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Nathan Scottce8e9222006-01-11 15:39:08 +11001408 offset += bp->b_offset;
1409 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1410 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
1413/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 * Move data into or out of a buffer.
1415 */
1416void
Nathan Scottce8e9222006-01-11 15:39:08 +11001417xfs_buf_iomove(
1418 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 size_t boff, /* starting buffer offset */
1420 size_t bsize, /* length to copy */
Dave Chinnerb9c48642010-01-20 10:47:39 +11001421 void *data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001422 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
1424 size_t bend, cpoff, csize;
1425 struct page *page;
1426
1427 bend = boff + bsize;
1428 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001429 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1430 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001432 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1435
1436 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001437 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 memset(page_address(page) + cpoff, 0, csize);
1439 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001440 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 memcpy(data, page_address(page) + cpoff, csize);
1442 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001443 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 memcpy(page_address(page) + cpoff, data, csize);
1445 }
1446
1447 boff += csize;
1448 data += csize;
1449 }
1450}
1451
1452/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001453 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 */
1455
1456/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001457 * Wait for any bufs with callbacks that have been submitted but
1458 * have not yet returned... walk the hash list for the target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 */
1460void
1461xfs_wait_buftarg(
Dave Chinner74f75a02010-09-24 19:59:04 +10001462 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Dave Chinner74f75a02010-09-24 19:59:04 +10001464 struct xfs_perag *pag;
1465 uint i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Dave Chinner74f75a02010-09-24 19:59:04 +10001467 for (i = 0; i < btp->bt_mount->m_sb.sb_agcount; i++) {
1468 pag = xfs_perag_get(btp->bt_mount, i);
1469 spin_lock(&pag->pag_buf_lock);
1470 while (rb_first(&pag->pag_buf_tree)) {
1471 spin_unlock(&pag->pag_buf_lock);
Dave Chinner26af6552010-09-22 10:47:20 +10001472 delay(100);
Dave Chinner74f75a02010-09-24 19:59:04 +10001473 spin_lock(&pag->pag_buf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 }
Dave Chinner74f75a02010-09-24 19:59:04 +10001475 spin_unlock(&pag->pag_buf_lock);
1476 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
1478}
1479
1480/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001481 * buftarg list for delwrite queue processing
David Chinnera6867a62006-01-11 15:37:58 +11001482 */
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001483static LIST_HEAD(xfs_buftarg_list);
David Chinner7989cb82007-02-10 18:34:56 +11001484static DEFINE_SPINLOCK(xfs_buftarg_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001485
1486STATIC void
1487xfs_register_buftarg(
1488 xfs_buftarg_t *btp)
1489{
1490 spin_lock(&xfs_buftarg_lock);
1491 list_add(&btp->bt_list, &xfs_buftarg_list);
1492 spin_unlock(&xfs_buftarg_lock);
1493}
1494
1495STATIC void
1496xfs_unregister_buftarg(
1497 xfs_buftarg_t *btp)
1498{
1499 spin_lock(&xfs_buftarg_lock);
1500 list_del(&btp->bt_list);
1501 spin_unlock(&xfs_buftarg_lock);
1502}
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504void
1505xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001506 struct xfs_mount *mp,
1507 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
1509 xfs_flush_buftarg(btp, 1);
Christoph Hellwigb7963132009-03-03 14:48:37 -05001510 if (mp->m_flags & XFS_MOUNT_BARRIER)
1511 xfs_blkdev_issue_flush(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001512 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001513
Nathan Scottce8e9222006-01-11 15:39:08 +11001514 /* Unregister the buftarg first so that we don't get a
1515 * wakeup finding a non-existent task
1516 */
David Chinnera6867a62006-01-11 15:37:58 +11001517 xfs_unregister_buftarg(btp);
1518 kthread_stop(btp->bt_task);
1519
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001520 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523STATIC int
1524xfs_setsize_buftarg_flags(
1525 xfs_buftarg_t *btp,
1526 unsigned int blocksize,
1527 unsigned int sectorsize,
1528 int verbose)
1529{
Nathan Scottce8e9222006-01-11 15:39:08 +11001530 btp->bt_bsize = blocksize;
1531 btp->bt_sshift = ffs(sectorsize) - 1;
1532 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Nathan Scottce8e9222006-01-11 15:39:08 +11001534 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 printk(KERN_WARNING
1536 "XFS: Cannot set_blocksize to %u on device %s\n",
1537 sectorsize, XFS_BUFTARG_NAME(btp));
1538 return EINVAL;
1539 }
1540
1541 if (verbose &&
1542 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1543 printk(KERN_WARNING
1544 "XFS: %u byte sectors in use on device %s. "
1545 "This is suboptimal; %u or greater is ideal.\n",
1546 sectorsize, XFS_BUFTARG_NAME(btp),
1547 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1548 }
1549
1550 return 0;
1551}
1552
1553/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001554 * When allocating the initial buffer target we have not yet
1555 * read in the superblock, so don't know what sized sectors
1556 * are being used is at this early stage. Play safe.
1557 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558STATIC int
1559xfs_setsize_buftarg_early(
1560 xfs_buftarg_t *btp,
1561 struct block_device *bdev)
1562{
1563 return xfs_setsize_buftarg_flags(btp,
Martin K. Petersene1defc42009-05-22 17:17:49 -04001564 PAGE_CACHE_SIZE, bdev_logical_block_size(bdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565}
1566
1567int
1568xfs_setsize_buftarg(
1569 xfs_buftarg_t *btp,
1570 unsigned int blocksize,
1571 unsigned int sectorsize)
1572{
1573 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1574}
1575
1576STATIC int
1577xfs_mapping_buftarg(
1578 xfs_buftarg_t *btp,
1579 struct block_device *bdev)
1580{
1581 struct backing_dev_info *bdi;
1582 struct inode *inode;
1583 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001584 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001586 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 };
1588
1589 inode = new_inode(bdev->bd_inode->i_sb);
1590 if (!inode) {
1591 printk(KERN_WARNING
1592 "XFS: Cannot allocate mapping inode for device %s\n",
1593 XFS_BUFTARG_NAME(btp));
1594 return ENOMEM;
1595 }
1596 inode->i_mode = S_IFBLK;
1597 inode->i_bdev = bdev;
1598 inode->i_rdev = bdev->bd_dev;
1599 bdi = blk_get_backing_dev_info(bdev);
1600 if (!bdi)
1601 bdi = &default_backing_dev_info;
1602 mapping = &inode->i_data;
1603 mapping->a_ops = &mapping_aops;
1604 mapping->backing_dev_info = bdi;
1605 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001606 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 return 0;
1608}
1609
David Chinnera6867a62006-01-11 15:37:58 +11001610STATIC int
1611xfs_alloc_delwrite_queue(
Jan Engelhardte2a07812010-03-23 09:52:55 +11001612 xfs_buftarg_t *btp,
1613 const char *fsname)
David Chinnera6867a62006-01-11 15:37:58 +11001614{
1615 int error = 0;
1616
1617 INIT_LIST_HEAD(&btp->bt_list);
1618 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
Eric Sandeen007c61c2007-10-11 17:43:56 +10001619 spin_lock_init(&btp->bt_delwrite_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001620 btp->bt_flags = 0;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001621 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd/%s", fsname);
David Chinnera6867a62006-01-11 15:37:58 +11001622 if (IS_ERR(btp->bt_task)) {
1623 error = PTR_ERR(btp->bt_task);
1624 goto out_error;
1625 }
1626 xfs_register_buftarg(btp);
1627out_error:
1628 return error;
1629}
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631xfs_buftarg_t *
1632xfs_alloc_buftarg(
Dave Chinnerebad8612010-09-22 10:47:20 +10001633 struct xfs_mount *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 struct block_device *bdev,
Jan Engelhardte2a07812010-03-23 09:52:55 +11001635 int external,
1636 const char *fsname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
1638 xfs_buftarg_t *btp;
1639
1640 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1641
Dave Chinnerebad8612010-09-22 10:47:20 +10001642 btp->bt_mount = mp;
Nathan Scottce8e9222006-01-11 15:39:08 +11001643 btp->bt_dev = bdev->bd_dev;
1644 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (xfs_setsize_buftarg_early(btp, bdev))
1646 goto error;
1647 if (xfs_mapping_buftarg(btp, bdev))
1648 goto error;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001649 if (xfs_alloc_delwrite_queue(btp, fsname))
David Chinnera6867a62006-01-11 15:37:58 +11001650 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 return btp;
1652
1653error:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001654 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 return NULL;
1656}
1657
1658
1659/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001660 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001663xfs_buf_delwri_queue(
1664 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 int unlock)
1666{
Nathan Scottce8e9222006-01-11 15:39:08 +11001667 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1668 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001669
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001670 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1671
Nathan Scottce8e9222006-01-11 15:39:08 +11001672 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
David Chinnera6867a62006-01-11 15:37:58 +11001674 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001676 if (!list_empty(&bp->b_list)) {
1677 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1678 if (unlock)
1679 atomic_dec(&bp->b_hold);
1680 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 }
1682
Dave Chinnerc9c12972010-01-11 11:49:59 +00001683 if (list_empty(dwq)) {
1684 /* start xfsbufd as it is about to have something to do */
1685 wake_up_process(bp->b_target->bt_task);
1686 }
1687
Nathan Scottce8e9222006-01-11 15:39:08 +11001688 bp->b_flags |= _XBF_DELWRI_Q;
1689 list_add_tail(&bp->b_list, dwq);
1690 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001691 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
1693 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001694 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695}
1696
1697void
Nathan Scottce8e9222006-01-11 15:39:08 +11001698xfs_buf_delwri_dequeue(
1699 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Nathan Scottce8e9222006-01-11 15:39:08 +11001701 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 int dequeued = 0;
1703
David Chinnera6867a62006-01-11 15:37:58 +11001704 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001705 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1706 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1707 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 dequeued = 1;
1709 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001710 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001711 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001714 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001716 trace_xfs_buf_delwri_dequeue(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
1718
Dave Chinnerd808f612010-02-02 10:13:42 +11001719/*
1720 * If a delwri buffer needs to be pushed before it has aged out, then promote
1721 * it to the head of the delwri queue so that it will be flushed on the next
1722 * xfsbufd run. We do this by resetting the queuetime of the buffer to be older
1723 * than the age currently needed to flush the buffer. Hence the next time the
1724 * xfsbufd sees it is guaranteed to be considered old enough to flush.
1725 */
1726void
1727xfs_buf_delwri_promote(
1728 struct xfs_buf *bp)
1729{
1730 struct xfs_buftarg *btp = bp->b_target;
1731 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10) + 1;
1732
1733 ASSERT(bp->b_flags & XBF_DELWRI);
1734 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1735
1736 /*
1737 * Check the buffer age before locking the delayed write queue as we
1738 * don't need to promote buffers that are already past the flush age.
1739 */
1740 if (bp->b_queuetime < jiffies - age)
1741 return;
1742 bp->b_queuetime = jiffies - age;
1743 spin_lock(&btp->bt_delwrite_lock);
1744 list_move(&bp->b_list, &btp->bt_delwrite_queue);
1745 spin_unlock(&btp->bt_delwrite_lock);
1746}
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001749xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 struct workqueue_struct *queue)
1751{
1752 flush_workqueue(queue);
1753}
1754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001756xfsbufd_wakeup(
Dave Chinner7f8275d2010-07-19 14:56:17 +10001757 struct shrinker *shrink,
Nathan Scott15c84a42005-11-04 10:51:01 +11001758 int priority,
1759 gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001761 xfs_buftarg_t *btp;
David Chinnera6867a62006-01-11 15:37:58 +11001762
1763 spin_lock(&xfs_buftarg_lock);
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001764 list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001765 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
David Chinnera6867a62006-01-11 15:37:58 +11001766 continue;
Dave Chinnerc9c12972010-01-11 11:49:59 +00001767 if (list_empty(&btp->bt_delwrite_queue))
1768 continue;
Nathan Scottce8e9222006-01-11 15:39:08 +11001769 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
David Chinnera6867a62006-01-11 15:37:58 +11001770 wake_up_process(btp->bt_task);
1771 }
1772 spin_unlock(&xfs_buftarg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 return 0;
1774}
1775
David Chinner585e6d82007-02-10 18:32:29 +11001776/*
1777 * Move as many buffers as specified to the supplied list
1778 * idicating if we skipped any buffers to prevent deadlocks.
1779 */
1780STATIC int
1781xfs_buf_delwri_split(
1782 xfs_buftarg_t *target,
1783 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001784 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001785{
1786 xfs_buf_t *bp, *n;
1787 struct list_head *dwq = &target->bt_delwrite_queue;
1788 spinlock_t *dwlk = &target->bt_delwrite_lock;
1789 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001790 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001791
David Chinner5e6a07d2007-02-10 18:34:49 +11001792 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001793 INIT_LIST_HEAD(list);
1794 spin_lock(dwlk);
1795 list_for_each_entry_safe(bp, n, dwq, b_list) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001796 trace_xfs_buf_delwri_split(bp, _RET_IP_);
David Chinner585e6d82007-02-10 18:32:29 +11001797 ASSERT(bp->b_flags & XBF_DELWRI);
1798
Christoph Hellwig4d16e922010-06-23 18:11:15 +10001799 if (!XFS_BUF_ISPINNED(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001800 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001801 time_before(jiffies, bp->b_queuetime + age)) {
1802 xfs_buf_unlock(bp);
1803 break;
1804 }
1805
1806 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1807 _XBF_RUN_QUEUES);
1808 bp->b_flags |= XBF_WRITE;
1809 list_move_tail(&bp->b_list, list);
1810 } else
1811 skipped++;
1812 }
1813 spin_unlock(dwlk);
1814
1815 return skipped;
1816
1817}
1818
Dave Chinner089716a2010-01-26 15:13:25 +11001819/*
1820 * Compare function is more complex than it needs to be because
1821 * the return value is only 32 bits and we are doing comparisons
1822 * on 64 bit values
1823 */
1824static int
1825xfs_buf_cmp(
1826 void *priv,
1827 struct list_head *a,
1828 struct list_head *b)
1829{
1830 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1831 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1832 xfs_daddr_t diff;
1833
1834 diff = ap->b_bn - bp->b_bn;
1835 if (diff < 0)
1836 return -1;
1837 if (diff > 0)
1838 return 1;
1839 return 0;
1840}
1841
1842void
1843xfs_buf_delwri_sort(
1844 xfs_buftarg_t *target,
1845 struct list_head *list)
1846{
1847 list_sort(NULL, list, xfs_buf_cmp);
1848}
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001851xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001852 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
Dave Chinner089716a2010-01-26 15:13:25 +11001854 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 current->flags |= PF_MEMALLOC;
1857
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001858 set_freezable();
1859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 do {
Dave Chinnerc9c12972010-01-11 11:49:59 +00001861 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10);
1862 long tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10);
Dave Chinner089716a2010-01-26 15:13:25 +11001863 int count = 0;
1864 struct list_head tmp;
Dave Chinnerc9c12972010-01-11 11:49:59 +00001865
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001866 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001867 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001868 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001869 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001870 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Dave Chinnerc9c12972010-01-11 11:49:59 +00001873 /* sleep for a long time if there is nothing to do. */
1874 if (list_empty(&target->bt_delwrite_queue))
1875 tout = MAX_SCHEDULE_TIMEOUT;
1876 schedule_timeout_interruptible(tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Dave Chinnerc9c12972010-01-11 11:49:59 +00001878 xfs_buf_delwri_split(target, &tmp, age);
Dave Chinner089716a2010-01-26 15:13:25 +11001879 list_sort(NULL, &tmp, xfs_buf_cmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 while (!list_empty(&tmp)) {
Dave Chinner089716a2010-01-26 15:13:25 +11001881 struct xfs_buf *bp;
1882 bp = list_first_entry(&tmp, struct xfs_buf, b_list);
Nathan Scottce8e9222006-01-11 15:39:08 +11001883 list_del_init(&bp->b_list);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001884 xfs_bdstrat_cb(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001885 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
Nathan Scottf07c2252006-09-28 10:52:15 +10001887 if (count)
1888 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001890 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001892 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894
1895/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001896 * Go through all incore buffers, and release buffers if they belong to
1897 * the given device. This is used in filesystem error handling to
1898 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 */
1900int
1901xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001902 xfs_buftarg_t *target,
1903 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904{
Dave Chinner089716a2010-01-26 15:13:25 +11001905 xfs_buf_t *bp;
David Chinner585e6d82007-02-10 18:32:29 +11001906 int pincount = 0;
Dave Chinner089716a2010-01-26 15:13:25 +11001907 LIST_HEAD(tmp_list);
1908 LIST_HEAD(wait_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Dave Chinnerc626d172009-04-06 18:42:11 +02001910 xfs_buf_runall_queues(xfsconvertd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001911 xfs_buf_runall_queues(xfsdatad_workqueue);
1912 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
David Chinner5e6a07d2007-02-10 18:34:49 +11001914 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
Dave Chinner089716a2010-01-26 15:13:25 +11001915 pincount = xfs_buf_delwri_split(target, &tmp_list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
1917 /*
Dave Chinner089716a2010-01-26 15:13:25 +11001918 * Dropped the delayed write list lock, now walk the temporary list.
1919 * All I/O is issued async and then if we need to wait for completion
1920 * we do that after issuing all the IO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 */
Dave Chinner089716a2010-01-26 15:13:25 +11001922 list_sort(NULL, &tmp_list, xfs_buf_cmp);
1923 while (!list_empty(&tmp_list)) {
1924 bp = list_first_entry(&tmp_list, struct xfs_buf, b_list);
David Chinner585e6d82007-02-10 18:32:29 +11001925 ASSERT(target == bp->b_target);
Dave Chinner089716a2010-01-26 15:13:25 +11001926 list_del_init(&bp->b_list);
1927 if (wait) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001928 bp->b_flags &= ~XBF_ASYNC;
Dave Chinner089716a2010-01-26 15:13:25 +11001929 list_add(&bp->b_list, &wait_list);
1930 }
Christoph Hellwig939d7232010-07-20 17:51:16 +10001931 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 }
1933
Dave Chinner089716a2010-01-26 15:13:25 +11001934 if (wait) {
1935 /* Expedite and wait for IO to complete. */
Nathan Scottf07c2252006-09-28 10:52:15 +10001936 blk_run_address_space(target->bt_mapping);
Dave Chinner089716a2010-01-26 15:13:25 +11001937 while (!list_empty(&wait_list)) {
1938 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
Nathan Scottf07c2252006-09-28 10:52:15 +10001939
Dave Chinner089716a2010-01-26 15:13:25 +11001940 list_del_init(&bp->b_list);
1941 xfs_iowait(bp);
1942 xfs_buf_relse(bp);
1943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 }
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 return pincount;
1947}
1948
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001949int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001950xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
Nathan Scott87582802006-03-14 13:18:19 +11001952 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1953 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001954 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001955 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001956
Dave Chinner51749e42010-09-08 09:00:22 +00001957 xfslogd_workqueue = alloc_workqueue("xfslogd",
1958 WQ_RESCUER | WQ_HIGHPRI, 1);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001959 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001960 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001962 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001963 if (!xfsdatad_workqueue)
1964 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Dave Chinnerc626d172009-04-06 18:42:11 +02001966 xfsconvertd_workqueue = create_workqueue("xfsconvertd");
1967 if (!xfsconvertd_workqueue)
1968 goto out_destroy_xfsdatad_workqueue;
1969
Rusty Russell8e1f9362007-07-17 04:03:17 -07001970 register_shrinker(&xfs_buf_shake);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001971 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Dave Chinnerc626d172009-04-06 18:42:11 +02001973 out_destroy_xfsdatad_workqueue:
1974 destroy_workqueue(xfsdatad_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001975 out_destroy_xfslogd_workqueue:
1976 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001977 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001978 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001979 out:
Nathan Scott87582802006-03-14 13:18:19 +11001980 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981}
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983void
Nathan Scottce8e9222006-01-11 15:39:08 +11001984xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
Rusty Russell8e1f9362007-07-17 04:03:17 -07001986 unregister_shrinker(&xfs_buf_shake);
Dave Chinnerc626d172009-04-06 18:42:11 +02001987 destroy_workqueue(xfsconvertd_workqueue);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001988 destroy_workqueue(xfsdatad_workqueue);
1989 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001990 kmem_zone_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001992
1993#ifdef CONFIG_KDB_MODULES
1994struct list_head *
1995xfs_get_buftarg_list(void)
1996{
1997 return &xfs_buftarg_list;
1998}
1999#endif