blob: 162359b664cadee15ba5f35e5628979662edac0d [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Christoph Hellwigb7963132009-03-03 14:48:37 -050037#include "xfs_sb.h"
38#include "xfs_inum.h"
39#include "xfs_ag.h"
40#include "xfs_dmapi.h"
41#include "xfs_mount.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000042#include "xfs_trace.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050043
David Chinner7989cb82007-02-10 18:34:56 +110044static kmem_zone_t *xfs_buf_zone;
David Chinnera6867a62006-01-11 15:37:58 +110045STATIC int xfsbufd(void *);
Al Viro27496a82005-10-21 03:20:48 -040046STATIC int xfsbufd_wakeup(int, gfp_t);
Nathan Scottce8e9222006-01-11 15:39:08 +110047STATIC void xfs_buf_delwri_queue(xfs_buf_t *, int);
Rusty Russell8e1f9362007-07-17 04:03:17 -070048static struct shrinker xfs_buf_shake = {
49 .shrink = xfsbufd_wakeup,
50 .seeks = DEFAULT_SEEKS,
51};
Christoph Hellwig23ea4032005-06-21 15:14:01 +100052
David Chinner7989cb82007-02-10 18:34:56 +110053static struct workqueue_struct *xfslogd_workqueue;
Christoph Hellwig0829c362005-09-02 16:58:49 +100054struct workqueue_struct *xfsdatad_workqueue;
Dave Chinnerc626d172009-04-06 18:42:11 +020055struct workqueue_struct *xfsconvertd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Nathan Scottce8e9222006-01-11 15:39:08 +110057#ifdef XFS_BUF_LOCK_TRACKING
58# define XB_SET_OWNER(bp) ((bp)->b_last_holder = current->pid)
59# define XB_CLEAR_OWNER(bp) ((bp)->b_last_holder = -1)
60# define XB_GET_OWNER(bp) ((bp)->b_last_holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#else
Nathan Scottce8e9222006-01-11 15:39:08 +110062# define XB_SET_OWNER(bp) do { } while (0)
63# define XB_CLEAR_OWNER(bp) do { } while (0)
64# define XB_GET_OWNER(bp) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#endif
66
Nathan Scottce8e9222006-01-11 15:39:08 +110067#define xb_to_gfp(flags) \
68 ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : \
69 ((flags) & XBF_DONT_BLOCK) ? GFP_NOFS : GFP_KERNEL) | __GFP_NOWARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Nathan Scottce8e9222006-01-11 15:39:08 +110071#define xb_to_km(flags) \
72 (((flags) & XBF_DONT_BLOCK) ? KM_NOFS : KM_SLEEP)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Nathan Scottce8e9222006-01-11 15:39:08 +110074#define xfs_buf_allocate(flags) \
75 kmem_zone_alloc(xfs_buf_zone, xb_to_km(flags))
76#define xfs_buf_deallocate(bp) \
77 kmem_zone_free(xfs_buf_zone, (bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/*
Nathan Scottce8e9222006-01-11 15:39:08 +110080 * Page Region interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 *
Nathan Scottce8e9222006-01-11 15:39:08 +110082 * For pages in filesystems where the blocksize is smaller than the
83 * pagesize, we use the page->private field (long) to hold a bitmap
84 * of uptodate regions within the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 *
Nathan Scottce8e9222006-01-11 15:39:08 +110086 * Each such region is "bytes per page / bits per long" bytes long.
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 *
Nathan Scottce8e9222006-01-11 15:39:08 +110088 * NBPPR == number-of-bytes-per-page-region
89 * BTOPR == bytes-to-page-region (rounded up)
90 * BTOPRT == bytes-to-page-region-truncated (rounded down)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 */
92#if (BITS_PER_LONG == 32)
93#define PRSHIFT (PAGE_CACHE_SHIFT - 5) /* (32 == 1<<5) */
94#elif (BITS_PER_LONG == 64)
95#define PRSHIFT (PAGE_CACHE_SHIFT - 6) /* (64 == 1<<6) */
96#else
97#error BITS_PER_LONG must be 32 or 64
98#endif
99#define NBPPR (PAGE_CACHE_SIZE/BITS_PER_LONG)
100#define BTOPR(b) (((unsigned int)(b) + (NBPPR - 1)) >> PRSHIFT)
101#define BTOPRT(b) (((unsigned int)(b) >> PRSHIFT))
102
103STATIC unsigned long
104page_region_mask(
105 size_t offset,
106 size_t length)
107{
108 unsigned long mask;
109 int first, final;
110
111 first = BTOPR(offset);
112 final = BTOPRT(offset + length - 1);
113 first = min(first, final);
114
115 mask = ~0UL;
116 mask <<= BITS_PER_LONG - (final - first);
117 mask >>= BITS_PER_LONG - (final);
118
119 ASSERT(offset + length <= PAGE_CACHE_SIZE);
120 ASSERT((final - first) < BITS_PER_LONG && (final - first) >= 0);
121
122 return mask;
123}
124
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000125STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126set_page_region(
127 struct page *page,
128 size_t offset,
129 size_t length)
130{
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700131 set_page_private(page,
132 page_private(page) | page_region_mask(offset, length));
133 if (page_private(page) == ~0UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 SetPageUptodate(page);
135}
136
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000137STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138test_page_region(
139 struct page *page,
140 size_t offset,
141 size_t length)
142{
143 unsigned long mask = page_region_mask(offset, length);
144
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700145 return (mask && (page_private(page) & mask) == mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
148/*
Felix Blyakher3a011a12009-02-18 15:56:51 -0600149 * Mapping of multi-page buffers into contiguous virtual space
150 */
151
152typedef struct a_list {
153 void *vm_addr;
154 struct a_list *next;
155} a_list_t;
156
157static a_list_t *as_free_head;
158static int as_list_len;
159static DEFINE_SPINLOCK(as_lock);
160
161/*
162 * Try to batch vunmaps because they are costly.
163 */
164STATIC void
165free_address(
166 void *addr)
167{
168 a_list_t *aentry;
169
170#ifdef CONFIG_XEN
171 /*
172 * Xen needs to be able to make sure it can get an exclusive
173 * RO mapping of pages it wants to turn into a pagetable. If
174 * a newly allocated page is also still being vmap()ed by xfs,
175 * it will cause pagetable construction to fail. This is a
176 * quick workaround to always eagerly unmap pages so that Xen
177 * is happy.
178 */
179 vunmap(addr);
180 return;
181#endif
182
183 aentry = kmalloc(sizeof(a_list_t), GFP_NOWAIT);
184 if (likely(aentry)) {
185 spin_lock(&as_lock);
186 aentry->next = as_free_head;
187 aentry->vm_addr = addr;
188 as_free_head = aentry;
189 as_list_len++;
190 spin_unlock(&as_lock);
191 } else {
192 vunmap(addr);
193 }
194}
195
196STATIC void
197purge_addresses(void)
198{
199 a_list_t *aentry, *old;
200
201 if (as_free_head == NULL)
202 return;
203
204 spin_lock(&as_lock);
205 aentry = as_free_head;
206 as_free_head = NULL;
207 as_list_len = 0;
208 spin_unlock(&as_lock);
209
210 while ((old = aentry) != NULL) {
211 vunmap(aentry->vm_addr);
212 aentry = aentry->next;
213 kfree(old);
214 }
215}
216
217/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100218 * Internal xfs_buf_t object manipulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 */
220
221STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100222_xfs_buf_initialize(
223 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100225 xfs_off_t range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 size_t range_length,
Nathan Scottce8e9222006-01-11 15:39:08 +1100227 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100230 * We don't want certain flags to appear in b_flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100232 flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Nathan Scottce8e9222006-01-11 15:39:08 +1100234 memset(bp, 0, sizeof(xfs_buf_t));
235 atomic_set(&bp->b_hold, 1);
David Chinnerb4dd3302008-08-13 16:36:11 +1000236 init_completion(&bp->b_iowait);
Nathan Scottce8e9222006-01-11 15:39:08 +1100237 INIT_LIST_HEAD(&bp->b_list);
238 INIT_LIST_HEAD(&bp->b_hash_list);
239 init_MUTEX_LOCKED(&bp->b_sema); /* held, no waiters */
240 XB_SET_OWNER(bp);
241 bp->b_target = target;
242 bp->b_file_offset = range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 /*
244 * Set buffer_length and count_desired to the same value initially.
245 * I/O routines should use count_desired, which will be the same in
246 * most cases but may be reset (e.g. XFS recovery).
247 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100248 bp->b_buffer_length = bp->b_count_desired = range_length;
249 bp->b_flags = flags;
250 bp->b_bn = XFS_BUF_DADDR_NULL;
251 atomic_set(&bp->b_pin_count, 0);
252 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Nathan Scottce8e9222006-01-11 15:39:08 +1100254 XFS_STATS_INC(xb_create);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000255
256 trace_xfs_buf_init(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
259/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100260 * Allocate a page array capable of holding a specified number
261 * of pages, and point the page buf at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 */
263STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100264_xfs_buf_get_pages(
265 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 int page_count,
Nathan Scottce8e9222006-01-11 15:39:08 +1100267 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 /* Make sure that we have a page list */
Nathan Scottce8e9222006-01-11 15:39:08 +1100270 if (bp->b_pages == NULL) {
271 bp->b_offset = xfs_buf_poff(bp->b_file_offset);
272 bp->b_page_count = page_count;
273 if (page_count <= XB_PAGES) {
274 bp->b_pages = bp->b_page_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100276 bp->b_pages = kmem_alloc(sizeof(struct page *) *
277 page_count, xb_to_km(flags));
278 if (bp->b_pages == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return -ENOMEM;
280 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100281 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283 return 0;
284}
285
286/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100287 * Frees b_pages if it was allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
289STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100290_xfs_buf_free_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 xfs_buf_t *bp)
292{
Nathan Scottce8e9222006-01-11 15:39:08 +1100293 if (bp->b_pages != bp->b_page_array) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000294 kmem_free(bp->b_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296}
297
298/*
299 * Releases the specified buffer.
300 *
301 * The modification state of any associated pages is left unchanged.
Nathan Scottce8e9222006-01-11 15:39:08 +1100302 * The buffer most not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 * hashed and refcounted buffers
304 */
305void
Nathan Scottce8e9222006-01-11 15:39:08 +1100306xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 xfs_buf_t *bp)
308{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000309 trace_xfs_buf_free(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Nathan Scottce8e9222006-01-11 15:39:08 +1100311 ASSERT(list_empty(&bp->b_hash_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000313 if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 uint i;
315
Nathan Scottce8e9222006-01-11 15:39:08 +1100316 if ((bp->b_flags & XBF_MAPPED) && (bp->b_page_count > 1))
Felix Blyakher3a011a12009-02-18 15:56:51 -0600317 free_address(bp->b_addr - bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Nathan Scott948ecdb2006-09-28 11:03:13 +1000319 for (i = 0; i < bp->b_page_count; i++) {
320 struct page *page = bp->b_pages[i];
321
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000322 if (bp->b_flags & _XBF_PAGE_CACHE)
323 ASSERT(!PagePrivate(page));
Nathan Scott948ecdb2006-09-28 11:03:13 +1000324 page_cache_release(page);
325 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100326 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328
Nathan Scottce8e9222006-01-11 15:39:08 +1100329 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332/*
333 * Finds all pages for buffer in question and builds it's page list.
334 */
335STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100336_xfs_buf_lookup_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 xfs_buf_t *bp,
338 uint flags)
339{
Nathan Scottce8e9222006-01-11 15:39:08 +1100340 struct address_space *mapping = bp->b_target->bt_mapping;
341 size_t blocksize = bp->b_target->bt_bsize;
342 size_t size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100344 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 unsigned short page_count, i;
346 pgoff_t first;
Nathan Scott204ab252006-01-11 20:50:22 +1100347 xfs_off_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 int error;
349
Nathan Scottce8e9222006-01-11 15:39:08 +1100350 end = bp->b_file_offset + bp->b_buffer_length;
351 page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Nathan Scottce8e9222006-01-11 15:39:08 +1100353 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (unlikely(error))
355 return error;
Nathan Scottce8e9222006-01-11 15:39:08 +1100356 bp->b_flags |= _XBF_PAGE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Nathan Scottce8e9222006-01-11 15:39:08 +1100358 offset = bp->b_offset;
359 first = bp->b_file_offset >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Nathan Scottce8e9222006-01-11 15:39:08 +1100361 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 struct page *page;
363 uint retries = 0;
364
365 retry:
366 page = find_or_create_page(mapping, first + i, gfp_mask);
367 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100368 if (flags & XBF_READ_AHEAD) {
369 bp->b_page_count = i;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000370 for (i = 0; i < bp->b_page_count; i++)
371 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return -ENOMEM;
373 }
374
375 /*
376 * This could deadlock.
377 *
378 * But until all the XFS lowlevel code is revamped to
379 * handle buffer allocation failures we can't do much.
380 */
381 if (!(++retries % 100))
382 printk(KERN_ERR
383 "XFS: possible memory allocation "
384 "deadlock in %s (mode:0x%x)\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000385 __func__, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Nathan Scottce8e9222006-01-11 15:39:08 +1100387 XFS_STATS_INC(xb_page_retries);
Christoph Hellwig23ea4032005-06-21 15:14:01 +1000388 xfsbufd_wakeup(0, gfp_mask);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200389 congestion_wait(BLK_RW_ASYNC, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 goto retry;
391 }
392
Nathan Scottce8e9222006-01-11 15:39:08 +1100393 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
396 size -= nbytes;
397
Nathan Scott948ecdb2006-09-28 11:03:13 +1000398 ASSERT(!PagePrivate(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (!PageUptodate(page)) {
400 page_count--;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000401 if (blocksize >= PAGE_CACHE_SIZE) {
402 if (flags & XBF_READ)
403 bp->b_flags |= _XBF_PAGE_LOCKED;
404 } else if (!PagePrivate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (test_page_region(page, offset, nbytes))
406 page_count++;
407 }
408 }
409
Nathan Scottce8e9222006-01-11 15:39:08 +1100410 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 offset = 0;
412 }
413
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000414 if (!(bp->b_flags & _XBF_PAGE_LOCKED)) {
415 for (i = 0; i < bp->b_page_count; i++)
416 unlock_page(bp->b_pages[i]);
417 }
418
Nathan Scottce8e9222006-01-11 15:39:08 +1100419 if (page_count == bp->b_page_count)
420 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return error;
423}
424
425/*
426 * Map buffer into kernel address-space if nessecary.
427 */
428STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100429_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 xfs_buf_t *bp,
431 uint flags)
432{
433 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100434 if (bp->b_page_count == 1) {
435 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
436 bp->b_flags |= XBF_MAPPED;
437 } else if (flags & XBF_MAPPED) {
Felix Blyakher3a011a12009-02-18 15:56:51 -0600438 if (as_list_len > 64)
439 purge_addresses();
Felix Blyakhercf7dab82009-02-18 15:41:28 -0600440 bp->b_addr = vmap(bp->b_pages, bp->b_page_count,
441 VM_MAP, PAGE_KERNEL);
Nathan Scottce8e9222006-01-11 15:39:08 +1100442 if (unlikely(bp->b_addr == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100444 bp->b_addr += bp->b_offset;
445 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
447
448 return 0;
449}
450
451/*
452 * Finding and Reading Buffers
453 */
454
455/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100456 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 * a given range of an inode. The buffer is returned
458 * locked. If other overlapping buffers exist, they are
459 * released before the new buffer is created and locked,
460 * which may imply that this call will block until those buffers
461 * are unlocked. No I/O is implied by this call.
462 */
463xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100464_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab252006-01-11 20:50:22 +1100466 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100468 xfs_buf_flags_t flags,
469 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Nathan Scott204ab252006-01-11 20:50:22 +1100471 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 size_t range_length;
473 xfs_bufhash_t *hash;
Nathan Scottce8e9222006-01-11 15:39:08 +1100474 xfs_buf_t *bp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 range_base = (ioff << BBSHIFT);
477 range_length = (isize << BBSHIFT);
478
479 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100480 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab252006-01-11 20:50:22 +1100481 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)];
484
485 spin_lock(&hash->bh_lock);
486
Nathan Scottce8e9222006-01-11 15:39:08 +1100487 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
488 ASSERT(btp == bp->b_target);
489 if (bp->b_file_offset == range_base &&
490 bp->b_buffer_length == range_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100492 * If we look at something, bring it to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 * front of the list for next time.
494 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100495 atomic_inc(&bp->b_hold);
496 list_move(&bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 goto found;
498 }
499 }
500
501 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100502 if (new_bp) {
503 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 range_length, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100505 new_bp->b_hash = hash;
506 list_add(&new_bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100508 XFS_STATS_INC(xb_miss_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510
511 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100512 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514found:
515 spin_unlock(&hash->bh_lock);
516
517 /* Attempt to get the semaphore without sleeping,
518 * if this does not work then we need to drop the
519 * spinlock and do a hard attempt on the semaphore.
520 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100521 if (down_trylock(&bp->b_sema)) {
522 if (!(flags & XBF_TRYLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 /* wait for buffer ownership */
Nathan Scottce8e9222006-01-11 15:39:08 +1100524 xfs_buf_lock(bp);
525 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 } else {
527 /* We asked for a trylock and failed, no need
528 * to look at file offset and length here, we
Nathan Scottce8e9222006-01-11 15:39:08 +1100529 * know that this buffer at least overlaps our
530 * buffer and is locked, therefore our buffer
531 * either does not exist, or is this buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100533 xfs_buf_rele(bp);
534 XFS_STATS_INC(xb_busy_locked);
535 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
537 } else {
538 /* trylock worked */
Nathan Scottce8e9222006-01-11 15:39:08 +1100539 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541
Nathan Scottce8e9222006-01-11 15:39:08 +1100542 if (bp->b_flags & XBF_STALE) {
543 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
544 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000545 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000546
547 trace_xfs_buf_find(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100548 XFS_STATS_INC(xb_get_locked);
549 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
552/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100553 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 * Storage in memory for all portions of the buffer will be allocated,
555 * although backing storage may not be.
556 */
557xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000558xfs_buf_get(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100560 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100562 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Nathan Scottce8e9222006-01-11 15:39:08 +1100564 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 int error = 0, i;
566
Nathan Scottce8e9222006-01-11 15:39:08 +1100567 new_bp = xfs_buf_allocate(flags);
568 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 return NULL;
570
Nathan Scottce8e9222006-01-11 15:39:08 +1100571 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
572 if (bp == new_bp) {
573 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (error)
575 goto no_buffer;
576 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100577 xfs_buf_deallocate(new_bp);
578 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return NULL;
580 }
581
Nathan Scottce8e9222006-01-11 15:39:08 +1100582 for (i = 0; i < bp->b_page_count; i++)
583 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Nathan Scottce8e9222006-01-11 15:39:08 +1100585 if (!(bp->b_flags & XBF_MAPPED)) {
586 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (unlikely(error)) {
588 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000589 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 goto no_buffer;
591 }
592 }
593
Nathan Scottce8e9222006-01-11 15:39:08 +1100594 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 /*
597 * Always fill in the block number now, the mapped cases can do
598 * their own overlay of this later.
599 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100600 bp->b_bn = ioff;
601 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000603 trace_xfs_buf_get(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100604 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100607 if (flags & (XBF_LOCK | XBF_TRYLOCK))
608 xfs_buf_unlock(bp);
609 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return NULL;
611}
612
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100613STATIC int
614_xfs_buf_read(
615 xfs_buf_t *bp,
616 xfs_buf_flags_t flags)
617{
618 int status;
619
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100620 ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE)));
621 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
622
623 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
624 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
625 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | \
626 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
627
628 status = xfs_buf_iorequest(bp);
629 if (!status && !(flags & XBF_ASYNC))
630 status = xfs_buf_iowait(bp);
631 return status;
632}
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000635xfs_buf_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100637 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100639 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Nathan Scottce8e9222006-01-11 15:39:08 +1100641 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Nathan Scottce8e9222006-01-11 15:39:08 +1100643 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000645 bp = xfs_buf_get(target, ioff, isize, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100646 if (bp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000647 trace_xfs_buf_read(bp, flags, _RET_IP_);
648
Nathan Scottce8e9222006-01-11 15:39:08 +1100649 if (!XFS_BUF_ISDONE(bp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100650 XFS_STATS_INC(xb_get_read);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100651 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100652 } else if (flags & XBF_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /*
654 * Read ahead call which is already satisfied,
655 * drop the buffer
656 */
657 goto no_buffer;
658 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100660 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
662 }
663
Nathan Scottce8e9222006-01-11 15:39:08 +1100664 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100667 if (flags & (XBF_LOCK | XBF_TRYLOCK))
668 xfs_buf_unlock(bp);
669 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return NULL;
671}
672
673/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100674 * If we are not low on memory then do the readahead in a deadlock
675 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 */
677void
Nathan Scottce8e9222006-01-11 15:39:08 +1100678xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100680 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100682 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 struct backing_dev_info *bdi;
685
Nathan Scottce8e9222006-01-11 15:39:08 +1100686 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (bdi_read_congested(bdi))
688 return;
689
Nathan Scottce8e9222006-01-11 15:39:08 +1100690 flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000691 xfs_buf_read(target, ioff, isize, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
694xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100695xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 size_t len,
697 xfs_buftarg_t *target)
698{
Nathan Scottce8e9222006-01-11 15:39:08 +1100699 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Nathan Scottce8e9222006-01-11 15:39:08 +1100701 bp = xfs_buf_allocate(0);
702 if (bp)
703 _xfs_buf_initialize(bp, target, 0, len, 0);
704 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
707static inline struct page *
708mem_to_page(
709 void *addr)
710{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800711 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return virt_to_page(addr);
713 } else {
714 return vmalloc_to_page(addr);
715 }
716}
717
718int
Nathan Scottce8e9222006-01-11 15:39:08 +1100719xfs_buf_associate_memory(
720 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 void *mem,
722 size_t len)
723{
724 int rval;
725 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100726 unsigned long pageaddr;
727 unsigned long offset;
728 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 int page_count;
730
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100731 pageaddr = (unsigned long)mem & PAGE_CACHE_MASK;
732 offset = (unsigned long)mem - pageaddr;
733 buflen = PAGE_CACHE_ALIGN(len + offset);
734 page_count = buflen >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100737 if (bp->b_pages)
738 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Nathan Scottce8e9222006-01-11 15:39:08 +1100740 bp->b_pages = NULL;
741 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Christoph Hellwig36fae172009-07-18 18:14:58 -0400743 rval = _xfs_buf_get_pages(bp, page_count, XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (rval)
745 return rval;
746
Nathan Scottce8e9222006-01-11 15:39:08 +1100747 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100749 for (i = 0; i < bp->b_page_count; i++) {
750 bp->b_pages[i] = mem_to_page((void *)pageaddr);
751 pageaddr += PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100754 bp->b_count_desired = len;
755 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100756 bp->b_flags |= XBF_MAPPED;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000757 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 return 0;
760}
761
762xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100763xfs_buf_get_noaddr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 size_t len,
765 xfs_buftarg_t *target)
766{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000767 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
768 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Nathan Scottce8e9222006-01-11 15:39:08 +1100771 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (unlikely(bp == NULL))
773 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100774 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000776 error = _xfs_buf_get_pages(bp, page_count, 0);
777 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 goto fail_free_buf;
779
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000780 for (i = 0; i < page_count; i++) {
781 bp->b_pages[i] = alloc_page(GFP_KERNEL);
782 if (!bp->b_pages[i])
783 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000785 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000787 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
788 if (unlikely(error)) {
789 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000790 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Nathan Scottce8e9222006-01-11 15:39:08 +1100794 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000796 trace_xfs_buf_get_noaddr(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000800 while (--i >= 0)
801 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000802 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000804 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 fail:
806 return NULL;
807}
808
809/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 * Increment reference count on buffer, to hold the buffer concurrently
811 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 * Must hold the buffer already to call this function.
813 */
814void
Nathan Scottce8e9222006-01-11 15:39:08 +1100815xfs_buf_hold(
816 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000818 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100819 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
821
822/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100823 * Releases a hold on the specified buffer. If the
824 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 */
826void
Nathan Scottce8e9222006-01-11 15:39:08 +1100827xfs_buf_rele(
828 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Nathan Scottce8e9222006-01-11 15:39:08 +1100830 xfs_bufhash_t *hash = bp->b_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000832 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Nathan Scottfad3aa12006-02-01 12:14:52 +1100834 if (unlikely(!hash)) {
835 ASSERT(!bp->b_relse);
836 if (atomic_dec_and_test(&bp->b_hold))
837 xfs_buf_free(bp);
838 return;
839 }
840
Lachlan McIlroy37906892008-08-13 15:42:10 +1000841 ASSERT(atomic_read(&bp->b_hold) > 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100842 if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) {
843 if (bp->b_relse) {
844 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100846 (*(bp->b_relse)) (bp);
847 } else if (bp->b_flags & XBF_FS_MANAGED) {
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100848 spin_unlock(&hash->bh_lock);
849 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100850 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
851 list_del_init(&bp->b_hash_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100853 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855 }
856}
857
858
859/*
860 * Mutual exclusion on buffers. Locking model:
861 *
862 * Buffers associated with inodes for which buffer locking
863 * is not enabled are not protected by semaphores, and are
864 * assumed to be exclusively owned by the caller. There is a
865 * spinlock in the buffer, used by the caller when concurrent
866 * access is possible.
867 */
868
869/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100870 * Locks a buffer object, if it is not already locked.
871 * Note that this in no way locks the underlying pages, so it is only
872 * useful for synchronizing concurrent use of buffer objects, not for
873 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 */
875int
Nathan Scottce8e9222006-01-11 15:39:08 +1100876xfs_buf_cond_lock(
877 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
879 int locked;
880
Nathan Scottce8e9222006-01-11 15:39:08 +1100881 locked = down_trylock(&bp->b_sema) == 0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000882 if (locked)
Nathan Scottce8e9222006-01-11 15:39:08 +1100883 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000884
885 trace_xfs_buf_cond_lock(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100886 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889int
Nathan Scottce8e9222006-01-11 15:39:08 +1100890xfs_buf_lock_value(
891 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Stephen Rothwelladaa6932008-04-22 15:26:13 +1000893 return bp->b_sema.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100897 * Locks a buffer object.
898 * Note that this in no way locks the underlying pages, so it is only
899 * useful for synchronizing concurrent use of buffer objects, not for
900 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100902void
903xfs_buf_lock(
904 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000906 trace_xfs_buf_lock(bp, _RET_IP_);
907
Nathan Scottce8e9222006-01-11 15:39:08 +1100908 if (atomic_read(&bp->b_io_remaining))
909 blk_run_address_space(bp->b_target->bt_mapping);
910 down(&bp->b_sema);
911 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000912
913 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
916/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100917 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000918 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100919 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000920 * take a reference for the delwri queue because the unlocker is going to
921 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 */
923void
Nathan Scottce8e9222006-01-11 15:39:08 +1100924xfs_buf_unlock(
925 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Nathan Scottce8e9222006-01-11 15:39:08 +1100927 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
928 atomic_inc(&bp->b_hold);
929 bp->b_flags |= XBF_ASYNC;
930 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000931 }
932
Nathan Scottce8e9222006-01-11 15:39:08 +1100933 XB_CLEAR_OWNER(bp);
934 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000935
936 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
939
940/*
941 * Pinning Buffer Storage in Memory
Nathan Scottce8e9222006-01-11 15:39:08 +1100942 * Ensure that no attempt to force a buffer to disk will succeed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 */
944void
Nathan Scottce8e9222006-01-11 15:39:08 +1100945xfs_buf_pin(
946 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000948 trace_xfs_buf_pin(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100949 atomic_inc(&bp->b_pin_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952void
Nathan Scottce8e9222006-01-11 15:39:08 +1100953xfs_buf_unpin(
954 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000956 trace_xfs_buf_unpin(bp, _RET_IP_);
957
Nathan Scottce8e9222006-01-11 15:39:08 +1100958 if (atomic_dec_and_test(&bp->b_pin_count))
959 wake_up_all(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960}
961
962int
Nathan Scottce8e9222006-01-11 15:39:08 +1100963xfs_buf_ispin(
964 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Nathan Scottce8e9222006-01-11 15:39:08 +1100966 return atomic_read(&bp->b_pin_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
Nathan Scottce8e9222006-01-11 15:39:08 +1100969STATIC void
970xfs_buf_wait_unpin(
971 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 DECLARE_WAITQUEUE (wait, current);
974
Nathan Scottce8e9222006-01-11 15:39:08 +1100975 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return;
977
Nathan Scottce8e9222006-01-11 15:39:08 +1100978 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 for (;;) {
980 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100981 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 break;
Nathan Scottce8e9222006-01-11 15:39:08 +1100983 if (atomic_read(&bp->b_io_remaining))
984 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 schedule();
986 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100987 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 set_current_state(TASK_RUNNING);
989}
990
991/*
992 * Buffer Utility Routines
993 */
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100996xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +0000997 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
David Howellsc4028952006-11-22 14:57:56 +0000999 xfs_buf_t *bp =
1000 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
David Chinner0bfefc42007-05-14 18:24:23 +10001002 /*
1003 * We can get an EOPNOTSUPP to ordered writes. Here we clear the
1004 * ordered flag and reissue them. Because we can't tell the higher
1005 * layers directly that they should not issue ordered I/O anymore, they
Christoph Hellwig73f6aa42008-10-10 17:28:29 +11001006 * need to check if the _XFS_BARRIER_FAILED flag was set during I/O completion.
David Chinner0bfefc42007-05-14 18:24:23 +10001007 */
1008 if ((bp->b_error == EOPNOTSUPP) &&
1009 (bp->b_flags & (XBF_ORDERED|XBF_ASYNC)) == (XBF_ORDERED|XBF_ASYNC)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001010 trace_xfs_buf_ordered_retry(bp, _RET_IP_);
David Chinner0bfefc42007-05-14 18:24:23 +10001011 bp->b_flags &= ~XBF_ORDERED;
Christoph Hellwig73f6aa42008-10-10 17:28:29 +11001012 bp->b_flags |= _XFS_BARRIER_FAILED;
David Chinner0bfefc42007-05-14 18:24:23 +10001013 xfs_buf_iorequest(bp);
1014 } else if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +11001015 (*(bp->b_iodone))(bp);
1016 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 xfs_buf_relse(bp);
1018}
1019
1020void
Nathan Scottce8e9222006-01-11 15:39:08 +11001021xfs_buf_ioend(
1022 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 int schedule)
1024{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001025 trace_xfs_buf_iodone(bp, _RET_IP_);
1026
Lachlan McIlroy77be55a2007-11-23 16:31:00 +11001027 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +11001028 if (bp->b_error == 0)
1029 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Nathan Scottce8e9222006-01-11 15:39:08 +11001031 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001033 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001034 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 } else {
David Howellsc4028952006-11-22 14:57:56 +00001036 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
1038 } else {
David Chinnerb4dd3302008-08-13 16:36:11 +10001039 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041}
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043void
Nathan Scottce8e9222006-01-11 15:39:08 +11001044xfs_buf_ioerror(
1045 xfs_buf_t *bp,
1046 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
1048 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001049 bp->b_error = (unsigned short)error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001050 trace_xfs_buf_ioerror(bp, error, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053int
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001054xfs_bawrite(
1055 void *mp,
1056 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001058 trace_xfs_buf_bawrite(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001060 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001062 xfs_buf_delwri_dequeue(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001064 bp->b_flags &= ~(XBF_READ | XBF_DELWRI | XBF_READ_AHEAD);
1065 bp->b_flags |= (XBF_WRITE | XBF_ASYNC | _XBF_RUN_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Christoph Hellwig15ac08a2008-12-09 04:47:30 -05001067 bp->b_mount = mp;
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001068 bp->b_strat = xfs_bdstrat_cb;
1069 return xfs_bdstrat_cb(bp);
1070}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001072void
1073xfs_bdwrite(
1074 void *mp,
1075 struct xfs_buf *bp)
1076{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001077 trace_xfs_buf_bdwrite(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001079 bp->b_strat = xfs_bdstrat_cb;
Christoph Hellwig15ac08a2008-12-09 04:47:30 -05001080 bp->b_mount = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001082 bp->b_flags &= ~XBF_READ;
1083 bp->b_flags |= (XBF_DELWRI | XBF_ASYNC);
1084
1085 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086}
1087
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001088STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001089_xfs_buf_ioend(
1090 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 int schedule)
1092{
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001093 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1094 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Nathan Scottce8e9222006-01-11 15:39:08 +11001095 xfs_buf_ioend(bp, schedule);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
Al Viro782e3b32007-10-12 07:17:47 +01001099STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001100xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 int error)
1103{
Nathan Scottce8e9222006-01-11 15:39:08 +11001104 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1105 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001106 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Lachlan McIlroycfbe5262008-12-12 15:27:25 +11001108 xfs_buf_ioerror(bp, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Nathan Scotteedb5532005-09-02 16:39:56 +10001110 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 struct page *page = bvec->bv_page;
1112
Nathan Scott948ecdb2006-09-28 11:03:13 +10001113 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001114 if (unlikely(bp->b_error)) {
1115 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001116 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001117 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 SetPageUptodate(page);
1119 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001120 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1122 }
1123
Nathan Scotteedb5532005-09-02 16:39:56 +10001124 if (--bvec >= bio->bi_io_vec)
1125 prefetchw(&bvec->bv_page->flags);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001126
1127 if (bp->b_flags & _XBF_PAGE_LOCKED)
1128 unlock_page(page);
Nathan Scotteedb5532005-09-02 16:39:56 +10001129 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Nathan Scottce8e9222006-01-11 15:39:08 +11001131 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
1134
1135STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001136_xfs_buf_ioapply(
1137 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
Christoph Hellwiga9759f22007-12-07 14:07:08 +11001139 int rw, map_i, total_nr_pages, nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001141 int offset = bp->b_offset;
1142 int size = bp->b_count_desired;
1143 sector_t sector = bp->b_bn;
1144 unsigned int blocksize = bp->b_target->bt_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Nathan Scottce8e9222006-01-11 15:39:08 +11001146 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 map_i = 0;
1148
Nathan Scottce8e9222006-01-11 15:39:08 +11001149 if (bp->b_flags & XBF_ORDERED) {
1150 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001151 rw = WRITE_BARRIER;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001152 } else if (bp->b_flags & XBF_LOG_BUFFER) {
Nathan Scott51bdd702006-09-28 11:01:57 +10001153 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1154 bp->b_flags &= ~_XBF_RUN_QUEUES;
1155 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001156 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1157 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1158 bp->b_flags &= ~_XBF_RUN_QUEUES;
1159 rw = (bp->b_flags & XBF_WRITE) ? WRITE_META : READ_META;
Nathan Scott51bdd702006-09-28 11:01:57 +10001160 } else {
1161 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1162 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001163 }
1164
Nathan Scottce8e9222006-01-11 15:39:08 +11001165 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 * we populate up the whole page, and hence the other metadata
1167 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001168 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001170 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001171 ((bp->b_flags & (XBF_READ|_XBF_PAGE_LOCKED)) ==
1172 (XBF_READ|_XBF_PAGE_LOCKED)) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001173 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 bio = bio_alloc(GFP_NOIO, 1);
1175
Nathan Scottce8e9222006-01-11 15:39:08 +11001176 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001178 bio->bi_end_io = xfs_buf_bio_end_io;
1179 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Nathan Scottce8e9222006-01-11 15:39:08 +11001181 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 size = 0;
1183
Nathan Scottce8e9222006-01-11 15:39:08 +11001184 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 goto submit_io;
1187 }
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001190 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1192 if (nr_pages > total_nr_pages)
1193 nr_pages = total_nr_pages;
1194
1195 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001196 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001198 bio->bi_end_io = xfs_buf_bio_end_io;
1199 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001202 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 if (nbytes > size)
1205 nbytes = size;
1206
Nathan Scottce8e9222006-01-11 15:39:08 +11001207 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1208 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 break;
1210
1211 offset = 0;
1212 sector += nbytes >> BBSHIFT;
1213 size -= nbytes;
1214 total_nr_pages--;
1215 }
1216
1217submit_io:
1218 if (likely(bio->bi_size)) {
1219 submit_bio(rw, bio);
1220 if (size)
1221 goto next_chunk;
1222 } else {
1223 bio_put(bio);
Nathan Scottce8e9222006-01-11 15:39:08 +11001224 xfs_buf_ioerror(bp, EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
1226}
1227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228int
Nathan Scottce8e9222006-01-11 15:39:08 +11001229xfs_buf_iorequest(
1230 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001232 trace_xfs_buf_iorequest(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Nathan Scottce8e9222006-01-11 15:39:08 +11001234 if (bp->b_flags & XBF_DELWRI) {
1235 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 return 0;
1237 }
1238
Nathan Scottce8e9222006-01-11 15:39:08 +11001239 if (bp->b_flags & XBF_WRITE) {
1240 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
1242
Nathan Scottce8e9222006-01-11 15:39:08 +11001243 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 /* Set the count to 1 initially, this will stop an I/O
1246 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001247 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001249 atomic_set(&bp->b_io_remaining, 1);
1250 _xfs_buf_ioapply(bp);
1251 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Nathan Scottce8e9222006-01-11 15:39:08 +11001253 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 return 0;
1255}
1256
1257/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001258 * Waits for I/O to complete on the buffer supplied.
1259 * It returns immediately if no I/O is pending.
1260 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 */
1262int
Nathan Scottce8e9222006-01-11 15:39:08 +11001263xfs_buf_iowait(
1264 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001266 trace_xfs_buf_iowait(bp, _RET_IP_);
1267
Nathan Scottce8e9222006-01-11 15:39:08 +11001268 if (atomic_read(&bp->b_io_remaining))
1269 blk_run_address_space(bp->b_target->bt_mapping);
David Chinnerb4dd3302008-08-13 16:36:11 +10001270 wait_for_completion(&bp->b_iowait);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001271
1272 trace_xfs_buf_iowait_done(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +11001273 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
Nathan Scottce8e9222006-01-11 15:39:08 +11001276xfs_caddr_t
1277xfs_buf_offset(
1278 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 size_t offset)
1280{
1281 struct page *page;
1282
Nathan Scottce8e9222006-01-11 15:39:08 +11001283 if (bp->b_flags & XBF_MAPPED)
1284 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Nathan Scottce8e9222006-01-11 15:39:08 +11001286 offset += bp->b_offset;
1287 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1288 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289}
1290
1291/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 * Move data into or out of a buffer.
1293 */
1294void
Nathan Scottce8e9222006-01-11 15:39:08 +11001295xfs_buf_iomove(
1296 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 size_t boff, /* starting buffer offset */
1298 size_t bsize, /* length to copy */
1299 caddr_t data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001300 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
1302 size_t bend, cpoff, csize;
1303 struct page *page;
1304
1305 bend = boff + bsize;
1306 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001307 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1308 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001310 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1313
1314 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001315 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 memset(page_address(page) + cpoff, 0, csize);
1317 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001318 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 memcpy(data, page_address(page) + cpoff, csize);
1320 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001321 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 memcpy(page_address(page) + cpoff, data, csize);
1323 }
1324
1325 boff += csize;
1326 data += csize;
1327 }
1328}
1329
1330/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001331 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 */
1333
1334/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001335 * Wait for any bufs with callbacks that have been submitted but
1336 * have not yet returned... walk the hash list for the target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 */
1338void
1339xfs_wait_buftarg(
1340 xfs_buftarg_t *btp)
1341{
1342 xfs_buf_t *bp, *n;
1343 xfs_bufhash_t *hash;
1344 uint i;
1345
1346 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1347 hash = &btp->bt_hash[i];
1348again:
1349 spin_lock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001350 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
1351 ASSERT(btp == bp->b_target);
1352 if (!(bp->b_flags & XBF_FS_MANAGED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 spin_unlock(&hash->bh_lock);
David Chinner2f926582005-09-05 08:33:35 +10001354 /*
1355 * Catch superblock reference count leaks
1356 * immediately
1357 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001358 BUG_ON(bp->b_bn == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 delay(100);
1360 goto again;
1361 }
1362 }
1363 spin_unlock(&hash->bh_lock);
1364 }
1365}
1366
1367/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001368 * Allocate buffer hash table for a given target.
1369 * For devices containing metadata (i.e. not the log/realtime devices)
1370 * we need to allocate a much larger hash table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 */
1372STATIC void
1373xfs_alloc_bufhash(
1374 xfs_buftarg_t *btp,
1375 int external)
1376{
1377 unsigned int i;
1378
1379 btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */
1380 btp->bt_hashmask = (1 << btp->bt_hashshift) - 1;
1381 btp->bt_hash = kmem_zalloc((1 << btp->bt_hashshift) *
Vlad Apostolov93c189c2006-11-11 18:03:49 +11001382 sizeof(xfs_bufhash_t), KM_SLEEP | KM_LARGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1384 spin_lock_init(&btp->bt_hash[i].bh_lock);
1385 INIT_LIST_HEAD(&btp->bt_hash[i].bh_list);
1386 }
1387}
1388
1389STATIC void
1390xfs_free_bufhash(
1391 xfs_buftarg_t *btp)
1392{
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001393 kmem_free(btp->bt_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 btp->bt_hash = NULL;
1395}
1396
David Chinnera6867a62006-01-11 15:37:58 +11001397/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001398 * buftarg list for delwrite queue processing
David Chinnera6867a62006-01-11 15:37:58 +11001399 */
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001400static LIST_HEAD(xfs_buftarg_list);
David Chinner7989cb82007-02-10 18:34:56 +11001401static DEFINE_SPINLOCK(xfs_buftarg_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001402
1403STATIC void
1404xfs_register_buftarg(
1405 xfs_buftarg_t *btp)
1406{
1407 spin_lock(&xfs_buftarg_lock);
1408 list_add(&btp->bt_list, &xfs_buftarg_list);
1409 spin_unlock(&xfs_buftarg_lock);
1410}
1411
1412STATIC void
1413xfs_unregister_buftarg(
1414 xfs_buftarg_t *btp)
1415{
1416 spin_lock(&xfs_buftarg_lock);
1417 list_del(&btp->bt_list);
1418 spin_unlock(&xfs_buftarg_lock);
1419}
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421void
1422xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001423 struct xfs_mount *mp,
1424 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
1426 xfs_flush_buftarg(btp, 1);
Christoph Hellwigb7963132009-03-03 14:48:37 -05001427 if (mp->m_flags & XFS_MOUNT_BARRIER)
1428 xfs_blkdev_issue_flush(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 xfs_free_bufhash(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001430 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001431
Nathan Scottce8e9222006-01-11 15:39:08 +11001432 /* Unregister the buftarg first so that we don't get a
1433 * wakeup finding a non-existent task
1434 */
David Chinnera6867a62006-01-11 15:37:58 +11001435 xfs_unregister_buftarg(btp);
1436 kthread_stop(btp->bt_task);
1437
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001438 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439}
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441STATIC int
1442xfs_setsize_buftarg_flags(
1443 xfs_buftarg_t *btp,
1444 unsigned int blocksize,
1445 unsigned int sectorsize,
1446 int verbose)
1447{
Nathan Scottce8e9222006-01-11 15:39:08 +11001448 btp->bt_bsize = blocksize;
1449 btp->bt_sshift = ffs(sectorsize) - 1;
1450 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Nathan Scottce8e9222006-01-11 15:39:08 +11001452 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 printk(KERN_WARNING
1454 "XFS: Cannot set_blocksize to %u on device %s\n",
1455 sectorsize, XFS_BUFTARG_NAME(btp));
1456 return EINVAL;
1457 }
1458
1459 if (verbose &&
1460 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1461 printk(KERN_WARNING
1462 "XFS: %u byte sectors in use on device %s. "
1463 "This is suboptimal; %u or greater is ideal.\n",
1464 sectorsize, XFS_BUFTARG_NAME(btp),
1465 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1466 }
1467
1468 return 0;
1469}
1470
1471/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001472 * When allocating the initial buffer target we have not yet
1473 * read in the superblock, so don't know what sized sectors
1474 * are being used is at this early stage. Play safe.
1475 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476STATIC int
1477xfs_setsize_buftarg_early(
1478 xfs_buftarg_t *btp,
1479 struct block_device *bdev)
1480{
1481 return xfs_setsize_buftarg_flags(btp,
Martin K. Petersene1defc42009-05-22 17:17:49 -04001482 PAGE_CACHE_SIZE, bdev_logical_block_size(bdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
1485int
1486xfs_setsize_buftarg(
1487 xfs_buftarg_t *btp,
1488 unsigned int blocksize,
1489 unsigned int sectorsize)
1490{
1491 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1492}
1493
1494STATIC int
1495xfs_mapping_buftarg(
1496 xfs_buftarg_t *btp,
1497 struct block_device *bdev)
1498{
1499 struct backing_dev_info *bdi;
1500 struct inode *inode;
1501 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001502 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001504 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 };
1506
1507 inode = new_inode(bdev->bd_inode->i_sb);
1508 if (!inode) {
1509 printk(KERN_WARNING
1510 "XFS: Cannot allocate mapping inode for device %s\n",
1511 XFS_BUFTARG_NAME(btp));
1512 return ENOMEM;
1513 }
1514 inode->i_mode = S_IFBLK;
1515 inode->i_bdev = bdev;
1516 inode->i_rdev = bdev->bd_dev;
1517 bdi = blk_get_backing_dev_info(bdev);
1518 if (!bdi)
1519 bdi = &default_backing_dev_info;
1520 mapping = &inode->i_data;
1521 mapping->a_ops = &mapping_aops;
1522 mapping->backing_dev_info = bdi;
1523 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001524 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 return 0;
1526}
1527
David Chinnera6867a62006-01-11 15:37:58 +11001528STATIC int
1529xfs_alloc_delwrite_queue(
1530 xfs_buftarg_t *btp)
1531{
1532 int error = 0;
1533
1534 INIT_LIST_HEAD(&btp->bt_list);
1535 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
Eric Sandeen007c61c2007-10-11 17:43:56 +10001536 spin_lock_init(&btp->bt_delwrite_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001537 btp->bt_flags = 0;
1538 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd");
1539 if (IS_ERR(btp->bt_task)) {
1540 error = PTR_ERR(btp->bt_task);
1541 goto out_error;
1542 }
1543 xfs_register_buftarg(btp);
1544out_error:
1545 return error;
1546}
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548xfs_buftarg_t *
1549xfs_alloc_buftarg(
1550 struct block_device *bdev,
1551 int external)
1552{
1553 xfs_buftarg_t *btp;
1554
1555 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1556
Nathan Scottce8e9222006-01-11 15:39:08 +11001557 btp->bt_dev = bdev->bd_dev;
1558 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 if (xfs_setsize_buftarg_early(btp, bdev))
1560 goto error;
1561 if (xfs_mapping_buftarg(btp, bdev))
1562 goto error;
David Chinnera6867a62006-01-11 15:37:58 +11001563 if (xfs_alloc_delwrite_queue(btp))
1564 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 xfs_alloc_bufhash(btp, external);
1566 return btp;
1567
1568error:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001569 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 return NULL;
1571}
1572
1573
1574/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001575 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001578xfs_buf_delwri_queue(
1579 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 int unlock)
1581{
Nathan Scottce8e9222006-01-11 15:39:08 +11001582 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1583 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001584
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001585 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1586
Nathan Scottce8e9222006-01-11 15:39:08 +11001587 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
David Chinnera6867a62006-01-11 15:37:58 +11001589 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001591 if (!list_empty(&bp->b_list)) {
1592 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1593 if (unlock)
1594 atomic_dec(&bp->b_hold);
1595 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 }
1597
Nathan Scottce8e9222006-01-11 15:39:08 +11001598 bp->b_flags |= _XBF_DELWRI_Q;
1599 list_add_tail(&bp->b_list, dwq);
1600 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001601 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
1603 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001604 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605}
1606
1607void
Nathan Scottce8e9222006-01-11 15:39:08 +11001608xfs_buf_delwri_dequeue(
1609 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
Nathan Scottce8e9222006-01-11 15:39:08 +11001611 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 int dequeued = 0;
1613
David Chinnera6867a62006-01-11 15:37:58 +11001614 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001615 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1616 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1617 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 dequeued = 1;
1619 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001620 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001621 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001624 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001626 trace_xfs_buf_delwri_dequeue(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
1628
1629STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001630xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 struct workqueue_struct *queue)
1632{
1633 flush_workqueue(queue);
1634}
1635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001637xfsbufd_wakeup(
Nathan Scott15c84a42005-11-04 10:51:01 +11001638 int priority,
1639 gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640{
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001641 xfs_buftarg_t *btp;
David Chinnera6867a62006-01-11 15:37:58 +11001642
1643 spin_lock(&xfs_buftarg_lock);
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001644 list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001645 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
David Chinnera6867a62006-01-11 15:37:58 +11001646 continue;
Nathan Scottce8e9222006-01-11 15:39:08 +11001647 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
David Chinnera6867a62006-01-11 15:37:58 +11001648 wake_up_process(btp->bt_task);
1649 }
1650 spin_unlock(&xfs_buftarg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 return 0;
1652}
1653
David Chinner585e6d82007-02-10 18:32:29 +11001654/*
1655 * Move as many buffers as specified to the supplied list
1656 * idicating if we skipped any buffers to prevent deadlocks.
1657 */
1658STATIC int
1659xfs_buf_delwri_split(
1660 xfs_buftarg_t *target,
1661 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001662 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001663{
1664 xfs_buf_t *bp, *n;
1665 struct list_head *dwq = &target->bt_delwrite_queue;
1666 spinlock_t *dwlk = &target->bt_delwrite_lock;
1667 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001668 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001669
David Chinner5e6a07d2007-02-10 18:34:49 +11001670 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001671 INIT_LIST_HEAD(list);
1672 spin_lock(dwlk);
1673 list_for_each_entry_safe(bp, n, dwq, b_list) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001674 trace_xfs_buf_delwri_split(bp, _RET_IP_);
David Chinner585e6d82007-02-10 18:32:29 +11001675 ASSERT(bp->b_flags & XBF_DELWRI);
1676
1677 if (!xfs_buf_ispin(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001678 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001679 time_before(jiffies, bp->b_queuetime + age)) {
1680 xfs_buf_unlock(bp);
1681 break;
1682 }
1683
1684 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1685 _XBF_RUN_QUEUES);
1686 bp->b_flags |= XBF_WRITE;
1687 list_move_tail(&bp->b_list, list);
1688 } else
1689 skipped++;
1690 }
1691 spin_unlock(dwlk);
1692
1693 return skipped;
1694
1695}
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001698xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001699 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
David Chinner585e6d82007-02-10 18:32:29 +11001701 struct list_head tmp;
1702 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
1703 int count;
1704 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 current->flags |= PF_MEMALLOC;
1707
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001708 set_freezable();
1709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 do {
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001711 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001712 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001713 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001714 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001715 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Nathan Scott15c84a42005-11-04 10:51:01 +11001718 schedule_timeout_interruptible(
1719 xfs_buf_timer_centisecs * msecs_to_jiffies(10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
David Chinner585e6d82007-02-10 18:32:29 +11001721 xfs_buf_delwri_split(target, &tmp,
David Chinner5e6a07d2007-02-10 18:34:49 +11001722 xfs_buf_age_centisecs * msecs_to_jiffies(10));
David Chinner585e6d82007-02-10 18:32:29 +11001723
Nathan Scottf07c2252006-09-28 10:52:15 +10001724 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001726 bp = list_entry(tmp.next, xfs_buf_t, b_list);
1727 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Nathan Scottce8e9222006-01-11 15:39:08 +11001729 list_del_init(&bp->b_list);
1730 xfs_buf_iostrategy(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001731 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 }
1733
Felix Blyakher3a011a12009-02-18 15:56:51 -06001734 if (as_list_len > 0)
1735 purge_addresses();
Nathan Scottf07c2252006-09-28 10:52:15 +10001736 if (count)
1737 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001739 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001741 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742}
1743
1744/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001745 * Go through all incore buffers, and release buffers if they belong to
1746 * the given device. This is used in filesystem error handling to
1747 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 */
1749int
1750xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001751 xfs_buftarg_t *target,
1752 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
David Chinner585e6d82007-02-10 18:32:29 +11001754 struct list_head tmp;
1755 xfs_buf_t *bp, *n;
1756 int pincount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Dave Chinnerc626d172009-04-06 18:42:11 +02001758 xfs_buf_runall_queues(xfsconvertd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001759 xfs_buf_runall_queues(xfsdatad_workqueue);
1760 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
David Chinner5e6a07d2007-02-10 18:34:49 +11001762 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
1763 pincount = xfs_buf_delwri_split(target, &tmp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765 /*
1766 * Dropped the delayed write list lock, now walk the temporary list
1767 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001768 list_for_each_entry_safe(bp, n, &tmp, b_list) {
David Chinner585e6d82007-02-10 18:32:29 +11001769 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 if (wait)
Nathan Scottce8e9222006-01-11 15:39:08 +11001771 bp->b_flags &= ~XBF_ASYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 else
Nathan Scottce8e9222006-01-11 15:39:08 +11001773 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Nathan Scottce8e9222006-01-11 15:39:08 +11001775 xfs_buf_iostrategy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 }
1777
Nathan Scottf07c2252006-09-28 10:52:15 +10001778 if (wait)
1779 blk_run_address_space(target->bt_mapping);
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 /*
1782 * Remaining list items must be flushed before returning
1783 */
1784 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001785 bp = list_entry(tmp.next, xfs_buf_t, b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Nathan Scottce8e9222006-01-11 15:39:08 +11001787 list_del_init(&bp->b_list);
1788 xfs_iowait(bp);
1789 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 }
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 return pincount;
1793}
1794
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001795int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001796xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
Nathan Scott87582802006-03-14 13:18:19 +11001798 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1799 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001800 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001801 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001802
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001803 xfslogd_workqueue = create_workqueue("xfslogd");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001804 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001805 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001807 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001808 if (!xfsdatad_workqueue)
1809 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Dave Chinnerc626d172009-04-06 18:42:11 +02001811 xfsconvertd_workqueue = create_workqueue("xfsconvertd");
1812 if (!xfsconvertd_workqueue)
1813 goto out_destroy_xfsdatad_workqueue;
1814
Rusty Russell8e1f9362007-07-17 04:03:17 -07001815 register_shrinker(&xfs_buf_shake);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001816 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Dave Chinnerc626d172009-04-06 18:42:11 +02001818 out_destroy_xfsdatad_workqueue:
1819 destroy_workqueue(xfsdatad_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001820 out_destroy_xfslogd_workqueue:
1821 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001822 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001823 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001824 out:
Nathan Scott87582802006-03-14 13:18:19 +11001825 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826}
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828void
Nathan Scottce8e9222006-01-11 15:39:08 +11001829xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830{
Rusty Russell8e1f9362007-07-17 04:03:17 -07001831 unregister_shrinker(&xfs_buf_shake);
Dave Chinnerc626d172009-04-06 18:42:11 +02001832 destroy_workqueue(xfsconvertd_workqueue);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001833 destroy_workqueue(xfsdatad_workqueue);
1834 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001835 kmem_zone_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001837
1838#ifdef CONFIG_KDB_MODULES
1839struct list_head *
1840xfs_get_buftarg_list(void)
1841{
1842 return &xfs_buftarg_list;
1843}
1844#endif