blob: 208daf58b826765ca3f097c06a4dfc208e65701a [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
David Chinner7989cb82007-02-10 18:34:56 +110037static kmem_zone_t *xfs_buf_zone;
38static kmem_shaker_t xfs_buf_shake;
David Chinnera6867a62006-01-11 15:37:58 +110039STATIC int xfsbufd(void *);
Al Viro27496a82005-10-21 03:20:48 -040040STATIC int xfsbufd_wakeup(int, gfp_t);
Nathan Scottce8e9222006-01-11 15:39:08 +110041STATIC void xfs_buf_delwri_queue(xfs_buf_t *, int);
Christoph Hellwig23ea4032005-06-21 15:14:01 +100042
David Chinner7989cb82007-02-10 18:34:56 +110043static struct workqueue_struct *xfslogd_workqueue;
Christoph Hellwig0829c362005-09-02 16:58:49 +100044struct workqueue_struct *xfsdatad_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Nathan Scottce8e9222006-01-11 15:39:08 +110046#ifdef XFS_BUF_TRACE
Linus Torvalds1da177e2005-04-16 15:20:36 -070047void
Nathan Scottce8e9222006-01-11 15:39:08 +110048xfs_buf_trace(
49 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 char *id,
51 void *data,
52 void *ra)
53{
Nathan Scottce8e9222006-01-11 15:39:08 +110054 ktrace_enter(xfs_buf_trace_buf,
55 bp, id,
56 (void *)(unsigned long)bp->b_flags,
57 (void *)(unsigned long)bp->b_hold.counter,
58 (void *)(unsigned long)bp->b_sema.count.counter,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 (void *)current,
60 data, ra,
Nathan Scottce8e9222006-01-11 15:39:08 +110061 (void *)(unsigned long)((bp->b_file_offset>>32) & 0xffffffff),
62 (void *)(unsigned long)(bp->b_file_offset & 0xffffffff),
63 (void *)(unsigned long)bp->b_buffer_length,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 NULL, NULL, NULL, NULL, NULL);
65}
Nathan Scottce8e9222006-01-11 15:39:08 +110066ktrace_t *xfs_buf_trace_buf;
67#define XFS_BUF_TRACE_SIZE 4096
68#define XB_TRACE(bp, id, data) \
69 xfs_buf_trace(bp, id, (void *)data, (void *)__builtin_return_address(0))
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#else
Nathan Scottce8e9222006-01-11 15:39:08 +110071#define XB_TRACE(bp, id, data) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#endif
73
Nathan Scottce8e9222006-01-11 15:39:08 +110074#ifdef XFS_BUF_LOCK_TRACKING
75# define XB_SET_OWNER(bp) ((bp)->b_last_holder = current->pid)
76# define XB_CLEAR_OWNER(bp) ((bp)->b_last_holder = -1)
77# define XB_GET_OWNER(bp) ((bp)->b_last_holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#else
Nathan Scottce8e9222006-01-11 15:39:08 +110079# define XB_SET_OWNER(bp) do { } while (0)
80# define XB_CLEAR_OWNER(bp) do { } while (0)
81# define XB_GET_OWNER(bp) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#endif
83
Nathan Scottce8e9222006-01-11 15:39:08 +110084#define xb_to_gfp(flags) \
85 ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : \
86 ((flags) & XBF_DONT_BLOCK) ? GFP_NOFS : GFP_KERNEL) | __GFP_NOWARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Nathan Scottce8e9222006-01-11 15:39:08 +110088#define xb_to_km(flags) \
89 (((flags) & XBF_DONT_BLOCK) ? KM_NOFS : KM_SLEEP)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Nathan Scottce8e9222006-01-11 15:39:08 +110091#define xfs_buf_allocate(flags) \
92 kmem_zone_alloc(xfs_buf_zone, xb_to_km(flags))
93#define xfs_buf_deallocate(bp) \
94 kmem_zone_free(xfs_buf_zone, (bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/*
Nathan Scottce8e9222006-01-11 15:39:08 +110097 * Page Region interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 *
Nathan Scottce8e9222006-01-11 15:39:08 +110099 * For pages in filesystems where the blocksize is smaller than the
100 * pagesize, we use the page->private field (long) to hold a bitmap
101 * of uptodate regions within the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
Nathan Scottce8e9222006-01-11 15:39:08 +1100103 * Each such region is "bytes per page / bits per long" bytes long.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 *
Nathan Scottce8e9222006-01-11 15:39:08 +1100105 * NBPPR == number-of-bytes-per-page-region
106 * BTOPR == bytes-to-page-region (rounded up)
107 * BTOPRT == bytes-to-page-region-truncated (rounded down)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
109#if (BITS_PER_LONG == 32)
110#define PRSHIFT (PAGE_CACHE_SHIFT - 5) /* (32 == 1<<5) */
111#elif (BITS_PER_LONG == 64)
112#define PRSHIFT (PAGE_CACHE_SHIFT - 6) /* (64 == 1<<6) */
113#else
114#error BITS_PER_LONG must be 32 or 64
115#endif
116#define NBPPR (PAGE_CACHE_SIZE/BITS_PER_LONG)
117#define BTOPR(b) (((unsigned int)(b) + (NBPPR - 1)) >> PRSHIFT)
118#define BTOPRT(b) (((unsigned int)(b) >> PRSHIFT))
119
120STATIC unsigned long
121page_region_mask(
122 size_t offset,
123 size_t length)
124{
125 unsigned long mask;
126 int first, final;
127
128 first = BTOPR(offset);
129 final = BTOPRT(offset + length - 1);
130 first = min(first, final);
131
132 mask = ~0UL;
133 mask <<= BITS_PER_LONG - (final - first);
134 mask >>= BITS_PER_LONG - (final);
135
136 ASSERT(offset + length <= PAGE_CACHE_SIZE);
137 ASSERT((final - first) < BITS_PER_LONG && (final - first) >= 0);
138
139 return mask;
140}
141
David Chinner7989cb82007-02-10 18:34:56 +1100142STATIC_INLINE void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143set_page_region(
144 struct page *page,
145 size_t offset,
146 size_t length)
147{
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700148 set_page_private(page,
149 page_private(page) | page_region_mask(offset, length));
150 if (page_private(page) == ~0UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 SetPageUptodate(page);
152}
153
David Chinner7989cb82007-02-10 18:34:56 +1100154STATIC_INLINE int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155test_page_region(
156 struct page *page,
157 size_t offset,
158 size_t length)
159{
160 unsigned long mask = page_region_mask(offset, length);
161
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700162 return (mask && (page_private(page) & mask) == mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
165/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100166 * Mapping of multi-page buffers into contiguous virtual space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 */
168
169typedef struct a_list {
170 void *vm_addr;
171 struct a_list *next;
172} a_list_t;
173
David Chinner7989cb82007-02-10 18:34:56 +1100174static a_list_t *as_free_head;
175static int as_list_len;
176static DEFINE_SPINLOCK(as_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100179 * Try to batch vunmaps because they are costly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 */
181STATIC void
182free_address(
183 void *addr)
184{
185 a_list_t *aentry;
186
Jeff Dike7b04d712006-04-10 22:53:27 -0700187 aentry = kmalloc(sizeof(a_list_t), GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (likely(aentry)) {
189 spin_lock(&as_lock);
190 aentry->next = as_free_head;
191 aentry->vm_addr = addr;
192 as_free_head = aentry;
193 as_list_len++;
194 spin_unlock(&as_lock);
195 } else {
196 vunmap(addr);
197 }
198}
199
200STATIC void
201purge_addresses(void)
202{
203 a_list_t *aentry, *old;
204
205 if (as_free_head == NULL)
206 return;
207
208 spin_lock(&as_lock);
209 aentry = as_free_head;
210 as_free_head = NULL;
211 as_list_len = 0;
212 spin_unlock(&as_lock);
213
214 while ((old = aentry) != NULL) {
215 vunmap(aentry->vm_addr);
216 aentry = aentry->next;
217 kfree(old);
218 }
219}
220
221/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100222 * Internal xfs_buf_t object manipulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 */
224
225STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100226_xfs_buf_initialize(
227 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100229 xfs_off_t range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 size_t range_length,
Nathan Scottce8e9222006-01-11 15:39:08 +1100231 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100234 * We don't want certain flags to appear in b_flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100236 flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Nathan Scottce8e9222006-01-11 15:39:08 +1100238 memset(bp, 0, sizeof(xfs_buf_t));
239 atomic_set(&bp->b_hold, 1);
240 init_MUTEX_LOCKED(&bp->b_iodonesema);
241 INIT_LIST_HEAD(&bp->b_list);
242 INIT_LIST_HEAD(&bp->b_hash_list);
243 init_MUTEX_LOCKED(&bp->b_sema); /* held, no waiters */
244 XB_SET_OWNER(bp);
245 bp->b_target = target;
246 bp->b_file_offset = range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /*
248 * Set buffer_length and count_desired to the same value initially.
249 * I/O routines should use count_desired, which will be the same in
250 * most cases but may be reset (e.g. XFS recovery).
251 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100252 bp->b_buffer_length = bp->b_count_desired = range_length;
253 bp->b_flags = flags;
254 bp->b_bn = XFS_BUF_DADDR_NULL;
255 atomic_set(&bp->b_pin_count, 0);
256 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Nathan Scottce8e9222006-01-11 15:39:08 +1100258 XFS_STATS_INC(xb_create);
259 XB_TRACE(bp, "initialize", target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100263 * Allocate a page array capable of holding a specified number
264 * of pages, and point the page buf at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 */
266STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100267_xfs_buf_get_pages(
268 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 int page_count,
Nathan Scottce8e9222006-01-11 15:39:08 +1100270 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 /* Make sure that we have a page list */
Nathan Scottce8e9222006-01-11 15:39:08 +1100273 if (bp->b_pages == NULL) {
274 bp->b_offset = xfs_buf_poff(bp->b_file_offset);
275 bp->b_page_count = page_count;
276 if (page_count <= XB_PAGES) {
277 bp->b_pages = bp->b_page_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100279 bp->b_pages = kmem_alloc(sizeof(struct page *) *
280 page_count, xb_to_km(flags));
281 if (bp->b_pages == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return -ENOMEM;
283 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100284 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286 return 0;
287}
288
289/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100290 * Frees b_pages if it was allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 */
292STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100293_xfs_buf_free_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 xfs_buf_t *bp)
295{
Nathan Scottce8e9222006-01-11 15:39:08 +1100296 if (bp->b_pages != bp->b_page_array) {
297 kmem_free(bp->b_pages,
298 bp->b_page_count * sizeof(struct page *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300}
301
302/*
303 * Releases the specified buffer.
304 *
305 * The modification state of any associated pages is left unchanged.
Nathan Scottce8e9222006-01-11 15:39:08 +1100306 * The buffer most not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 * hashed and refcounted buffers
308 */
309void
Nathan Scottce8e9222006-01-11 15:39:08 +1100310xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 xfs_buf_t *bp)
312{
Nathan Scottce8e9222006-01-11 15:39:08 +1100313 XB_TRACE(bp, "free", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Nathan Scottce8e9222006-01-11 15:39:08 +1100315 ASSERT(list_empty(&bp->b_hash_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000317 if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 uint i;
319
Nathan Scottce8e9222006-01-11 15:39:08 +1100320 if ((bp->b_flags & XBF_MAPPED) && (bp->b_page_count > 1))
321 free_address(bp->b_addr - bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Nathan Scott948ecdb2006-09-28 11:03:13 +1000323 for (i = 0; i < bp->b_page_count; i++) {
324 struct page *page = bp->b_pages[i];
325
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000326 if (bp->b_flags & _XBF_PAGE_CACHE)
327 ASSERT(!PagePrivate(page));
Nathan Scott948ecdb2006-09-28 11:03:13 +1000328 page_cache_release(page);
329 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100330 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332
Nathan Scottce8e9222006-01-11 15:39:08 +1100333 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
336/*
337 * Finds all pages for buffer in question and builds it's page list.
338 */
339STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100340_xfs_buf_lookup_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 xfs_buf_t *bp,
342 uint flags)
343{
Nathan Scottce8e9222006-01-11 15:39:08 +1100344 struct address_space *mapping = bp->b_target->bt_mapping;
345 size_t blocksize = bp->b_target->bt_bsize;
346 size_t size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100348 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 unsigned short page_count, i;
350 pgoff_t first;
Nathan Scott204ab252006-01-11 20:50:22 +1100351 xfs_off_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 int error;
353
Nathan Scottce8e9222006-01-11 15:39:08 +1100354 end = bp->b_file_offset + bp->b_buffer_length;
355 page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Nathan Scottce8e9222006-01-11 15:39:08 +1100357 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (unlikely(error))
359 return error;
Nathan Scottce8e9222006-01-11 15:39:08 +1100360 bp->b_flags |= _XBF_PAGE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Nathan Scottce8e9222006-01-11 15:39:08 +1100362 offset = bp->b_offset;
363 first = bp->b_file_offset >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Nathan Scottce8e9222006-01-11 15:39:08 +1100365 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 struct page *page;
367 uint retries = 0;
368
369 retry:
370 page = find_or_create_page(mapping, first + i, gfp_mask);
371 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100372 if (flags & XBF_READ_AHEAD) {
373 bp->b_page_count = i;
374 for (i = 0; i < bp->b_page_count; i++)
375 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return -ENOMEM;
377 }
378
379 /*
380 * This could deadlock.
381 *
382 * But until all the XFS lowlevel code is revamped to
383 * handle buffer allocation failures we can't do much.
384 */
385 if (!(++retries % 100))
386 printk(KERN_ERR
387 "XFS: possible memory allocation "
388 "deadlock in %s (mode:0x%x)\n",
389 __FUNCTION__, gfp_mask);
390
Nathan Scottce8e9222006-01-11 15:39:08 +1100391 XFS_STATS_INC(xb_page_retries);
Christoph Hellwig23ea4032005-06-21 15:14:01 +1000392 xfsbufd_wakeup(0, gfp_mask);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700393 congestion_wait(WRITE, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 goto retry;
395 }
396
Nathan Scottce8e9222006-01-11 15:39:08 +1100397 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
400 size -= nbytes;
401
Nathan Scott948ecdb2006-09-28 11:03:13 +1000402 ASSERT(!PagePrivate(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (!PageUptodate(page)) {
404 page_count--;
405 if (blocksize >= PAGE_CACHE_SIZE) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100406 if (flags & XBF_READ)
407 bp->b_locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 } else if (!PagePrivate(page)) {
409 if (test_page_region(page, offset, nbytes))
410 page_count++;
411 }
412 }
413
Nathan Scottce8e9222006-01-11 15:39:08 +1100414 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 offset = 0;
416 }
417
Nathan Scottce8e9222006-01-11 15:39:08 +1100418 if (!bp->b_locked) {
419 for (i = 0; i < bp->b_page_count; i++)
420 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422
Nathan Scottce8e9222006-01-11 15:39:08 +1100423 if (page_count == bp->b_page_count)
424 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Nathan Scottce8e9222006-01-11 15:39:08 +1100426 XB_TRACE(bp, "lookup_pages", (long)page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return error;
428}
429
430/*
431 * Map buffer into kernel address-space if nessecary.
432 */
433STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100434_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 xfs_buf_t *bp,
436 uint flags)
437{
438 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100439 if (bp->b_page_count == 1) {
440 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
441 bp->b_flags |= XBF_MAPPED;
442 } else if (flags & XBF_MAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (as_list_len > 64)
444 purge_addresses();
Nathan Scottce8e9222006-01-11 15:39:08 +1100445 bp->b_addr = vmap(bp->b_pages, bp->b_page_count,
446 VM_MAP, PAGE_KERNEL);
447 if (unlikely(bp->b_addr == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100449 bp->b_addr += bp->b_offset;
450 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452
453 return 0;
454}
455
456/*
457 * Finding and Reading Buffers
458 */
459
460/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100461 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 * a given range of an inode. The buffer is returned
463 * locked. If other overlapping buffers exist, they are
464 * released before the new buffer is created and locked,
465 * which may imply that this call will block until those buffers
466 * are unlocked. No I/O is implied by this call.
467 */
468xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100469_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab252006-01-11 20:50:22 +1100471 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100473 xfs_buf_flags_t flags,
474 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Nathan Scott204ab252006-01-11 20:50:22 +1100476 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 size_t range_length;
478 xfs_bufhash_t *hash;
Nathan Scottce8e9222006-01-11 15:39:08 +1100479 xfs_buf_t *bp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 range_base = (ioff << BBSHIFT);
482 range_length = (isize << BBSHIFT);
483
484 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100485 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab252006-01-11 20:50:22 +1100486 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)];
489
490 spin_lock(&hash->bh_lock);
491
Nathan Scottce8e9222006-01-11 15:39:08 +1100492 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
493 ASSERT(btp == bp->b_target);
494 if (bp->b_file_offset == range_base &&
495 bp->b_buffer_length == range_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100497 * If we look at something, bring it to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 * front of the list for next time.
499 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100500 atomic_inc(&bp->b_hold);
501 list_move(&bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 goto found;
503 }
504 }
505
506 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100507 if (new_bp) {
508 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 range_length, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100510 new_bp->b_hash = hash;
511 list_add(&new_bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100513 XFS_STATS_INC(xb_miss_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515
516 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100517 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519found:
520 spin_unlock(&hash->bh_lock);
521
522 /* Attempt to get the semaphore without sleeping,
523 * if this does not work then we need to drop the
524 * spinlock and do a hard attempt on the semaphore.
525 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100526 if (down_trylock(&bp->b_sema)) {
527 if (!(flags & XBF_TRYLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /* wait for buffer ownership */
Nathan Scottce8e9222006-01-11 15:39:08 +1100529 XB_TRACE(bp, "get_lock", 0);
530 xfs_buf_lock(bp);
531 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 } else {
533 /* We asked for a trylock and failed, no need
534 * to look at file offset and length here, we
Nathan Scottce8e9222006-01-11 15:39:08 +1100535 * know that this buffer at least overlaps our
536 * buffer and is locked, therefore our buffer
537 * either does not exist, or is this buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100539 xfs_buf_rele(bp);
540 XFS_STATS_INC(xb_busy_locked);
541 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543 } else {
544 /* trylock worked */
Nathan Scottce8e9222006-01-11 15:39:08 +1100545 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
547
Nathan Scottce8e9222006-01-11 15:39:08 +1100548 if (bp->b_flags & XBF_STALE) {
549 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
550 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000551 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100552 XB_TRACE(bp, "got_lock", 0);
553 XFS_STATS_INC(xb_get_locked);
554 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
557/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100558 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 * Storage in memory for all portions of the buffer will be allocated,
560 * although backing storage may not be.
561 */
562xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100563xfs_buf_get_flags(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100565 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100567 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Nathan Scottce8e9222006-01-11 15:39:08 +1100569 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 int error = 0, i;
571
Nathan Scottce8e9222006-01-11 15:39:08 +1100572 new_bp = xfs_buf_allocate(flags);
573 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return NULL;
575
Nathan Scottce8e9222006-01-11 15:39:08 +1100576 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
577 if (bp == new_bp) {
578 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (error)
580 goto no_buffer;
581 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100582 xfs_buf_deallocate(new_bp);
583 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return NULL;
585 }
586
Nathan Scottce8e9222006-01-11 15:39:08 +1100587 for (i = 0; i < bp->b_page_count; i++)
588 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Nathan Scottce8e9222006-01-11 15:39:08 +1100590 if (!(bp->b_flags & XBF_MAPPED)) {
591 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (unlikely(error)) {
593 printk(KERN_WARNING "%s: failed to map pages\n",
594 __FUNCTION__);
595 goto no_buffer;
596 }
597 }
598
Nathan Scottce8e9222006-01-11 15:39:08 +1100599 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 /*
602 * Always fill in the block number now, the mapped cases can do
603 * their own overlay of this later.
604 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100605 bp->b_bn = ioff;
606 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Nathan Scottce8e9222006-01-11 15:39:08 +1100608 XB_TRACE(bp, "get", (unsigned long)flags);
609 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100612 if (flags & (XBF_LOCK | XBF_TRYLOCK))
613 xfs_buf_unlock(bp);
614 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return NULL;
616}
617
618xfs_buf_t *
619xfs_buf_read_flags(
620 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100621 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100623 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Nathan Scottce8e9222006-01-11 15:39:08 +1100625 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Nathan Scottce8e9222006-01-11 15:39:08 +1100627 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Nathan Scottce8e9222006-01-11 15:39:08 +1100629 bp = xfs_buf_get_flags(target, ioff, isize, flags);
630 if (bp) {
631 if (!XFS_BUF_ISDONE(bp)) {
632 XB_TRACE(bp, "read", (unsigned long)flags);
633 XFS_STATS_INC(xb_get_read);
634 xfs_buf_iostart(bp, flags);
635 } else if (flags & XBF_ASYNC) {
636 XB_TRACE(bp, "read_async", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /*
638 * Read ahead call which is already satisfied,
639 * drop the buffer
640 */
641 goto no_buffer;
642 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100643 XB_TRACE(bp, "read_done", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100645 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
647 }
648
Nathan Scottce8e9222006-01-11 15:39:08 +1100649 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100652 if (flags & (XBF_LOCK | XBF_TRYLOCK))
653 xfs_buf_unlock(bp);
654 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return NULL;
656}
657
658/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100659 * If we are not low on memory then do the readahead in a deadlock
660 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 */
662void
Nathan Scottce8e9222006-01-11 15:39:08 +1100663xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100665 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100667 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 struct backing_dev_info *bdi;
670
Nathan Scottce8e9222006-01-11 15:39:08 +1100671 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (bdi_read_congested(bdi))
673 return;
674
Nathan Scottce8e9222006-01-11 15:39:08 +1100675 flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 xfs_buf_read_flags(target, ioff, isize, flags);
677}
678
679xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100680xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 size_t len,
682 xfs_buftarg_t *target)
683{
Nathan Scottce8e9222006-01-11 15:39:08 +1100684 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Nathan Scottce8e9222006-01-11 15:39:08 +1100686 bp = xfs_buf_allocate(0);
687 if (bp)
688 _xfs_buf_initialize(bp, target, 0, len, 0);
689 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
692static inline struct page *
693mem_to_page(
694 void *addr)
695{
696 if (((unsigned long)addr < VMALLOC_START) ||
697 ((unsigned long)addr >= VMALLOC_END)) {
698 return virt_to_page(addr);
699 } else {
700 return vmalloc_to_page(addr);
701 }
702}
703
704int
Nathan Scottce8e9222006-01-11 15:39:08 +1100705xfs_buf_associate_memory(
706 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 void *mem,
708 size_t len)
709{
710 int rval;
711 int i = 0;
712 size_t ptr;
713 size_t end, end_cur;
714 off_t offset;
715 int page_count;
716
717 page_count = PAGE_CACHE_ALIGN(len) >> PAGE_CACHE_SHIFT;
718 offset = (off_t) mem - ((off_t)mem & PAGE_CACHE_MASK);
719 if (offset && (len > PAGE_CACHE_SIZE))
720 page_count++;
721
722 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100723 if (bp->b_pages)
724 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Nathan Scottce8e9222006-01-11 15:39:08 +1100726 bp->b_pages = NULL;
727 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Nathan Scottce8e9222006-01-11 15:39:08 +1100729 rval = _xfs_buf_get_pages(bp, page_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (rval)
731 return rval;
732
Nathan Scottce8e9222006-01-11 15:39:08 +1100733 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 ptr = (size_t) mem & PAGE_CACHE_MASK;
735 end = PAGE_CACHE_ALIGN((size_t) mem + len);
736 end_cur = end;
737 /* set up first page */
Nathan Scottce8e9222006-01-11 15:39:08 +1100738 bp->b_pages[0] = mem_to_page(mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 ptr += PAGE_CACHE_SIZE;
Nathan Scottce8e9222006-01-11 15:39:08 +1100741 bp->b_page_count = ++i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 while (ptr < end) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100743 bp->b_pages[i] = mem_to_page((void *)ptr);
744 bp->b_page_count = ++i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 ptr += PAGE_CACHE_SIZE;
746 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100747 bp->b_locked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Nathan Scottce8e9222006-01-11 15:39:08 +1100749 bp->b_count_desired = bp->b_buffer_length = len;
750 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 return 0;
753}
754
755xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100756xfs_buf_get_noaddr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 size_t len,
758 xfs_buftarg_t *target)
759{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000760 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
761 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Nathan Scottce8e9222006-01-11 15:39:08 +1100764 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (unlikely(bp == NULL))
766 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100767 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000769 error = _xfs_buf_get_pages(bp, page_count, 0);
770 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 goto fail_free_buf;
772
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000773 for (i = 0; i < page_count; i++) {
774 bp->b_pages[i] = alloc_page(GFP_KERNEL);
775 if (!bp->b_pages[i])
776 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000778 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000780 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
781 if (unlikely(error)) {
782 printk(KERN_WARNING "%s: failed to map pages\n",
783 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Nathan Scottce8e9222006-01-11 15:39:08 +1100787 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000789 XB_TRACE(bp, "no_daddr", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000793 while (--i >= 0)
794 __free_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 fail_free_buf:
Nathan Scottce8e9222006-01-11 15:39:08 +1100796 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 fail:
798 return NULL;
799}
800
801/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 * Increment reference count on buffer, to hold the buffer concurrently
803 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 * Must hold the buffer already to call this function.
805 */
806void
Nathan Scottce8e9222006-01-11 15:39:08 +1100807xfs_buf_hold(
808 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Nathan Scottce8e9222006-01-11 15:39:08 +1100810 atomic_inc(&bp->b_hold);
811 XB_TRACE(bp, "hold", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
814/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100815 * Releases a hold on the specified buffer. If the
816 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 */
818void
Nathan Scottce8e9222006-01-11 15:39:08 +1100819xfs_buf_rele(
820 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Nathan Scottce8e9222006-01-11 15:39:08 +1100822 xfs_bufhash_t *hash = bp->b_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Nathan Scottce8e9222006-01-11 15:39:08 +1100824 XB_TRACE(bp, "rele", bp->b_relse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Nathan Scottfad3aa12006-02-01 12:14:52 +1100826 if (unlikely(!hash)) {
827 ASSERT(!bp->b_relse);
828 if (atomic_dec_and_test(&bp->b_hold))
829 xfs_buf_free(bp);
830 return;
831 }
832
Nathan Scottce8e9222006-01-11 15:39:08 +1100833 if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) {
834 if (bp->b_relse) {
835 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100837 (*(bp->b_relse)) (bp);
838 } else if (bp->b_flags & XBF_FS_MANAGED) {
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100839 spin_unlock(&hash->bh_lock);
840 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100841 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
842 list_del_init(&bp->b_hash_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100844 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
David Chinner2f926582005-09-05 08:33:35 +1000846 } else {
847 /*
848 * Catch reference count leaks
849 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100850 ASSERT(atomic_read(&bp->b_hold) >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852}
853
854
855/*
856 * Mutual exclusion on buffers. Locking model:
857 *
858 * Buffers associated with inodes for which buffer locking
859 * is not enabled are not protected by semaphores, and are
860 * assumed to be exclusively owned by the caller. There is a
861 * spinlock in the buffer, used by the caller when concurrent
862 * access is possible.
863 */
864
865/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100866 * Locks a buffer object, if it is not already locked.
867 * Note that this in no way locks the underlying pages, so it is only
868 * useful for synchronizing concurrent use of buffer objects, not for
869 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 */
871int
Nathan Scottce8e9222006-01-11 15:39:08 +1100872xfs_buf_cond_lock(
873 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
875 int locked;
876
Nathan Scottce8e9222006-01-11 15:39:08 +1100877 locked = down_trylock(&bp->b_sema) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (locked) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100879 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100881 XB_TRACE(bp, "cond_lock", (long)locked);
882 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
885#if defined(DEBUG) || defined(XFS_BLI_TRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886int
Nathan Scottce8e9222006-01-11 15:39:08 +1100887xfs_buf_lock_value(
888 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Nathan Scottce8e9222006-01-11 15:39:08 +1100890 return atomic_read(&bp->b_sema.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892#endif
893
894/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100895 * Locks a buffer object.
896 * Note that this in no way locks the underlying pages, so it is only
897 * useful for synchronizing concurrent use of buffer objects, not for
898 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100900void
901xfs_buf_lock(
902 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Nathan Scottce8e9222006-01-11 15:39:08 +1100904 XB_TRACE(bp, "lock", 0);
905 if (atomic_read(&bp->b_io_remaining))
906 blk_run_address_space(bp->b_target->bt_mapping);
907 down(&bp->b_sema);
908 XB_SET_OWNER(bp);
909 XB_TRACE(bp, "locked", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
912/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100913 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000914 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100915 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000916 * take a reference for the delwri queue because the unlocker is going to
917 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 */
919void
Nathan Scottce8e9222006-01-11 15:39:08 +1100920xfs_buf_unlock(
921 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
Nathan Scottce8e9222006-01-11 15:39:08 +1100923 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
924 atomic_inc(&bp->b_hold);
925 bp->b_flags |= XBF_ASYNC;
926 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000927 }
928
Nathan Scottce8e9222006-01-11 15:39:08 +1100929 XB_CLEAR_OWNER(bp);
930 up(&bp->b_sema);
931 XB_TRACE(bp, "unlock", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934
935/*
936 * Pinning Buffer Storage in Memory
Nathan Scottce8e9222006-01-11 15:39:08 +1100937 * Ensure that no attempt to force a buffer to disk will succeed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 */
939void
Nathan Scottce8e9222006-01-11 15:39:08 +1100940xfs_buf_pin(
941 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Nathan Scottce8e9222006-01-11 15:39:08 +1100943 atomic_inc(&bp->b_pin_count);
944 XB_TRACE(bp, "pin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947void
Nathan Scottce8e9222006-01-11 15:39:08 +1100948xfs_buf_unpin(
949 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Nathan Scottce8e9222006-01-11 15:39:08 +1100951 if (atomic_dec_and_test(&bp->b_pin_count))
952 wake_up_all(&bp->b_waiters);
953 XB_TRACE(bp, "unpin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955
956int
Nathan Scottce8e9222006-01-11 15:39:08 +1100957xfs_buf_ispin(
958 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Nathan Scottce8e9222006-01-11 15:39:08 +1100960 return atomic_read(&bp->b_pin_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
Nathan Scottce8e9222006-01-11 15:39:08 +1100963STATIC void
964xfs_buf_wait_unpin(
965 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 DECLARE_WAITQUEUE (wait, current);
968
Nathan Scottce8e9222006-01-11 15:39:08 +1100969 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 return;
971
Nathan Scottce8e9222006-01-11 15:39:08 +1100972 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 for (;;) {
974 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100975 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 break;
Nathan Scottce8e9222006-01-11 15:39:08 +1100977 if (atomic_read(&bp->b_io_remaining))
978 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 schedule();
980 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100981 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 set_current_state(TASK_RUNNING);
983}
984
985/*
986 * Buffer Utility Routines
987 */
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100990xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +0000991 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
David Howellsc4028952006-11-22 14:57:56 +0000993 xfs_buf_t *bp =
994 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Nathan Scottce8e9222006-01-11 15:39:08 +1100996 if (bp->b_iodone)
997 (*(bp->b_iodone))(bp);
998 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 xfs_buf_relse(bp);
1000}
1001
1002void
Nathan Scottce8e9222006-01-11 15:39:08 +11001003xfs_buf_ioend(
1004 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 int schedule)
1006{
Nathan Scottce8e9222006-01-11 15:39:08 +11001007 bp->b_flags &= ~(XBF_READ | XBF_WRITE);
1008 if (bp->b_error == 0)
1009 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Nathan Scottce8e9222006-01-11 15:39:08 +11001011 XB_TRACE(bp, "iodone", bp->b_iodone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Nathan Scottce8e9222006-01-11 15:39:08 +11001013 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001015 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001016 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 } else {
David Howellsc4028952006-11-22 14:57:56 +00001018 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
1020 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001021 up(&bp->b_iodonesema);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023}
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025void
Nathan Scottce8e9222006-01-11 15:39:08 +11001026xfs_buf_ioerror(
1027 xfs_buf_t *bp,
1028 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
1030 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001031 bp->b_error = (unsigned short)error;
1032 XB_TRACE(bp, "ioerror", (unsigned long)error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
1035/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001036 * Initiate I/O on a buffer, based on the flags supplied.
1037 * The b_iodone routine in the buffer supplied will only be called
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 * when all of the subsidiary I/O requests, if any, have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 */
1040int
Nathan Scottce8e9222006-01-11 15:39:08 +11001041xfs_buf_iostart(
1042 xfs_buf_t *bp,
1043 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
1045 int status = 0;
1046
Nathan Scottce8e9222006-01-11 15:39:08 +11001047 XB_TRACE(bp, "iostart", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Nathan Scottce8e9222006-01-11 15:39:08 +11001049 if (flags & XBF_DELWRI) {
1050 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC);
1051 bp->b_flags |= flags & (XBF_DELWRI | XBF_ASYNC);
1052 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return status;
1054 }
1055
Nathan Scottce8e9222006-01-11 15:39:08 +11001056 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
1057 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
1058 bp->b_flags |= flags & (XBF_READ | XBF_WRITE | XBF_ASYNC | \
1059 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Nathan Scottce8e9222006-01-11 15:39:08 +11001061 BUG_ON(bp->b_bn == XFS_BUF_DADDR_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 /* For writes allow an alternate strategy routine to precede
1064 * the actual I/O request (which may not be issued at all in
1065 * a shutdown situation, for example).
1066 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001067 status = (flags & XBF_WRITE) ?
1068 xfs_buf_iostrategy(bp) : xfs_buf_iorequest(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 /* Wait for I/O if we are not an async request.
1071 * Note: async I/O request completion will release the buffer,
1072 * and that can already be done by this point. So using the
1073 * buffer pointer from here on, after async I/O, is invalid.
1074 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001075 if (!status && !(flags & XBF_ASYNC))
1076 status = xfs_buf_iowait(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 return status;
1079}
1080
David Chinner7989cb82007-02-10 18:34:56 +11001081STATIC_INLINE int
Nathan Scottce8e9222006-01-11 15:39:08 +11001082_xfs_buf_iolocked(
1083 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
Nathan Scottce8e9222006-01-11 15:39:08 +11001085 ASSERT(bp->b_flags & (XBF_READ | XBF_WRITE));
1086 if (bp->b_flags & XBF_READ)
1087 return bp->b_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return 0;
1089}
1090
David Chinner7989cb82007-02-10 18:34:56 +11001091STATIC_INLINE void
Nathan Scottce8e9222006-01-11 15:39:08 +11001092_xfs_buf_ioend(
1093 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 int schedule)
1095{
Nathan Scottce8e9222006-01-11 15:39:08 +11001096 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1097 bp->b_locked = 0;
1098 xfs_buf_ioend(bp, schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100}
1101
1102STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +11001103xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 struct bio *bio,
1105 unsigned int bytes_done,
1106 int error)
1107{
Nathan Scottce8e9222006-01-11 15:39:08 +11001108 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1109 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001110 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 if (bio->bi_size)
1113 return 1;
1114
1115 if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
Nathan Scottce8e9222006-01-11 15:39:08 +11001116 bp->b_error = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Nathan Scotteedb5532005-09-02 16:39:56 +10001118 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 struct page *page = bvec->bv_page;
1120
Nathan Scott948ecdb2006-09-28 11:03:13 +10001121 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001122 if (unlikely(bp->b_error)) {
1123 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001124 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001125 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 SetPageUptodate(page);
1127 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001128 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1130 }
1131
Nathan Scotteedb5532005-09-02 16:39:56 +10001132 if (--bvec >= bio->bi_io_vec)
1133 prefetchw(&bvec->bv_page->flags);
1134
Nathan Scottce8e9222006-01-11 15:39:08 +11001135 if (_xfs_buf_iolocked(bp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 unlock_page(page);
1137 }
Nathan Scotteedb5532005-09-02 16:39:56 +10001138 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Nathan Scottce8e9222006-01-11 15:39:08 +11001140 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 bio_put(bio);
1142 return 0;
1143}
1144
1145STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001146_xfs_buf_ioapply(
1147 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 int i, rw, map_i, total_nr_pages, nr_pages;
1150 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001151 int offset = bp->b_offset;
1152 int size = bp->b_count_desired;
1153 sector_t sector = bp->b_bn;
1154 unsigned int blocksize = bp->b_target->bt_bsize;
1155 int locking = _xfs_buf_iolocked(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Nathan Scottce8e9222006-01-11 15:39:08 +11001157 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 map_i = 0;
1159
Nathan Scottce8e9222006-01-11 15:39:08 +11001160 if (bp->b_flags & XBF_ORDERED) {
1161 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001162 rw = WRITE_BARRIER;
Nathan Scott51bdd702006-09-28 11:01:57 +10001163 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1164 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1165 bp->b_flags &= ~_XBF_RUN_QUEUES;
1166 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
1167 } else {
1168 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1169 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001170 }
1171
Nathan Scottce8e9222006-01-11 15:39:08 +11001172 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 * we populate up the whole page, and hence the other metadata
1174 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001175 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001177 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
1178 (bp->b_flags & XBF_READ) && locking &&
1179 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 bio = bio_alloc(GFP_NOIO, 1);
1181
Nathan Scottce8e9222006-01-11 15:39:08 +11001182 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001184 bio->bi_end_io = xfs_buf_bio_end_io;
1185 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Nathan Scottce8e9222006-01-11 15:39:08 +11001187 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 size = 0;
1189
Nathan Scottce8e9222006-01-11 15:39:08 +11001190 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 goto submit_io;
1193 }
1194
1195 /* Lock down the pages which we need to for the request */
Nathan Scottce8e9222006-01-11 15:39:08 +11001196 if (locking && (bp->b_flags & XBF_WRITE) && (bp->b_locked == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 for (i = 0; size; i++) {
1198 int nbytes = PAGE_CACHE_SIZE - offset;
Nathan Scottce8e9222006-01-11 15:39:08 +11001199 struct page *page = bp->b_pages[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 if (nbytes > size)
1202 nbytes = size;
1203
1204 lock_page(page);
1205
1206 size -= nbytes;
1207 offset = 0;
1208 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001209 offset = bp->b_offset;
1210 size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 }
1212
1213next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001214 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1216 if (nr_pages > total_nr_pages)
1217 nr_pages = total_nr_pages;
1218
1219 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001220 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001222 bio->bi_end_io = xfs_buf_bio_end_io;
1223 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001226 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 if (nbytes > size)
1229 nbytes = size;
1230
Nathan Scottce8e9222006-01-11 15:39:08 +11001231 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1232 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 break;
1234
1235 offset = 0;
1236 sector += nbytes >> BBSHIFT;
1237 size -= nbytes;
1238 total_nr_pages--;
1239 }
1240
1241submit_io:
1242 if (likely(bio->bi_size)) {
1243 submit_bio(rw, bio);
1244 if (size)
1245 goto next_chunk;
1246 } else {
1247 bio_put(bio);
Nathan Scottce8e9222006-01-11 15:39:08 +11001248 xfs_buf_ioerror(bp, EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250}
1251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252int
Nathan Scottce8e9222006-01-11 15:39:08 +11001253xfs_buf_iorequest(
1254 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
Nathan Scottce8e9222006-01-11 15:39:08 +11001256 XB_TRACE(bp, "iorequest", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Nathan Scottce8e9222006-01-11 15:39:08 +11001258 if (bp->b_flags & XBF_DELWRI) {
1259 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return 0;
1261 }
1262
Nathan Scottce8e9222006-01-11 15:39:08 +11001263 if (bp->b_flags & XBF_WRITE) {
1264 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 }
1266
Nathan Scottce8e9222006-01-11 15:39:08 +11001267 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 /* Set the count to 1 initially, this will stop an I/O
1270 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001271 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001273 atomic_set(&bp->b_io_remaining, 1);
1274 _xfs_buf_ioapply(bp);
1275 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Nathan Scottce8e9222006-01-11 15:39:08 +11001277 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 return 0;
1279}
1280
1281/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001282 * Waits for I/O to complete on the buffer supplied.
1283 * It returns immediately if no I/O is pending.
1284 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 */
1286int
Nathan Scottce8e9222006-01-11 15:39:08 +11001287xfs_buf_iowait(
1288 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Nathan Scottce8e9222006-01-11 15:39:08 +11001290 XB_TRACE(bp, "iowait", 0);
1291 if (atomic_read(&bp->b_io_remaining))
1292 blk_run_address_space(bp->b_target->bt_mapping);
1293 down(&bp->b_iodonesema);
1294 XB_TRACE(bp, "iowaited", (long)bp->b_error);
1295 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296}
1297
Nathan Scottce8e9222006-01-11 15:39:08 +11001298xfs_caddr_t
1299xfs_buf_offset(
1300 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 size_t offset)
1302{
1303 struct page *page;
1304
Nathan Scottce8e9222006-01-11 15:39:08 +11001305 if (bp->b_flags & XBF_MAPPED)
1306 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Nathan Scottce8e9222006-01-11 15:39:08 +11001308 offset += bp->b_offset;
1309 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1310 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
1313/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 * Move data into or out of a buffer.
1315 */
1316void
Nathan Scottce8e9222006-01-11 15:39:08 +11001317xfs_buf_iomove(
1318 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 size_t boff, /* starting buffer offset */
1320 size_t bsize, /* length to copy */
1321 caddr_t data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001322 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
1324 size_t bend, cpoff, csize;
1325 struct page *page;
1326
1327 bend = boff + bsize;
1328 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001329 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1330 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001332 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1335
1336 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001337 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 memset(page_address(page) + cpoff, 0, csize);
1339 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001340 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 memcpy(data, page_address(page) + cpoff, csize);
1342 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001343 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 memcpy(page_address(page) + cpoff, data, csize);
1345 }
1346
1347 boff += csize;
1348 data += csize;
1349 }
1350}
1351
1352/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001353 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 */
1355
1356/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001357 * Wait for any bufs with callbacks that have been submitted but
1358 * have not yet returned... walk the hash list for the target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 */
1360void
1361xfs_wait_buftarg(
1362 xfs_buftarg_t *btp)
1363{
1364 xfs_buf_t *bp, *n;
1365 xfs_bufhash_t *hash;
1366 uint i;
1367
1368 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1369 hash = &btp->bt_hash[i];
1370again:
1371 spin_lock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001372 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
1373 ASSERT(btp == bp->b_target);
1374 if (!(bp->b_flags & XBF_FS_MANAGED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 spin_unlock(&hash->bh_lock);
David Chinner2f926582005-09-05 08:33:35 +10001376 /*
1377 * Catch superblock reference count leaks
1378 * immediately
1379 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001380 BUG_ON(bp->b_bn == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 delay(100);
1382 goto again;
1383 }
1384 }
1385 spin_unlock(&hash->bh_lock);
1386 }
1387}
1388
1389/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001390 * Allocate buffer hash table for a given target.
1391 * For devices containing metadata (i.e. not the log/realtime devices)
1392 * we need to allocate a much larger hash table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 */
1394STATIC void
1395xfs_alloc_bufhash(
1396 xfs_buftarg_t *btp,
1397 int external)
1398{
1399 unsigned int i;
1400
1401 btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */
1402 btp->bt_hashmask = (1 << btp->bt_hashshift) - 1;
1403 btp->bt_hash = kmem_zalloc((1 << btp->bt_hashshift) *
Vlad Apostolov93c189c2006-11-11 18:03:49 +11001404 sizeof(xfs_bufhash_t), KM_SLEEP | KM_LARGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1406 spin_lock_init(&btp->bt_hash[i].bh_lock);
1407 INIT_LIST_HEAD(&btp->bt_hash[i].bh_list);
1408 }
1409}
1410
1411STATIC void
1412xfs_free_bufhash(
1413 xfs_buftarg_t *btp)
1414{
Nathan Scottce8e9222006-01-11 15:39:08 +11001415 kmem_free(btp->bt_hash, (1<<btp->bt_hashshift) * sizeof(xfs_bufhash_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 btp->bt_hash = NULL;
1417}
1418
David Chinnera6867a62006-01-11 15:37:58 +11001419/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001420 * buftarg list for delwrite queue processing
David Chinnera6867a62006-01-11 15:37:58 +11001421 */
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001422static LIST_HEAD(xfs_buftarg_list);
David Chinner7989cb82007-02-10 18:34:56 +11001423static DEFINE_SPINLOCK(xfs_buftarg_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001424
1425STATIC void
1426xfs_register_buftarg(
1427 xfs_buftarg_t *btp)
1428{
1429 spin_lock(&xfs_buftarg_lock);
1430 list_add(&btp->bt_list, &xfs_buftarg_list);
1431 spin_unlock(&xfs_buftarg_lock);
1432}
1433
1434STATIC void
1435xfs_unregister_buftarg(
1436 xfs_buftarg_t *btp)
1437{
1438 spin_lock(&xfs_buftarg_lock);
1439 list_del(&btp->bt_list);
1440 spin_unlock(&xfs_buftarg_lock);
1441}
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443void
1444xfs_free_buftarg(
1445 xfs_buftarg_t *btp,
1446 int external)
1447{
1448 xfs_flush_buftarg(btp, 1);
1449 if (external)
Nathan Scottce8e9222006-01-11 15:39:08 +11001450 xfs_blkdev_put(btp->bt_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 xfs_free_bufhash(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001452 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001453
Nathan Scottce8e9222006-01-11 15:39:08 +11001454 /* Unregister the buftarg first so that we don't get a
1455 * wakeup finding a non-existent task
1456 */
David Chinnera6867a62006-01-11 15:37:58 +11001457 xfs_unregister_buftarg(btp);
1458 kthread_stop(btp->bt_task);
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 kmem_free(btp, sizeof(*btp));
1461}
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463STATIC int
1464xfs_setsize_buftarg_flags(
1465 xfs_buftarg_t *btp,
1466 unsigned int blocksize,
1467 unsigned int sectorsize,
1468 int verbose)
1469{
Nathan Scottce8e9222006-01-11 15:39:08 +11001470 btp->bt_bsize = blocksize;
1471 btp->bt_sshift = ffs(sectorsize) - 1;
1472 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Nathan Scottce8e9222006-01-11 15:39:08 +11001474 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 printk(KERN_WARNING
1476 "XFS: Cannot set_blocksize to %u on device %s\n",
1477 sectorsize, XFS_BUFTARG_NAME(btp));
1478 return EINVAL;
1479 }
1480
1481 if (verbose &&
1482 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1483 printk(KERN_WARNING
1484 "XFS: %u byte sectors in use on device %s. "
1485 "This is suboptimal; %u or greater is ideal.\n",
1486 sectorsize, XFS_BUFTARG_NAME(btp),
1487 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1488 }
1489
1490 return 0;
1491}
1492
1493/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001494 * When allocating the initial buffer target we have not yet
1495 * read in the superblock, so don't know what sized sectors
1496 * are being used is at this early stage. Play safe.
1497 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498STATIC int
1499xfs_setsize_buftarg_early(
1500 xfs_buftarg_t *btp,
1501 struct block_device *bdev)
1502{
1503 return xfs_setsize_buftarg_flags(btp,
1504 PAGE_CACHE_SIZE, bdev_hardsect_size(bdev), 0);
1505}
1506
1507int
1508xfs_setsize_buftarg(
1509 xfs_buftarg_t *btp,
1510 unsigned int blocksize,
1511 unsigned int sectorsize)
1512{
1513 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1514}
1515
1516STATIC int
1517xfs_mapping_buftarg(
1518 xfs_buftarg_t *btp,
1519 struct block_device *bdev)
1520{
1521 struct backing_dev_info *bdi;
1522 struct inode *inode;
1523 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001524 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001526 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 };
1528
1529 inode = new_inode(bdev->bd_inode->i_sb);
1530 if (!inode) {
1531 printk(KERN_WARNING
1532 "XFS: Cannot allocate mapping inode for device %s\n",
1533 XFS_BUFTARG_NAME(btp));
1534 return ENOMEM;
1535 }
1536 inode->i_mode = S_IFBLK;
1537 inode->i_bdev = bdev;
1538 inode->i_rdev = bdev->bd_dev;
1539 bdi = blk_get_backing_dev_info(bdev);
1540 if (!bdi)
1541 bdi = &default_backing_dev_info;
1542 mapping = &inode->i_data;
1543 mapping->a_ops = &mapping_aops;
1544 mapping->backing_dev_info = bdi;
1545 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001546 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return 0;
1548}
1549
David Chinnera6867a62006-01-11 15:37:58 +11001550STATIC int
1551xfs_alloc_delwrite_queue(
1552 xfs_buftarg_t *btp)
1553{
1554 int error = 0;
1555
1556 INIT_LIST_HEAD(&btp->bt_list);
1557 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
1558 spinlock_init(&btp->bt_delwrite_lock, "delwri_lock");
1559 btp->bt_flags = 0;
1560 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd");
1561 if (IS_ERR(btp->bt_task)) {
1562 error = PTR_ERR(btp->bt_task);
1563 goto out_error;
1564 }
1565 xfs_register_buftarg(btp);
1566out_error:
1567 return error;
1568}
1569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570xfs_buftarg_t *
1571xfs_alloc_buftarg(
1572 struct block_device *bdev,
1573 int external)
1574{
1575 xfs_buftarg_t *btp;
1576
1577 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1578
Nathan Scottce8e9222006-01-11 15:39:08 +11001579 btp->bt_dev = bdev->bd_dev;
1580 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (xfs_setsize_buftarg_early(btp, bdev))
1582 goto error;
1583 if (xfs_mapping_buftarg(btp, bdev))
1584 goto error;
David Chinnera6867a62006-01-11 15:37:58 +11001585 if (xfs_alloc_delwrite_queue(btp))
1586 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 xfs_alloc_bufhash(btp, external);
1588 return btp;
1589
1590error:
1591 kmem_free(btp, sizeof(*btp));
1592 return NULL;
1593}
1594
1595
1596/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001597 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001600xfs_buf_delwri_queue(
1601 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 int unlock)
1603{
Nathan Scottce8e9222006-01-11 15:39:08 +11001604 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1605 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001606
Nathan Scottce8e9222006-01-11 15:39:08 +11001607 XB_TRACE(bp, "delwri_q", (long)unlock);
1608 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
David Chinnera6867a62006-01-11 15:37:58 +11001610 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001612 if (!list_empty(&bp->b_list)) {
1613 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1614 if (unlock)
1615 atomic_dec(&bp->b_hold);
1616 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 }
1618
Nathan Scottce8e9222006-01-11 15:39:08 +11001619 bp->b_flags |= _XBF_DELWRI_Q;
1620 list_add_tail(&bp->b_list, dwq);
1621 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001622 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001625 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627
1628void
Nathan Scottce8e9222006-01-11 15:39:08 +11001629xfs_buf_delwri_dequeue(
1630 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
Nathan Scottce8e9222006-01-11 15:39:08 +11001632 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 int dequeued = 0;
1634
David Chinnera6867a62006-01-11 15:37:58 +11001635 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001636 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1637 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1638 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 dequeued = 1;
1640 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001641 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001642 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001645 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Nathan Scottce8e9222006-01-11 15:39:08 +11001647 XB_TRACE(bp, "delwri_dq", (long)dequeued);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648}
1649
1650STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001651xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 struct workqueue_struct *queue)
1653{
1654 flush_workqueue(queue);
1655}
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001658xfsbufd_wakeup(
Nathan Scott15c84a42005-11-04 10:51:01 +11001659 int priority,
1660 gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661{
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001662 xfs_buftarg_t *btp;
David Chinnera6867a62006-01-11 15:37:58 +11001663
1664 spin_lock(&xfs_buftarg_lock);
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001665 list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001666 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
David Chinnera6867a62006-01-11 15:37:58 +11001667 continue;
Nathan Scottce8e9222006-01-11 15:39:08 +11001668 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
David Chinnera6867a62006-01-11 15:37:58 +11001669 wake_up_process(btp->bt_task);
1670 }
1671 spin_unlock(&xfs_buftarg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return 0;
1673}
1674
David Chinner585e6d82007-02-10 18:32:29 +11001675/*
1676 * Move as many buffers as specified to the supplied list
1677 * idicating if we skipped any buffers to prevent deadlocks.
1678 */
1679STATIC int
1680xfs_buf_delwri_split(
1681 xfs_buftarg_t *target,
1682 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001683 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001684{
1685 xfs_buf_t *bp, *n;
1686 struct list_head *dwq = &target->bt_delwrite_queue;
1687 spinlock_t *dwlk = &target->bt_delwrite_lock;
1688 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001689 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001690
David Chinner5e6a07d2007-02-10 18:34:49 +11001691 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001692 INIT_LIST_HEAD(list);
1693 spin_lock(dwlk);
1694 list_for_each_entry_safe(bp, n, dwq, b_list) {
1695 XB_TRACE(bp, "walkq1", (long)xfs_buf_ispin(bp));
1696 ASSERT(bp->b_flags & XBF_DELWRI);
1697
1698 if (!xfs_buf_ispin(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001699 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001700 time_before(jiffies, bp->b_queuetime + age)) {
1701 xfs_buf_unlock(bp);
1702 break;
1703 }
1704
1705 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1706 _XBF_RUN_QUEUES);
1707 bp->b_flags |= XBF_WRITE;
1708 list_move_tail(&bp->b_list, list);
1709 } else
1710 skipped++;
1711 }
1712 spin_unlock(dwlk);
1713
1714 return skipped;
1715
1716}
1717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001719xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001720 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721{
David Chinner585e6d82007-02-10 18:32:29 +11001722 struct list_head tmp;
1723 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
1724 int count;
1725 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 current->flags |= PF_MEMALLOC;
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 do {
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001730 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001731 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001732 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001733 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001734 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Nathan Scott15c84a42005-11-04 10:51:01 +11001737 schedule_timeout_interruptible(
1738 xfs_buf_timer_centisecs * msecs_to_jiffies(10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
David Chinner585e6d82007-02-10 18:32:29 +11001740 xfs_buf_delwri_split(target, &tmp,
David Chinner5e6a07d2007-02-10 18:34:49 +11001741 xfs_buf_age_centisecs * msecs_to_jiffies(10));
David Chinner585e6d82007-02-10 18:32:29 +11001742
Nathan Scottf07c2252006-09-28 10:52:15 +10001743 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001745 bp = list_entry(tmp.next, xfs_buf_t, b_list);
1746 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Nathan Scottce8e9222006-01-11 15:39:08 +11001748 list_del_init(&bp->b_list);
1749 xfs_buf_iostrategy(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001750 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
1752
1753 if (as_list_len > 0)
1754 purge_addresses();
Nathan Scottf07c2252006-09-28 10:52:15 +10001755 if (count)
1756 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001758 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001760 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761}
1762
1763/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001764 * Go through all incore buffers, and release buffers if they belong to
1765 * the given device. This is used in filesystem error handling to
1766 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 */
1768int
1769xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001770 xfs_buftarg_t *target,
1771 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
David Chinner585e6d82007-02-10 18:32:29 +11001773 struct list_head tmp;
1774 xfs_buf_t *bp, *n;
1775 int pincount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Nathan Scottce8e9222006-01-11 15:39:08 +11001777 xfs_buf_runall_queues(xfsdatad_workqueue);
1778 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
David Chinner5e6a07d2007-02-10 18:34:49 +11001780 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
1781 pincount = xfs_buf_delwri_split(target, &tmp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
1783 /*
1784 * Dropped the delayed write list lock, now walk the temporary list
1785 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001786 list_for_each_entry_safe(bp, n, &tmp, b_list) {
David Chinner585e6d82007-02-10 18:32:29 +11001787 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 if (wait)
Nathan Scottce8e9222006-01-11 15:39:08 +11001789 bp->b_flags &= ~XBF_ASYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 else
Nathan Scottce8e9222006-01-11 15:39:08 +11001791 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Nathan Scottce8e9222006-01-11 15:39:08 +11001793 xfs_buf_iostrategy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 }
1795
Nathan Scottf07c2252006-09-28 10:52:15 +10001796 if (wait)
1797 blk_run_address_space(target->bt_mapping);
1798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 /*
1800 * Remaining list items must be flushed before returning
1801 */
1802 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001803 bp = list_entry(tmp.next, xfs_buf_t, b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Nathan Scottce8e9222006-01-11 15:39:08 +11001805 list_del_init(&bp->b_list);
1806 xfs_iowait(bp);
1807 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
1809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 return pincount;
1811}
1812
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001813int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001814xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Nathan Scottce8e9222006-01-11 15:39:08 +11001816#ifdef XFS_BUF_TRACE
1817 xfs_buf_trace_buf = ktrace_alloc(XFS_BUF_TRACE_SIZE, KM_SLEEP);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001818#endif
1819
Nathan Scott87582802006-03-14 13:18:19 +11001820 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1821 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001822 if (!xfs_buf_zone)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001823 goto out_free_trace_buf;
1824
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001825 xfslogd_workqueue = create_workqueue("xfslogd");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001826 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001827 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001829 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001830 if (!xfsdatad_workqueue)
1831 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Nathan Scottce8e9222006-01-11 15:39:08 +11001833 xfs_buf_shake = kmem_shake_register(xfsbufd_wakeup);
1834 if (!xfs_buf_shake)
David Chinnera6867a62006-01-11 15:37:58 +11001835 goto out_destroy_xfsdatad_workqueue;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001836
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001837 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001839 out_destroy_xfsdatad_workqueue:
1840 destroy_workqueue(xfsdatad_workqueue);
1841 out_destroy_xfslogd_workqueue:
1842 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001843 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001844 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001845 out_free_trace_buf:
Nathan Scottce8e9222006-01-11 15:39:08 +11001846#ifdef XFS_BUF_TRACE
1847 ktrace_free(xfs_buf_trace_buf);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001848#endif
Nathan Scott87582802006-03-14 13:18:19 +11001849 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850}
1851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852void
Nathan Scottce8e9222006-01-11 15:39:08 +11001853xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854{
Nathan Scottce8e9222006-01-11 15:39:08 +11001855 kmem_shake_deregister(xfs_buf_shake);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001856 destroy_workqueue(xfsdatad_workqueue);
1857 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001858 kmem_zone_destroy(xfs_buf_zone);
1859#ifdef XFS_BUF_TRACE
1860 ktrace_free(xfs_buf_trace_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001863
1864#ifdef CONFIG_KDB_MODULES
1865struct list_head *
1866xfs_get_buftarg_list(void)
1867{
1868 return &xfs_buftarg_list;
1869}
1870#endif