blob: 6f76ba85f193e724e8bba96d5c8cc07e40fb1c50 [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>
21#include <linux/slab.h>
22#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"
40#include "xfs_ag.h"
41#include "xfs_dmapi.h"
42#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 *);
Al Viro27496a82005-10-21 03:20:48 -040047STATIC int xfsbufd_wakeup(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/*
Felix Blyakher3a011a12009-02-18 15:56:51 -0600171 * Mapping of multi-page buffers into contiguous virtual space
172 */
173
174typedef struct a_list {
175 void *vm_addr;
176 struct a_list *next;
177} a_list_t;
178
179static a_list_t *as_free_head;
180static int as_list_len;
181static DEFINE_SPINLOCK(as_lock);
182
183/*
184 * Try to batch vunmaps because they are costly.
185 */
186STATIC void
187free_address(
188 void *addr)
189{
190 a_list_t *aentry;
191
192#ifdef CONFIG_XEN
193 /*
194 * Xen needs to be able to make sure it can get an exclusive
195 * RO mapping of pages it wants to turn into a pagetable. If
196 * a newly allocated page is also still being vmap()ed by xfs,
197 * it will cause pagetable construction to fail. This is a
198 * quick workaround to always eagerly unmap pages so that Xen
199 * is happy.
200 */
201 vunmap(addr);
202 return;
203#endif
204
205 aentry = kmalloc(sizeof(a_list_t), GFP_NOWAIT);
206 if (likely(aentry)) {
207 spin_lock(&as_lock);
208 aentry->next = as_free_head;
209 aentry->vm_addr = addr;
210 as_free_head = aentry;
211 as_list_len++;
212 spin_unlock(&as_lock);
213 } else {
214 vunmap(addr);
215 }
216}
217
218STATIC void
219purge_addresses(void)
220{
221 a_list_t *aentry, *old;
222
223 if (as_free_head == NULL)
224 return;
225
226 spin_lock(&as_lock);
227 aentry = as_free_head;
228 as_free_head = NULL;
229 as_list_len = 0;
230 spin_unlock(&as_lock);
231
232 while ((old = aentry) != NULL) {
233 vunmap(aentry->vm_addr);
234 aentry = aentry->next;
235 kfree(old);
236 }
237}
238
239/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100240 * Internal xfs_buf_t object manipulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 */
242
243STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100244_xfs_buf_initialize(
245 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100247 xfs_off_t range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 size_t range_length,
Nathan Scottce8e9222006-01-11 15:39:08 +1100249 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100252 * We don't want certain flags to appear in b_flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100254 flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Nathan Scottce8e9222006-01-11 15:39:08 +1100256 memset(bp, 0, sizeof(xfs_buf_t));
257 atomic_set(&bp->b_hold, 1);
David Chinnerb4dd3302008-08-13 16:36:11 +1000258 init_completion(&bp->b_iowait);
Nathan Scottce8e9222006-01-11 15:39:08 +1100259 INIT_LIST_HEAD(&bp->b_list);
260 INIT_LIST_HEAD(&bp->b_hash_list);
261 init_MUTEX_LOCKED(&bp->b_sema); /* held, no waiters */
262 XB_SET_OWNER(bp);
263 bp->b_target = target;
264 bp->b_file_offset = range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 /*
266 * Set buffer_length and count_desired to the same value initially.
267 * I/O routines should use count_desired, which will be the same in
268 * most cases but may be reset (e.g. XFS recovery).
269 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100270 bp->b_buffer_length = bp->b_count_desired = range_length;
271 bp->b_flags = flags;
272 bp->b_bn = XFS_BUF_DADDR_NULL;
273 atomic_set(&bp->b_pin_count, 0);
274 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Nathan Scottce8e9222006-01-11 15:39:08 +1100276 XFS_STATS_INC(xb_create);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000277
278 trace_xfs_buf_init(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100282 * Allocate a page array capable of holding a specified number
283 * of pages, and point the page buf at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 */
285STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100286_xfs_buf_get_pages(
287 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 int page_count,
Nathan Scottce8e9222006-01-11 15:39:08 +1100289 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 /* Make sure that we have a page list */
Nathan Scottce8e9222006-01-11 15:39:08 +1100292 if (bp->b_pages == NULL) {
293 bp->b_offset = xfs_buf_poff(bp->b_file_offset);
294 bp->b_page_count = page_count;
295 if (page_count <= XB_PAGES) {
296 bp->b_pages = bp->b_page_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100298 bp->b_pages = kmem_alloc(sizeof(struct page *) *
299 page_count, xb_to_km(flags));
300 if (bp->b_pages == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return -ENOMEM;
302 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100303 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
305 return 0;
306}
307
308/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100309 * Frees b_pages if it was allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 */
311STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100312_xfs_buf_free_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 xfs_buf_t *bp)
314{
Nathan Scottce8e9222006-01-11 15:39:08 +1100315 if (bp->b_pages != bp->b_page_array) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000316 kmem_free(bp->b_pages);
Dave Chinner3fc98b12009-12-14 23:11:57 +0000317 bp->b_pages = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319}
320
321/*
322 * Releases the specified buffer.
323 *
324 * The modification state of any associated pages is left unchanged.
Nathan Scottce8e9222006-01-11 15:39:08 +1100325 * The buffer most not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 * hashed and refcounted buffers
327 */
328void
Nathan Scottce8e9222006-01-11 15:39:08 +1100329xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 xfs_buf_t *bp)
331{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000332 trace_xfs_buf_free(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Nathan Scottce8e9222006-01-11 15:39:08 +1100334 ASSERT(list_empty(&bp->b_hash_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000336 if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 uint i;
338
James Bottomley73c77e22010-01-25 11:42:24 -0600339 if (xfs_buf_is_vmapped(bp))
Felix Blyakher3a011a12009-02-18 15:56:51 -0600340 free_address(bp->b_addr - bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Nathan Scott948ecdb2006-09-28 11:03:13 +1000342 for (i = 0; i < bp->b_page_count; i++) {
343 struct page *page = bp->b_pages[i];
344
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000345 if (bp->b_flags & _XBF_PAGE_CACHE)
346 ASSERT(!PagePrivate(page));
Nathan Scott948ecdb2006-09-28 11:03:13 +1000347 page_cache_release(page);
348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
Dave Chinner3fc98b12009-12-14 23:11:57 +0000350 _xfs_buf_free_pages(bp);
Nathan Scottce8e9222006-01-11 15:39:08 +1100351 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354/*
355 * Finds all pages for buffer in question and builds it's page list.
356 */
357STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100358_xfs_buf_lookup_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 xfs_buf_t *bp,
360 uint flags)
361{
Nathan Scottce8e9222006-01-11 15:39:08 +1100362 struct address_space *mapping = bp->b_target->bt_mapping;
363 size_t blocksize = bp->b_target->bt_bsize;
364 size_t size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100366 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 unsigned short page_count, i;
368 pgoff_t first;
Nathan Scott204ab252006-01-11 20:50:22 +1100369 xfs_off_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 int error;
371
Nathan Scottce8e9222006-01-11 15:39:08 +1100372 end = bp->b_file_offset + bp->b_buffer_length;
373 page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Nathan Scottce8e9222006-01-11 15:39:08 +1100375 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (unlikely(error))
377 return error;
Nathan Scottce8e9222006-01-11 15:39:08 +1100378 bp->b_flags |= _XBF_PAGE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Nathan Scottce8e9222006-01-11 15:39:08 +1100380 offset = bp->b_offset;
381 first = bp->b_file_offset >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Nathan Scottce8e9222006-01-11 15:39:08 +1100383 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 struct page *page;
385 uint retries = 0;
386
387 retry:
388 page = find_or_create_page(mapping, first + i, gfp_mask);
389 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100390 if (flags & XBF_READ_AHEAD) {
391 bp->b_page_count = i;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000392 for (i = 0; i < bp->b_page_count; i++)
393 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return -ENOMEM;
395 }
396
397 /*
398 * This could deadlock.
399 *
400 * But until all the XFS lowlevel code is revamped to
401 * handle buffer allocation failures we can't do much.
402 */
403 if (!(++retries % 100))
404 printk(KERN_ERR
405 "XFS: possible memory allocation "
406 "deadlock in %s (mode:0x%x)\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000407 __func__, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Nathan Scottce8e9222006-01-11 15:39:08 +1100409 XFS_STATS_INC(xb_page_retries);
Christoph Hellwig23ea4032005-06-21 15:14:01 +1000410 xfsbufd_wakeup(0, gfp_mask);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200411 congestion_wait(BLK_RW_ASYNC, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 goto retry;
413 }
414
Nathan Scottce8e9222006-01-11 15:39:08 +1100415 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
418 size -= nbytes;
419
Nathan Scott948ecdb2006-09-28 11:03:13 +1000420 ASSERT(!PagePrivate(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (!PageUptodate(page)) {
422 page_count--;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000423 if (blocksize >= PAGE_CACHE_SIZE) {
424 if (flags & XBF_READ)
425 bp->b_flags |= _XBF_PAGE_LOCKED;
426 } else if (!PagePrivate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (test_page_region(page, offset, nbytes))
428 page_count++;
429 }
430 }
431
Nathan Scottce8e9222006-01-11 15:39:08 +1100432 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 offset = 0;
434 }
435
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000436 if (!(bp->b_flags & _XBF_PAGE_LOCKED)) {
437 for (i = 0; i < bp->b_page_count; i++)
438 unlock_page(bp->b_pages[i]);
439 }
440
Nathan Scottce8e9222006-01-11 15:39:08 +1100441 if (page_count == bp->b_page_count)
442 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return error;
445}
446
447/*
448 * Map buffer into kernel address-space if nessecary.
449 */
450STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100451_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 xfs_buf_t *bp,
453 uint flags)
454{
455 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100456 if (bp->b_page_count == 1) {
457 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
458 bp->b_flags |= XBF_MAPPED;
459 } else if (flags & XBF_MAPPED) {
Felix Blyakher3a011a12009-02-18 15:56:51 -0600460 if (as_list_len > 64)
461 purge_addresses();
Felix Blyakhercf7dab82009-02-18 15:41:28 -0600462 bp->b_addr = vmap(bp->b_pages, bp->b_page_count,
463 VM_MAP, PAGE_KERNEL);
Nathan Scottce8e9222006-01-11 15:39:08 +1100464 if (unlikely(bp->b_addr == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100466 bp->b_addr += bp->b_offset;
467 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469
470 return 0;
471}
472
473/*
474 * Finding and Reading Buffers
475 */
476
477/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100478 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 * a given range of an inode. The buffer is returned
480 * locked. If other overlapping buffers exist, they are
481 * released before the new buffer is created and locked,
482 * which may imply that this call will block until those buffers
483 * are unlocked. No I/O is implied by this call.
484 */
485xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100486_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab252006-01-11 20:50:22 +1100488 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100490 xfs_buf_flags_t flags,
491 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Nathan Scott204ab252006-01-11 20:50:22 +1100493 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 size_t range_length;
495 xfs_bufhash_t *hash;
Nathan Scottce8e9222006-01-11 15:39:08 +1100496 xfs_buf_t *bp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 range_base = (ioff << BBSHIFT);
499 range_length = (isize << BBSHIFT);
500
501 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100502 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab252006-01-11 20:50:22 +1100503 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)];
506
507 spin_lock(&hash->bh_lock);
508
Nathan Scottce8e9222006-01-11 15:39:08 +1100509 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
510 ASSERT(btp == bp->b_target);
511 if (bp->b_file_offset == range_base &&
512 bp->b_buffer_length == range_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100514 * If we look at something, bring it to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 * front of the list for next time.
516 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100517 atomic_inc(&bp->b_hold);
518 list_move(&bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 goto found;
520 }
521 }
522
523 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100524 if (new_bp) {
525 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 range_length, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100527 new_bp->b_hash = hash;
528 list_add(&new_bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100530 XFS_STATS_INC(xb_miss_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532
533 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100534 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536found:
537 spin_unlock(&hash->bh_lock);
538
539 /* Attempt to get the semaphore without sleeping,
540 * if this does not work then we need to drop the
541 * spinlock and do a hard attempt on the semaphore.
542 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100543 if (down_trylock(&bp->b_sema)) {
544 if (!(flags & XBF_TRYLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 /* wait for buffer ownership */
Nathan Scottce8e9222006-01-11 15:39:08 +1100546 xfs_buf_lock(bp);
547 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 } else {
549 /* We asked for a trylock and failed, no need
550 * to look at file offset and length here, we
Nathan Scottce8e9222006-01-11 15:39:08 +1100551 * know that this buffer at least overlaps our
552 * buffer and is locked, therefore our buffer
553 * either does not exist, or is this buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100555 xfs_buf_rele(bp);
556 XFS_STATS_INC(xb_busy_locked);
557 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559 } else {
560 /* trylock worked */
Nathan Scottce8e9222006-01-11 15:39:08 +1100561 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563
Nathan Scottce8e9222006-01-11 15:39:08 +1100564 if (bp->b_flags & XBF_STALE) {
565 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
566 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000567 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000568
569 trace_xfs_buf_find(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100570 XFS_STATS_INC(xb_get_locked);
571 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
574/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100575 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * Storage in memory for all portions of the buffer will be allocated,
577 * although backing storage may not be.
578 */
579xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000580xfs_buf_get(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100582 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100584 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Nathan Scottce8e9222006-01-11 15:39:08 +1100586 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 int error = 0, i;
588
Nathan Scottce8e9222006-01-11 15:39:08 +1100589 new_bp = xfs_buf_allocate(flags);
590 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return NULL;
592
Nathan Scottce8e9222006-01-11 15:39:08 +1100593 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
594 if (bp == new_bp) {
595 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (error)
597 goto no_buffer;
598 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100599 xfs_buf_deallocate(new_bp);
600 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return NULL;
602 }
603
Nathan Scottce8e9222006-01-11 15:39:08 +1100604 for (i = 0; i < bp->b_page_count; i++)
605 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Nathan Scottce8e9222006-01-11 15:39:08 +1100607 if (!(bp->b_flags & XBF_MAPPED)) {
608 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (unlikely(error)) {
610 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000611 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 goto no_buffer;
613 }
614 }
615
Nathan Scottce8e9222006-01-11 15:39:08 +1100616 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 /*
619 * Always fill in the block number now, the mapped cases can do
620 * their own overlay of this later.
621 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100622 bp->b_bn = ioff;
623 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000625 trace_xfs_buf_get(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100626 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100629 if (flags & (XBF_LOCK | XBF_TRYLOCK))
630 xfs_buf_unlock(bp);
631 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return NULL;
633}
634
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100635STATIC int
636_xfs_buf_read(
637 xfs_buf_t *bp,
638 xfs_buf_flags_t flags)
639{
640 int status;
641
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100642 ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE)));
643 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
644
645 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
646 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
647 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | \
648 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
649
650 status = xfs_buf_iorequest(bp);
651 if (!status && !(flags & XBF_ASYNC))
652 status = xfs_buf_iowait(bp);
653 return status;
654}
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000657xfs_buf_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100659 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100661 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Nathan Scottce8e9222006-01-11 15:39:08 +1100663 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Nathan Scottce8e9222006-01-11 15:39:08 +1100665 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000667 bp = xfs_buf_get(target, ioff, isize, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100668 if (bp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000669 trace_xfs_buf_read(bp, flags, _RET_IP_);
670
Nathan Scottce8e9222006-01-11 15:39:08 +1100671 if (!XFS_BUF_ISDONE(bp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100672 XFS_STATS_INC(xb_get_read);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100673 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100674 } else if (flags & XBF_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 /*
676 * Read ahead call which is already satisfied,
677 * drop the buffer
678 */
679 goto no_buffer;
680 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100682 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
684 }
685
Nathan Scottce8e9222006-01-11 15:39:08 +1100686 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100689 if (flags & (XBF_LOCK | XBF_TRYLOCK))
690 xfs_buf_unlock(bp);
691 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return NULL;
693}
694
695/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100696 * If we are not low on memory then do the readahead in a deadlock
697 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 */
699void
Nathan Scottce8e9222006-01-11 15:39:08 +1100700xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100702 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100704 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 struct backing_dev_info *bdi;
707
Nathan Scottce8e9222006-01-11 15:39:08 +1100708 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (bdi_read_congested(bdi))
710 return;
711
Nathan Scottce8e9222006-01-11 15:39:08 +1100712 flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000713 xfs_buf_read(target, ioff, isize, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
716xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100717xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 size_t len,
719 xfs_buftarg_t *target)
720{
Nathan Scottce8e9222006-01-11 15:39:08 +1100721 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Nathan Scottce8e9222006-01-11 15:39:08 +1100723 bp = xfs_buf_allocate(0);
724 if (bp)
725 _xfs_buf_initialize(bp, target, 0, len, 0);
726 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
729static inline struct page *
730mem_to_page(
731 void *addr)
732{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800733 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return virt_to_page(addr);
735 } else {
736 return vmalloc_to_page(addr);
737 }
738}
739
740int
Nathan Scottce8e9222006-01-11 15:39:08 +1100741xfs_buf_associate_memory(
742 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 void *mem,
744 size_t len)
745{
746 int rval;
747 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100748 unsigned long pageaddr;
749 unsigned long offset;
750 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 int page_count;
752
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100753 pageaddr = (unsigned long)mem & PAGE_CACHE_MASK;
754 offset = (unsigned long)mem - pageaddr;
755 buflen = PAGE_CACHE_ALIGN(len + offset);
756 page_count = buflen >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100759 if (bp->b_pages)
760 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Nathan Scottce8e9222006-01-11 15:39:08 +1100762 bp->b_pages = NULL;
763 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Christoph Hellwig36fae172009-07-18 18:14:58 -0400765 rval = _xfs_buf_get_pages(bp, page_count, XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (rval)
767 return rval;
768
Nathan Scottce8e9222006-01-11 15:39:08 +1100769 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100771 for (i = 0; i < bp->b_page_count; i++) {
772 bp->b_pages[i] = mem_to_page((void *)pageaddr);
773 pageaddr += PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100776 bp->b_count_desired = len;
777 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100778 bp->b_flags |= XBF_MAPPED;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000779 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 return 0;
782}
783
784xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100785xfs_buf_get_noaddr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 size_t len,
787 xfs_buftarg_t *target)
788{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000789 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
790 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Nathan Scottce8e9222006-01-11 15:39:08 +1100793 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (unlikely(bp == NULL))
795 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100796 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000798 error = _xfs_buf_get_pages(bp, page_count, 0);
799 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 goto fail_free_buf;
801
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000802 for (i = 0; i < page_count; i++) {
803 bp->b_pages[i] = alloc_page(GFP_KERNEL);
804 if (!bp->b_pages[i])
805 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000807 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000809 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
810 if (unlikely(error)) {
811 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000812 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Nathan Scottce8e9222006-01-11 15:39:08 +1100816 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000818 trace_xfs_buf_get_noaddr(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000822 while (--i >= 0)
823 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000824 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000826 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 fail:
828 return NULL;
829}
830
831/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 * Increment reference count on buffer, to hold the buffer concurrently
833 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 * Must hold the buffer already to call this function.
835 */
836void
Nathan Scottce8e9222006-01-11 15:39:08 +1100837xfs_buf_hold(
838 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000840 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100841 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
844/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100845 * Releases a hold on the specified buffer. If the
846 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 */
848void
Nathan Scottce8e9222006-01-11 15:39:08 +1100849xfs_buf_rele(
850 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
Nathan Scottce8e9222006-01-11 15:39:08 +1100852 xfs_bufhash_t *hash = bp->b_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000854 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Nathan Scottfad3aa12006-02-01 12:14:52 +1100856 if (unlikely(!hash)) {
857 ASSERT(!bp->b_relse);
858 if (atomic_dec_and_test(&bp->b_hold))
859 xfs_buf_free(bp);
860 return;
861 }
862
Lachlan McIlroy37906892008-08-13 15:42:10 +1000863 ASSERT(atomic_read(&bp->b_hold) > 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100864 if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) {
865 if (bp->b_relse) {
866 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100868 (*(bp->b_relse)) (bp);
869 } else if (bp->b_flags & XBF_FS_MANAGED) {
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100870 spin_unlock(&hash->bh_lock);
871 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100872 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
873 list_del_init(&bp->b_hash_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100875 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877 }
878}
879
880
881/*
882 * Mutual exclusion on buffers. Locking model:
883 *
884 * Buffers associated with inodes for which buffer locking
885 * is not enabled are not protected by semaphores, and are
886 * assumed to be exclusively owned by the caller. There is a
887 * spinlock in the buffer, used by the caller when concurrent
888 * access is possible.
889 */
890
891/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100892 * Locks a buffer object, if it is not already locked.
893 * Note that this in no way locks the underlying pages, so it is only
894 * useful for synchronizing concurrent use of buffer objects, not for
895 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 */
897int
Nathan Scottce8e9222006-01-11 15:39:08 +1100898xfs_buf_cond_lock(
899 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
901 int locked;
902
Nathan Scottce8e9222006-01-11 15:39:08 +1100903 locked = down_trylock(&bp->b_sema) == 0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000904 if (locked)
Nathan Scottce8e9222006-01-11 15:39:08 +1100905 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000906
907 trace_xfs_buf_cond_lock(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100908 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911int
Nathan Scottce8e9222006-01-11 15:39:08 +1100912xfs_buf_lock_value(
913 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Stephen Rothwelladaa6932008-04-22 15:26:13 +1000915 return bp->b_sema.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100919 * Locks a buffer object.
920 * Note that this in no way locks the underlying pages, so it is only
921 * useful for synchronizing concurrent use of buffer objects, not for
922 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100924void
925xfs_buf_lock(
926 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000928 trace_xfs_buf_lock(bp, _RET_IP_);
929
Nathan Scottce8e9222006-01-11 15:39:08 +1100930 if (atomic_read(&bp->b_io_remaining))
931 blk_run_address_space(bp->b_target->bt_mapping);
932 down(&bp->b_sema);
933 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000934
935 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
938/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100939 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000940 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100941 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000942 * take a reference for the delwri queue because the unlocker is going to
943 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 */
945void
Nathan Scottce8e9222006-01-11 15:39:08 +1100946xfs_buf_unlock(
947 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Nathan Scottce8e9222006-01-11 15:39:08 +1100949 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
950 atomic_inc(&bp->b_hold);
951 bp->b_flags |= XBF_ASYNC;
952 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000953 }
954
Nathan Scottce8e9222006-01-11 15:39:08 +1100955 XB_CLEAR_OWNER(bp);
956 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000957
958 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
961
962/*
963 * Pinning Buffer Storage in Memory
Nathan Scottce8e9222006-01-11 15:39:08 +1100964 * Ensure that no attempt to force a buffer to disk will succeed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 */
966void
Nathan Scottce8e9222006-01-11 15:39:08 +1100967xfs_buf_pin(
968 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000970 trace_xfs_buf_pin(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100971 atomic_inc(&bp->b_pin_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972}
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974void
Nathan Scottce8e9222006-01-11 15:39:08 +1100975xfs_buf_unpin(
976 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000978 trace_xfs_buf_unpin(bp, _RET_IP_);
979
Nathan Scottce8e9222006-01-11 15:39:08 +1100980 if (atomic_dec_and_test(&bp->b_pin_count))
981 wake_up_all(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
983
984int
Nathan Scottce8e9222006-01-11 15:39:08 +1100985xfs_buf_ispin(
986 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Nathan Scottce8e9222006-01-11 15:39:08 +1100988 return atomic_read(&bp->b_pin_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
990
Nathan Scottce8e9222006-01-11 15:39:08 +1100991STATIC void
992xfs_buf_wait_unpin(
993 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
995 DECLARE_WAITQUEUE (wait, current);
996
Nathan Scottce8e9222006-01-11 15:39:08 +1100997 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return;
999
Nathan Scottce8e9222006-01-11 15:39:08 +11001000 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 for (;;) {
1002 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +11001003 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001005 if (atomic_read(&bp->b_io_remaining))
1006 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 schedule();
1008 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001009 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 set_current_state(TASK_RUNNING);
1011}
1012
1013/*
1014 * Buffer Utility Routines
1015 */
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001018xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +00001019 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
David Howellsc4028952006-11-22 14:57:56 +00001021 xfs_buf_t *bp =
1022 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
David Chinner0bfefc42007-05-14 18:24:23 +10001024 /*
1025 * We can get an EOPNOTSUPP to ordered writes. Here we clear the
1026 * ordered flag and reissue them. Because we can't tell the higher
1027 * layers directly that they should not issue ordered I/O anymore, they
Christoph Hellwig73f6aa42008-10-10 17:28:29 +11001028 * need to check if the _XFS_BARRIER_FAILED flag was set during I/O completion.
David Chinner0bfefc42007-05-14 18:24:23 +10001029 */
1030 if ((bp->b_error == EOPNOTSUPP) &&
1031 (bp->b_flags & (XBF_ORDERED|XBF_ASYNC)) == (XBF_ORDERED|XBF_ASYNC)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001032 trace_xfs_buf_ordered_retry(bp, _RET_IP_);
David Chinner0bfefc42007-05-14 18:24:23 +10001033 bp->b_flags &= ~XBF_ORDERED;
Christoph Hellwig73f6aa42008-10-10 17:28:29 +11001034 bp->b_flags |= _XFS_BARRIER_FAILED;
David Chinner0bfefc42007-05-14 18:24:23 +10001035 xfs_buf_iorequest(bp);
1036 } else if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +11001037 (*(bp->b_iodone))(bp);
1038 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 xfs_buf_relse(bp);
1040}
1041
1042void
Nathan Scottce8e9222006-01-11 15:39:08 +11001043xfs_buf_ioend(
1044 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 int schedule)
1046{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001047 trace_xfs_buf_iodone(bp, _RET_IP_);
1048
Lachlan McIlroy77be55a2007-11-23 16:31:00 +11001049 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +11001050 if (bp->b_error == 0)
1051 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Nathan Scottce8e9222006-01-11 15:39:08 +11001053 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001055 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001056 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 } else {
David Howellsc4028952006-11-22 14:57:56 +00001058 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
1060 } else {
David Chinnerb4dd3302008-08-13 16:36:11 +10001061 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063}
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065void
Nathan Scottce8e9222006-01-11 15:39:08 +11001066xfs_buf_ioerror(
1067 xfs_buf_t *bp,
1068 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
1070 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001071 bp->b_error = (unsigned short)error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001072 trace_xfs_buf_ioerror(bp, error, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075int
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001076xfs_bwrite(
1077 struct xfs_mount *mp,
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001078 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001080 int iowait = (bp->b_flags & XBF_ASYNC) == 0;
1081 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001083 bp->b_strat = xfs_bdstrat_cb;
1084 bp->b_mount = mp;
1085 bp->b_flags |= XBF_WRITE;
1086 if (!iowait)
1087 bp->b_flags |= _XBF_RUN_QUEUES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001089 xfs_buf_delwri_dequeue(bp);
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001090 xfs_buf_iostrategy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001092 if (iowait) {
1093 error = xfs_buf_iowait(bp);
1094 if (error)
1095 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1096 xfs_buf_relse(bp);
1097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001099 return error;
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001100}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001102void
1103xfs_bdwrite(
1104 void *mp,
1105 struct xfs_buf *bp)
1106{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001107 trace_xfs_buf_bdwrite(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001109 bp->b_strat = xfs_bdstrat_cb;
Christoph Hellwig15ac08a2008-12-09 04:47:30 -05001110 bp->b_mount = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001112 bp->b_flags &= ~XBF_READ;
1113 bp->b_flags |= (XBF_DELWRI | XBF_ASYNC);
1114
1115 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
1117
Christoph Hellwig4e234712010-01-13 22:17:56 +00001118/*
1119 * Called when we want to stop a buffer from getting written or read.
1120 * We attach the EIO error, muck with its flags, and call biodone
1121 * so that the proper iodone callbacks get called.
1122 */
1123STATIC int
1124xfs_bioerror(
1125 xfs_buf_t *bp)
1126{
1127#ifdef XFSERRORDEBUG
1128 ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
1129#endif
1130
1131 /*
1132 * No need to wait until the buffer is unpinned, we aren't flushing it.
1133 */
1134 XFS_BUF_ERROR(bp, EIO);
1135
1136 /*
1137 * We're calling biodone, so delete XBF_DONE flag.
1138 */
1139 XFS_BUF_UNREAD(bp);
1140 XFS_BUF_UNDELAYWRITE(bp);
1141 XFS_BUF_UNDONE(bp);
1142 XFS_BUF_STALE(bp);
1143
1144 XFS_BUF_CLR_BDSTRAT_FUNC(bp);
1145 xfs_biodone(bp);
1146
1147 return EIO;
1148}
1149
1150/*
1151 * Same as xfs_bioerror, except that we are releasing the buffer
1152 * here ourselves, and avoiding the biodone call.
1153 * This is meant for userdata errors; metadata bufs come with
1154 * iodone functions attached, so that we can track down errors.
1155 */
1156STATIC int
1157xfs_bioerror_relse(
1158 struct xfs_buf *bp)
1159{
1160 int64_t fl = XFS_BUF_BFLAGS(bp);
1161 /*
1162 * No need to wait until the buffer is unpinned.
1163 * We aren't flushing it.
1164 *
1165 * chunkhold expects B_DONE to be set, whether
1166 * we actually finish the I/O or not. We don't want to
1167 * change that interface.
1168 */
1169 XFS_BUF_UNREAD(bp);
1170 XFS_BUF_UNDELAYWRITE(bp);
1171 XFS_BUF_DONE(bp);
1172 XFS_BUF_STALE(bp);
1173 XFS_BUF_CLR_IODONE_FUNC(bp);
1174 XFS_BUF_CLR_BDSTRAT_FUNC(bp);
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001175 if (!(fl & XBF_ASYNC)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001176 /*
1177 * Mark b_error and B_ERROR _both_.
1178 * Lot's of chunkcache code assumes that.
1179 * There's no reason to mark error for
1180 * ASYNC buffers.
1181 */
1182 XFS_BUF_ERROR(bp, EIO);
1183 XFS_BUF_FINISH_IOWAIT(bp);
1184 } else {
1185 xfs_buf_relse(bp);
1186 }
1187
1188 return EIO;
1189}
1190
1191
1192/*
1193 * All xfs metadata buffers except log state machine buffers
1194 * get this attached as their b_bdstrat callback function.
1195 * This is so that we can catch a buffer
1196 * after prematurely unpinning it to forcibly shutdown the filesystem.
1197 */
1198int
1199xfs_bdstrat_cb(
1200 struct xfs_buf *bp)
1201{
1202 if (XFS_FORCED_SHUTDOWN(bp->b_mount)) {
1203 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1204 /*
1205 * Metadata write that didn't get logged but
1206 * written delayed anyway. These aren't associated
1207 * with a transaction, and can be ignored.
1208 */
1209 if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
1210 return xfs_bioerror_relse(bp);
1211 else
1212 return xfs_bioerror(bp);
1213 }
1214
1215 xfs_buf_iorequest(bp);
1216 return 0;
1217}
1218
1219/*
1220 * Wrapper around bdstrat so that we can stop data from going to disk in case
1221 * we are shutting down the filesystem. Typically user data goes thru this
1222 * path; one of the exceptions is the superblock.
1223 */
1224void
1225xfsbdstrat(
1226 struct xfs_mount *mp,
1227 struct xfs_buf *bp)
1228{
1229 if (XFS_FORCED_SHUTDOWN(mp)) {
1230 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1231 xfs_bioerror_relse(bp);
1232 return;
1233 }
1234
1235 xfs_buf_iorequest(bp);
1236}
1237
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001238STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001239_xfs_buf_ioend(
1240 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 int schedule)
1242{
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001243 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1244 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Nathan Scottce8e9222006-01-11 15:39:08 +11001245 xfs_buf_ioend(bp, schedule);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Al Viro782e3b32007-10-12 07:17:47 +01001249STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001250xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 int error)
1253{
Nathan Scottce8e9222006-01-11 15:39:08 +11001254 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1255 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001256 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Lachlan McIlroycfbe5262008-12-12 15:27:25 +11001258 xfs_buf_ioerror(bp, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
James Bottomley73c77e22010-01-25 11:42:24 -06001260 if (!error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
1261 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1262
Nathan Scotteedb5532005-09-02 16:39:56 +10001263 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 struct page *page = bvec->bv_page;
1265
Nathan Scott948ecdb2006-09-28 11:03:13 +10001266 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001267 if (unlikely(bp->b_error)) {
1268 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001269 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001270 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 SetPageUptodate(page);
1272 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001273 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1275 }
1276
Nathan Scotteedb5532005-09-02 16:39:56 +10001277 if (--bvec >= bio->bi_io_vec)
1278 prefetchw(&bvec->bv_page->flags);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001279
1280 if (bp->b_flags & _XBF_PAGE_LOCKED)
1281 unlock_page(page);
Nathan Scotteedb5532005-09-02 16:39:56 +10001282 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Nathan Scottce8e9222006-01-11 15:39:08 +11001284 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
1287
1288STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001289_xfs_buf_ioapply(
1290 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
Christoph Hellwiga9759f22007-12-07 14:07:08 +11001292 int rw, map_i, total_nr_pages, nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001294 int offset = bp->b_offset;
1295 int size = bp->b_count_desired;
1296 sector_t sector = bp->b_bn;
1297 unsigned int blocksize = bp->b_target->bt_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Nathan Scottce8e9222006-01-11 15:39:08 +11001299 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 map_i = 0;
1301
Nathan Scottce8e9222006-01-11 15:39:08 +11001302 if (bp->b_flags & XBF_ORDERED) {
1303 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001304 rw = WRITE_BARRIER;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001305 } else if (bp->b_flags & XBF_LOG_BUFFER) {
Nathan Scott51bdd702006-09-28 11:01:57 +10001306 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1307 bp->b_flags &= ~_XBF_RUN_QUEUES;
1308 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001309 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1310 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1311 bp->b_flags &= ~_XBF_RUN_QUEUES;
1312 rw = (bp->b_flags & XBF_WRITE) ? WRITE_META : READ_META;
Nathan Scott51bdd702006-09-28 11:01:57 +10001313 } else {
1314 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1315 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001316 }
1317
Nathan Scottce8e9222006-01-11 15:39:08 +11001318 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 * we populate up the whole page, and hence the other metadata
1320 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001321 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001323 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001324 ((bp->b_flags & (XBF_READ|_XBF_PAGE_LOCKED)) ==
1325 (XBF_READ|_XBF_PAGE_LOCKED)) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001326 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 bio = bio_alloc(GFP_NOIO, 1);
1328
Nathan Scottce8e9222006-01-11 15:39:08 +11001329 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001331 bio->bi_end_io = xfs_buf_bio_end_io;
1332 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Nathan Scottce8e9222006-01-11 15:39:08 +11001334 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 size = 0;
1336
Nathan Scottce8e9222006-01-11 15:39:08 +11001337 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 goto submit_io;
1340 }
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001343 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1345 if (nr_pages > total_nr_pages)
1346 nr_pages = total_nr_pages;
1347
1348 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001349 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001351 bio->bi_end_io = xfs_buf_bio_end_io;
1352 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001355 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 if (nbytes > size)
1358 nbytes = size;
1359
Nathan Scottce8e9222006-01-11 15:39:08 +11001360 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1361 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 break;
1363
1364 offset = 0;
1365 sector += nbytes >> BBSHIFT;
1366 size -= nbytes;
1367 total_nr_pages--;
1368 }
1369
1370submit_io:
1371 if (likely(bio->bi_size)) {
James Bottomley73c77e22010-01-25 11:42:24 -06001372 if (xfs_buf_is_vmapped(bp)) {
1373 flush_kernel_vmap_range(bp->b_addr,
1374 xfs_buf_vmap_len(bp));
1375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 submit_bio(rw, bio);
1377 if (size)
1378 goto next_chunk;
1379 } else {
1380 bio_put(bio);
Nathan Scottce8e9222006-01-11 15:39:08 +11001381 xfs_buf_ioerror(bp, EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
1383}
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385int
Nathan Scottce8e9222006-01-11 15:39:08 +11001386xfs_buf_iorequest(
1387 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001389 trace_xfs_buf_iorequest(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Nathan Scottce8e9222006-01-11 15:39:08 +11001391 if (bp->b_flags & XBF_DELWRI) {
1392 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return 0;
1394 }
1395
Nathan Scottce8e9222006-01-11 15:39:08 +11001396 if (bp->b_flags & XBF_WRITE) {
1397 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
1399
Nathan Scottce8e9222006-01-11 15:39:08 +11001400 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 /* Set the count to 1 initially, this will stop an I/O
1403 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001404 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001406 atomic_set(&bp->b_io_remaining, 1);
1407 _xfs_buf_ioapply(bp);
1408 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Nathan Scottce8e9222006-01-11 15:39:08 +11001410 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 return 0;
1412}
1413
1414/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001415 * Waits for I/O to complete on the buffer supplied.
1416 * It returns immediately if no I/O is pending.
1417 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 */
1419int
Nathan Scottce8e9222006-01-11 15:39:08 +11001420xfs_buf_iowait(
1421 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001423 trace_xfs_buf_iowait(bp, _RET_IP_);
1424
Nathan Scottce8e9222006-01-11 15:39:08 +11001425 if (atomic_read(&bp->b_io_remaining))
1426 blk_run_address_space(bp->b_target->bt_mapping);
David Chinnerb4dd3302008-08-13 16:36:11 +10001427 wait_for_completion(&bp->b_iowait);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001428
1429 trace_xfs_buf_iowait_done(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +11001430 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
Nathan Scottce8e9222006-01-11 15:39:08 +11001433xfs_caddr_t
1434xfs_buf_offset(
1435 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 size_t offset)
1437{
1438 struct page *page;
1439
Nathan Scottce8e9222006-01-11 15:39:08 +11001440 if (bp->b_flags & XBF_MAPPED)
1441 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Nathan Scottce8e9222006-01-11 15:39:08 +11001443 offset += bp->b_offset;
1444 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1445 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447
1448/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 * Move data into or out of a buffer.
1450 */
1451void
Nathan Scottce8e9222006-01-11 15:39:08 +11001452xfs_buf_iomove(
1453 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 size_t boff, /* starting buffer offset */
1455 size_t bsize, /* length to copy */
Dave Chinnerb9c48642010-01-20 10:47:39 +11001456 void *data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001457 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
1459 size_t bend, cpoff, csize;
1460 struct page *page;
1461
1462 bend = boff + bsize;
1463 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001464 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1465 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001467 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1470
1471 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001472 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 memset(page_address(page) + cpoff, 0, csize);
1474 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001475 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 memcpy(data, page_address(page) + cpoff, csize);
1477 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001478 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 memcpy(page_address(page) + cpoff, data, csize);
1480 }
1481
1482 boff += csize;
1483 data += csize;
1484 }
1485}
1486
1487/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001488 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 */
1490
1491/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001492 * Wait for any bufs with callbacks that have been submitted but
1493 * have not yet returned... walk the hash list for the target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 */
1495void
1496xfs_wait_buftarg(
1497 xfs_buftarg_t *btp)
1498{
1499 xfs_buf_t *bp, *n;
1500 xfs_bufhash_t *hash;
1501 uint i;
1502
1503 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1504 hash = &btp->bt_hash[i];
1505again:
1506 spin_lock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001507 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
1508 ASSERT(btp == bp->b_target);
1509 if (!(bp->b_flags & XBF_FS_MANAGED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 spin_unlock(&hash->bh_lock);
David Chinner2f926582005-09-05 08:33:35 +10001511 /*
1512 * Catch superblock reference count leaks
1513 * immediately
1514 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001515 BUG_ON(bp->b_bn == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 delay(100);
1517 goto again;
1518 }
1519 }
1520 spin_unlock(&hash->bh_lock);
1521 }
1522}
1523
1524/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001525 * Allocate buffer hash table for a given target.
1526 * For devices containing metadata (i.e. not the log/realtime devices)
1527 * we need to allocate a much larger hash table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 */
1529STATIC void
1530xfs_alloc_bufhash(
1531 xfs_buftarg_t *btp,
1532 int external)
1533{
1534 unsigned int i;
1535
1536 btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */
1537 btp->bt_hashmask = (1 << btp->bt_hashshift) - 1;
Christoph Hellwigbdfb0432010-01-20 21:55:30 +00001538 btp->bt_hash = kmem_zalloc_large((1 << btp->bt_hashshift) *
1539 sizeof(xfs_bufhash_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1541 spin_lock_init(&btp->bt_hash[i].bh_lock);
1542 INIT_LIST_HEAD(&btp->bt_hash[i].bh_list);
1543 }
1544}
1545
1546STATIC void
1547xfs_free_bufhash(
1548 xfs_buftarg_t *btp)
1549{
Christoph Hellwigbdfb0432010-01-20 21:55:30 +00001550 kmem_free_large(btp->bt_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 btp->bt_hash = NULL;
1552}
1553
David Chinnera6867a62006-01-11 15:37:58 +11001554/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001555 * buftarg list for delwrite queue processing
David Chinnera6867a62006-01-11 15:37:58 +11001556 */
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001557static LIST_HEAD(xfs_buftarg_list);
David Chinner7989cb82007-02-10 18:34:56 +11001558static DEFINE_SPINLOCK(xfs_buftarg_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001559
1560STATIC void
1561xfs_register_buftarg(
1562 xfs_buftarg_t *btp)
1563{
1564 spin_lock(&xfs_buftarg_lock);
1565 list_add(&btp->bt_list, &xfs_buftarg_list);
1566 spin_unlock(&xfs_buftarg_lock);
1567}
1568
1569STATIC void
1570xfs_unregister_buftarg(
1571 xfs_buftarg_t *btp)
1572{
1573 spin_lock(&xfs_buftarg_lock);
1574 list_del(&btp->bt_list);
1575 spin_unlock(&xfs_buftarg_lock);
1576}
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578void
1579xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001580 struct xfs_mount *mp,
1581 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
1583 xfs_flush_buftarg(btp, 1);
Christoph Hellwigb7963132009-03-03 14:48:37 -05001584 if (mp->m_flags & XFS_MOUNT_BARRIER)
1585 xfs_blkdev_issue_flush(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 xfs_free_bufhash(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001587 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001588
Nathan Scottce8e9222006-01-11 15:39:08 +11001589 /* Unregister the buftarg first so that we don't get a
1590 * wakeup finding a non-existent task
1591 */
David Chinnera6867a62006-01-11 15:37:58 +11001592 xfs_unregister_buftarg(btp);
1593 kthread_stop(btp->bt_task);
1594
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001595 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596}
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598STATIC int
1599xfs_setsize_buftarg_flags(
1600 xfs_buftarg_t *btp,
1601 unsigned int blocksize,
1602 unsigned int sectorsize,
1603 int verbose)
1604{
Nathan Scottce8e9222006-01-11 15:39:08 +11001605 btp->bt_bsize = blocksize;
1606 btp->bt_sshift = ffs(sectorsize) - 1;
1607 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Nathan Scottce8e9222006-01-11 15:39:08 +11001609 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 printk(KERN_WARNING
1611 "XFS: Cannot set_blocksize to %u on device %s\n",
1612 sectorsize, XFS_BUFTARG_NAME(btp));
1613 return EINVAL;
1614 }
1615
1616 if (verbose &&
1617 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1618 printk(KERN_WARNING
1619 "XFS: %u byte sectors in use on device %s. "
1620 "This is suboptimal; %u or greater is ideal.\n",
1621 sectorsize, XFS_BUFTARG_NAME(btp),
1622 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1623 }
1624
1625 return 0;
1626}
1627
1628/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001629 * When allocating the initial buffer target we have not yet
1630 * read in the superblock, so don't know what sized sectors
1631 * are being used is at this early stage. Play safe.
1632 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633STATIC int
1634xfs_setsize_buftarg_early(
1635 xfs_buftarg_t *btp,
1636 struct block_device *bdev)
1637{
1638 return xfs_setsize_buftarg_flags(btp,
Martin K. Petersene1defc42009-05-22 17:17:49 -04001639 PAGE_CACHE_SIZE, bdev_logical_block_size(bdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
1641
1642int
1643xfs_setsize_buftarg(
1644 xfs_buftarg_t *btp,
1645 unsigned int blocksize,
1646 unsigned int sectorsize)
1647{
1648 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1649}
1650
1651STATIC int
1652xfs_mapping_buftarg(
1653 xfs_buftarg_t *btp,
1654 struct block_device *bdev)
1655{
1656 struct backing_dev_info *bdi;
1657 struct inode *inode;
1658 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001659 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001661 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 };
1663
1664 inode = new_inode(bdev->bd_inode->i_sb);
1665 if (!inode) {
1666 printk(KERN_WARNING
1667 "XFS: Cannot allocate mapping inode for device %s\n",
1668 XFS_BUFTARG_NAME(btp));
1669 return ENOMEM;
1670 }
1671 inode->i_mode = S_IFBLK;
1672 inode->i_bdev = bdev;
1673 inode->i_rdev = bdev->bd_dev;
1674 bdi = blk_get_backing_dev_info(bdev);
1675 if (!bdi)
1676 bdi = &default_backing_dev_info;
1677 mapping = &inode->i_data;
1678 mapping->a_ops = &mapping_aops;
1679 mapping->backing_dev_info = bdi;
1680 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001681 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return 0;
1683}
1684
David Chinnera6867a62006-01-11 15:37:58 +11001685STATIC int
1686xfs_alloc_delwrite_queue(
1687 xfs_buftarg_t *btp)
1688{
1689 int error = 0;
1690
1691 INIT_LIST_HEAD(&btp->bt_list);
1692 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
Eric Sandeen007c61c2007-10-11 17:43:56 +10001693 spin_lock_init(&btp->bt_delwrite_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001694 btp->bt_flags = 0;
1695 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd");
1696 if (IS_ERR(btp->bt_task)) {
1697 error = PTR_ERR(btp->bt_task);
1698 goto out_error;
1699 }
1700 xfs_register_buftarg(btp);
1701out_error:
1702 return error;
1703}
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705xfs_buftarg_t *
1706xfs_alloc_buftarg(
1707 struct block_device *bdev,
1708 int external)
1709{
1710 xfs_buftarg_t *btp;
1711
1712 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1713
Nathan Scottce8e9222006-01-11 15:39:08 +11001714 btp->bt_dev = bdev->bd_dev;
1715 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 if (xfs_setsize_buftarg_early(btp, bdev))
1717 goto error;
1718 if (xfs_mapping_buftarg(btp, bdev))
1719 goto error;
David Chinnera6867a62006-01-11 15:37:58 +11001720 if (xfs_alloc_delwrite_queue(btp))
1721 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 xfs_alloc_bufhash(btp, external);
1723 return btp;
1724
1725error:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001726 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 return NULL;
1728}
1729
1730
1731/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001732 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001735xfs_buf_delwri_queue(
1736 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 int unlock)
1738{
Nathan Scottce8e9222006-01-11 15:39:08 +11001739 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1740 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001741
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001742 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1743
Nathan Scottce8e9222006-01-11 15:39:08 +11001744 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
David Chinnera6867a62006-01-11 15:37:58 +11001746 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001748 if (!list_empty(&bp->b_list)) {
1749 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1750 if (unlock)
1751 atomic_dec(&bp->b_hold);
1752 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 }
1754
Dave Chinnerc9c12972010-01-11 11:49:59 +00001755 if (list_empty(dwq)) {
1756 /* start xfsbufd as it is about to have something to do */
1757 wake_up_process(bp->b_target->bt_task);
1758 }
1759
Nathan Scottce8e9222006-01-11 15:39:08 +11001760 bp->b_flags |= _XBF_DELWRI_Q;
1761 list_add_tail(&bp->b_list, dwq);
1762 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001763 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001766 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767}
1768
1769void
Nathan Scottce8e9222006-01-11 15:39:08 +11001770xfs_buf_delwri_dequeue(
1771 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
Nathan Scottce8e9222006-01-11 15:39:08 +11001773 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 int dequeued = 0;
1775
David Chinnera6867a62006-01-11 15:37:58 +11001776 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001777 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1778 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1779 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 dequeued = 1;
1781 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001782 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001783 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
1785 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001786 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001788 trace_xfs_buf_delwri_dequeue(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789}
1790
Dave Chinnerd808f612010-02-02 10:13:42 +11001791/*
1792 * If a delwri buffer needs to be pushed before it has aged out, then promote
1793 * it to the head of the delwri queue so that it will be flushed on the next
1794 * xfsbufd run. We do this by resetting the queuetime of the buffer to be older
1795 * than the age currently needed to flush the buffer. Hence the next time the
1796 * xfsbufd sees it is guaranteed to be considered old enough to flush.
1797 */
1798void
1799xfs_buf_delwri_promote(
1800 struct xfs_buf *bp)
1801{
1802 struct xfs_buftarg *btp = bp->b_target;
1803 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10) + 1;
1804
1805 ASSERT(bp->b_flags & XBF_DELWRI);
1806 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1807
1808 /*
1809 * Check the buffer age before locking the delayed write queue as we
1810 * don't need to promote buffers that are already past the flush age.
1811 */
1812 if (bp->b_queuetime < jiffies - age)
1813 return;
1814 bp->b_queuetime = jiffies - age;
1815 spin_lock(&btp->bt_delwrite_lock);
1816 list_move(&bp->b_list, &btp->bt_delwrite_queue);
1817 spin_unlock(&btp->bt_delwrite_lock);
1818}
1819
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001821xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 struct workqueue_struct *queue)
1823{
1824 flush_workqueue(queue);
1825}
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001828xfsbufd_wakeup(
Nathan Scott15c84a42005-11-04 10:51:01 +11001829 int priority,
1830 gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001832 xfs_buftarg_t *btp;
David Chinnera6867a62006-01-11 15:37:58 +11001833
1834 spin_lock(&xfs_buftarg_lock);
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001835 list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001836 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
David Chinnera6867a62006-01-11 15:37:58 +11001837 continue;
Dave Chinnerc9c12972010-01-11 11:49:59 +00001838 if (list_empty(&btp->bt_delwrite_queue))
1839 continue;
Nathan Scottce8e9222006-01-11 15:39:08 +11001840 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
David Chinnera6867a62006-01-11 15:37:58 +11001841 wake_up_process(btp->bt_task);
1842 }
1843 spin_unlock(&xfs_buftarg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 return 0;
1845}
1846
David Chinner585e6d82007-02-10 18:32:29 +11001847/*
1848 * Move as many buffers as specified to the supplied list
1849 * idicating if we skipped any buffers to prevent deadlocks.
1850 */
1851STATIC int
1852xfs_buf_delwri_split(
1853 xfs_buftarg_t *target,
1854 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001855 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001856{
1857 xfs_buf_t *bp, *n;
1858 struct list_head *dwq = &target->bt_delwrite_queue;
1859 spinlock_t *dwlk = &target->bt_delwrite_lock;
1860 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001861 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001862
David Chinner5e6a07d2007-02-10 18:34:49 +11001863 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001864 INIT_LIST_HEAD(list);
1865 spin_lock(dwlk);
1866 list_for_each_entry_safe(bp, n, dwq, b_list) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001867 trace_xfs_buf_delwri_split(bp, _RET_IP_);
David Chinner585e6d82007-02-10 18:32:29 +11001868 ASSERT(bp->b_flags & XBF_DELWRI);
1869
1870 if (!xfs_buf_ispin(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001871 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001872 time_before(jiffies, bp->b_queuetime + age)) {
1873 xfs_buf_unlock(bp);
1874 break;
1875 }
1876
1877 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1878 _XBF_RUN_QUEUES);
1879 bp->b_flags |= XBF_WRITE;
1880 list_move_tail(&bp->b_list, list);
1881 } else
1882 skipped++;
1883 }
1884 spin_unlock(dwlk);
1885
1886 return skipped;
1887
1888}
1889
Dave Chinner089716a2010-01-26 15:13:25 +11001890/*
1891 * Compare function is more complex than it needs to be because
1892 * the return value is only 32 bits and we are doing comparisons
1893 * on 64 bit values
1894 */
1895static int
1896xfs_buf_cmp(
1897 void *priv,
1898 struct list_head *a,
1899 struct list_head *b)
1900{
1901 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1902 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1903 xfs_daddr_t diff;
1904
1905 diff = ap->b_bn - bp->b_bn;
1906 if (diff < 0)
1907 return -1;
1908 if (diff > 0)
1909 return 1;
1910 return 0;
1911}
1912
1913void
1914xfs_buf_delwri_sort(
1915 xfs_buftarg_t *target,
1916 struct list_head *list)
1917{
1918 list_sort(NULL, list, xfs_buf_cmp);
1919}
1920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001922xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001923 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
Dave Chinner089716a2010-01-26 15:13:25 +11001925 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 current->flags |= PF_MEMALLOC;
1928
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001929 set_freezable();
1930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 do {
Dave Chinnerc9c12972010-01-11 11:49:59 +00001932 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10);
1933 long tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10);
Dave Chinner089716a2010-01-26 15:13:25 +11001934 int count = 0;
1935 struct list_head tmp;
Dave Chinnerc9c12972010-01-11 11:49:59 +00001936
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001937 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001938 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001939 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001940 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001941 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001942 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Dave Chinnerc9c12972010-01-11 11:49:59 +00001944 /* sleep for a long time if there is nothing to do. */
1945 if (list_empty(&target->bt_delwrite_queue))
1946 tout = MAX_SCHEDULE_TIMEOUT;
1947 schedule_timeout_interruptible(tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Dave Chinnerc9c12972010-01-11 11:49:59 +00001949 xfs_buf_delwri_split(target, &tmp, age);
Dave Chinner089716a2010-01-26 15:13:25 +11001950 list_sort(NULL, &tmp, xfs_buf_cmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 while (!list_empty(&tmp)) {
Dave Chinner089716a2010-01-26 15:13:25 +11001952 struct xfs_buf *bp;
1953 bp = list_first_entry(&tmp, struct xfs_buf, b_list);
Nathan Scottce8e9222006-01-11 15:39:08 +11001954 list_del_init(&bp->b_list);
1955 xfs_buf_iostrategy(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001956 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 }
1958
Felix Blyakher3a011a12009-02-18 15:56:51 -06001959 if (as_list_len > 0)
1960 purge_addresses();
Nathan Scottf07c2252006-09-28 10:52:15 +10001961 if (count)
1962 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001964 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001966 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967}
1968
1969/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001970 * Go through all incore buffers, and release buffers if they belong to
1971 * the given device. This is used in filesystem error handling to
1972 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 */
1974int
1975xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001976 xfs_buftarg_t *target,
1977 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
Dave Chinner089716a2010-01-26 15:13:25 +11001979 xfs_buf_t *bp;
David Chinner585e6d82007-02-10 18:32:29 +11001980 int pincount = 0;
Dave Chinner089716a2010-01-26 15:13:25 +11001981 LIST_HEAD(tmp_list);
1982 LIST_HEAD(wait_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
Dave Chinnerc626d172009-04-06 18:42:11 +02001984 xfs_buf_runall_queues(xfsconvertd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001985 xfs_buf_runall_queues(xfsdatad_workqueue);
1986 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
David Chinner5e6a07d2007-02-10 18:34:49 +11001988 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
Dave Chinner089716a2010-01-26 15:13:25 +11001989 pincount = xfs_buf_delwri_split(target, &tmp_list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 /*
Dave Chinner089716a2010-01-26 15:13:25 +11001992 * Dropped the delayed write list lock, now walk the temporary list.
1993 * All I/O is issued async and then if we need to wait for completion
1994 * we do that after issuing all the IO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 */
Dave Chinner089716a2010-01-26 15:13:25 +11001996 list_sort(NULL, &tmp_list, xfs_buf_cmp);
1997 while (!list_empty(&tmp_list)) {
1998 bp = list_first_entry(&tmp_list, struct xfs_buf, b_list);
David Chinner585e6d82007-02-10 18:32:29 +11001999 ASSERT(target == bp->b_target);
Dave Chinner089716a2010-01-26 15:13:25 +11002000 list_del_init(&bp->b_list);
2001 if (wait) {
Nathan Scottce8e9222006-01-11 15:39:08 +11002002 bp->b_flags &= ~XBF_ASYNC;
Dave Chinner089716a2010-01-26 15:13:25 +11002003 list_add(&bp->b_list, &wait_list);
2004 }
Nathan Scottce8e9222006-01-11 15:39:08 +11002005 xfs_buf_iostrategy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
2007
Dave Chinner089716a2010-01-26 15:13:25 +11002008 if (wait) {
2009 /* Expedite and wait for IO to complete. */
Nathan Scottf07c2252006-09-28 10:52:15 +10002010 blk_run_address_space(target->bt_mapping);
Dave Chinner089716a2010-01-26 15:13:25 +11002011 while (!list_empty(&wait_list)) {
2012 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
Nathan Scottf07c2252006-09-28 10:52:15 +10002013
Dave Chinner089716a2010-01-26 15:13:25 +11002014 list_del_init(&bp->b_list);
2015 xfs_iowait(bp);
2016 xfs_buf_relse(bp);
2017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
2019
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 return pincount;
2021}
2022
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002023int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11002024xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025{
Nathan Scott87582802006-03-14 13:18:19 +11002026 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
2027 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11002028 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002029 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002030
Rafael J. Wysockib4337692007-03-22 00:11:27 -08002031 xfslogd_workqueue = create_workqueue("xfslogd");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002032 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002033 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Rafael J. Wysockib4337692007-03-22 00:11:27 -08002035 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002036 if (!xfsdatad_workqueue)
2037 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Dave Chinnerc626d172009-04-06 18:42:11 +02002039 xfsconvertd_workqueue = create_workqueue("xfsconvertd");
2040 if (!xfsconvertd_workqueue)
2041 goto out_destroy_xfsdatad_workqueue;
2042
Rusty Russell8e1f9362007-07-17 04:03:17 -07002043 register_shrinker(&xfs_buf_shake);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002044 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Dave Chinnerc626d172009-04-06 18:42:11 +02002046 out_destroy_xfsdatad_workqueue:
2047 destroy_workqueue(xfsdatad_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002048 out_destroy_xfslogd_workqueue:
2049 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002050 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11002051 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002052 out:
Nathan Scott87582802006-03-14 13:18:19 +11002053 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054}
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056void
Nathan Scottce8e9222006-01-11 15:39:08 +11002057xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058{
Rusty Russell8e1f9362007-07-17 04:03:17 -07002059 unregister_shrinker(&xfs_buf_shake);
Dave Chinnerc626d172009-04-06 18:42:11 +02002060 destroy_workqueue(xfsconvertd_workqueue);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002061 destroy_workqueue(xfsdatad_workqueue);
2062 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11002063 kmem_zone_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10002065
2066#ifdef CONFIG_KDB_MODULES
2067struct list_head *
2068xfs_get_buftarg_list(void)
2069{
2070 return &xfs_buftarg_list;
2071}
2072#endif