blob: 2df63622354e7700f12c40bc53556b9af624e81c [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;
Andrew Morton3260f782007-05-24 15:25:42 +100038static struct shrinker *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]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000795 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000797 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 fail:
799 return NULL;
800}
801
802/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 * Increment reference count on buffer, to hold the buffer concurrently
804 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 * Must hold the buffer already to call this function.
806 */
807void
Nathan Scottce8e9222006-01-11 15:39:08 +1100808xfs_buf_hold(
809 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Nathan Scottce8e9222006-01-11 15:39:08 +1100811 atomic_inc(&bp->b_hold);
812 XB_TRACE(bp, "hold", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
814
815/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100816 * Releases a hold on the specified buffer. If the
817 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 */
819void
Nathan Scottce8e9222006-01-11 15:39:08 +1100820xfs_buf_rele(
821 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Nathan Scottce8e9222006-01-11 15:39:08 +1100823 xfs_bufhash_t *hash = bp->b_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Nathan Scottce8e9222006-01-11 15:39:08 +1100825 XB_TRACE(bp, "rele", bp->b_relse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Nathan Scottfad3aa12006-02-01 12:14:52 +1100827 if (unlikely(!hash)) {
828 ASSERT(!bp->b_relse);
829 if (atomic_dec_and_test(&bp->b_hold))
830 xfs_buf_free(bp);
831 return;
832 }
833
Nathan Scottce8e9222006-01-11 15:39:08 +1100834 if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) {
835 if (bp->b_relse) {
836 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100838 (*(bp->b_relse)) (bp);
839 } else if (bp->b_flags & XBF_FS_MANAGED) {
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100840 spin_unlock(&hash->bh_lock);
841 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100842 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
843 list_del_init(&bp->b_hash_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100845 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
David Chinner2f926582005-09-05 08:33:35 +1000847 } else {
848 /*
849 * Catch reference count leaks
850 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100851 ASSERT(atomic_read(&bp->b_hold) >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853}
854
855
856/*
857 * Mutual exclusion on buffers. Locking model:
858 *
859 * Buffers associated with inodes for which buffer locking
860 * is not enabled are not protected by semaphores, and are
861 * assumed to be exclusively owned by the caller. There is a
862 * spinlock in the buffer, used by the caller when concurrent
863 * access is possible.
864 */
865
866/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100867 * Locks a buffer object, if it is not already locked.
868 * Note that this in no way locks the underlying pages, so it is only
869 * useful for synchronizing concurrent use of buffer objects, not for
870 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 */
872int
Nathan Scottce8e9222006-01-11 15:39:08 +1100873xfs_buf_cond_lock(
874 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
876 int locked;
877
Nathan Scottce8e9222006-01-11 15:39:08 +1100878 locked = down_trylock(&bp->b_sema) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (locked) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100880 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100882 XB_TRACE(bp, "cond_lock", (long)locked);
883 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
886#if defined(DEBUG) || defined(XFS_BLI_TRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887int
Nathan Scottce8e9222006-01-11 15:39:08 +1100888xfs_buf_lock_value(
889 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Nathan Scottce8e9222006-01-11 15:39:08 +1100891 return atomic_read(&bp->b_sema.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893#endif
894
895/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100896 * Locks a buffer object.
897 * Note that this in no way locks the underlying pages, so it is only
898 * useful for synchronizing concurrent use of buffer objects, not for
899 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100901void
902xfs_buf_lock(
903 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Nathan Scottce8e9222006-01-11 15:39:08 +1100905 XB_TRACE(bp, "lock", 0);
906 if (atomic_read(&bp->b_io_remaining))
907 blk_run_address_space(bp->b_target->bt_mapping);
908 down(&bp->b_sema);
909 XB_SET_OWNER(bp);
910 XB_TRACE(bp, "locked", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}
912
913/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100914 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000915 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100916 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000917 * take a reference for the delwri queue because the unlocker is going to
918 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 */
920void
Nathan Scottce8e9222006-01-11 15:39:08 +1100921xfs_buf_unlock(
922 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Nathan Scottce8e9222006-01-11 15:39:08 +1100924 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
925 atomic_inc(&bp->b_hold);
926 bp->b_flags |= XBF_ASYNC;
927 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000928 }
929
Nathan Scottce8e9222006-01-11 15:39:08 +1100930 XB_CLEAR_OWNER(bp);
931 up(&bp->b_sema);
932 XB_TRACE(bp, "unlock", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
935
936/*
937 * Pinning Buffer Storage in Memory
Nathan Scottce8e9222006-01-11 15:39:08 +1100938 * Ensure that no attempt to force a buffer to disk will succeed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 */
940void
Nathan Scottce8e9222006-01-11 15:39:08 +1100941xfs_buf_pin(
942 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
Nathan Scottce8e9222006-01-11 15:39:08 +1100944 atomic_inc(&bp->b_pin_count);
945 XB_TRACE(bp, "pin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948void
Nathan Scottce8e9222006-01-11 15:39:08 +1100949xfs_buf_unpin(
950 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Nathan Scottce8e9222006-01-11 15:39:08 +1100952 if (atomic_dec_and_test(&bp->b_pin_count))
953 wake_up_all(&bp->b_waiters);
954 XB_TRACE(bp, "unpin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
957int
Nathan Scottce8e9222006-01-11 15:39:08 +1100958xfs_buf_ispin(
959 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
Nathan Scottce8e9222006-01-11 15:39:08 +1100961 return atomic_read(&bp->b_pin_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
Nathan Scottce8e9222006-01-11 15:39:08 +1100964STATIC void
965xfs_buf_wait_unpin(
966 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 DECLARE_WAITQUEUE (wait, current);
969
Nathan Scottce8e9222006-01-11 15:39:08 +1100970 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return;
972
Nathan Scottce8e9222006-01-11 15:39:08 +1100973 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 for (;;) {
975 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100976 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 break;
Nathan Scottce8e9222006-01-11 15:39:08 +1100978 if (atomic_read(&bp->b_io_remaining))
979 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 schedule();
981 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100982 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 set_current_state(TASK_RUNNING);
984}
985
986/*
987 * Buffer Utility Routines
988 */
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100991xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +0000992 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
David Howellsc4028952006-11-22 14:57:56 +0000994 xfs_buf_t *bp =
995 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Nathan Scottce8e9222006-01-11 15:39:08 +1100997 if (bp->b_iodone)
998 (*(bp->b_iodone))(bp);
999 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 xfs_buf_relse(bp);
1001}
1002
1003void
Nathan Scottce8e9222006-01-11 15:39:08 +11001004xfs_buf_ioend(
1005 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 int schedule)
1007{
Nathan Scottce8e9222006-01-11 15:39:08 +11001008 bp->b_flags &= ~(XBF_READ | XBF_WRITE);
1009 if (bp->b_error == 0)
1010 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Nathan Scottce8e9222006-01-11 15:39:08 +11001012 XB_TRACE(bp, "iodone", bp->b_iodone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Nathan Scottce8e9222006-01-11 15:39:08 +11001014 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001016 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001017 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 } else {
David Howellsc4028952006-11-22 14:57:56 +00001019 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 }
1021 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001022 up(&bp->b_iodonesema);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
1024}
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026void
Nathan Scottce8e9222006-01-11 15:39:08 +11001027xfs_buf_ioerror(
1028 xfs_buf_t *bp,
1029 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
1031 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001032 bp->b_error = (unsigned short)error;
1033 XB_TRACE(bp, "ioerror", (unsigned long)error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035
1036/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001037 * Initiate I/O on a buffer, based on the flags supplied.
1038 * The b_iodone routine in the buffer supplied will only be called
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 * when all of the subsidiary I/O requests, if any, have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 */
1041int
Nathan Scottce8e9222006-01-11 15:39:08 +11001042xfs_buf_iostart(
1043 xfs_buf_t *bp,
1044 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
1046 int status = 0;
1047
Nathan Scottce8e9222006-01-11 15:39:08 +11001048 XB_TRACE(bp, "iostart", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Nathan Scottce8e9222006-01-11 15:39:08 +11001050 if (flags & XBF_DELWRI) {
1051 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC);
1052 bp->b_flags |= flags & (XBF_DELWRI | XBF_ASYNC);
1053 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return status;
1055 }
1056
Nathan Scottce8e9222006-01-11 15:39:08 +11001057 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
1058 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
1059 bp->b_flags |= flags & (XBF_READ | XBF_WRITE | XBF_ASYNC | \
1060 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Nathan Scottce8e9222006-01-11 15:39:08 +11001062 BUG_ON(bp->b_bn == XFS_BUF_DADDR_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 /* For writes allow an alternate strategy routine to precede
1065 * the actual I/O request (which may not be issued at all in
1066 * a shutdown situation, for example).
1067 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001068 status = (flags & XBF_WRITE) ?
1069 xfs_buf_iostrategy(bp) : xfs_buf_iorequest(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 /* Wait for I/O if we are not an async request.
1072 * Note: async I/O request completion will release the buffer,
1073 * and that can already be done by this point. So using the
1074 * buffer pointer from here on, after async I/O, is invalid.
1075 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001076 if (!status && !(flags & XBF_ASYNC))
1077 status = xfs_buf_iowait(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 return status;
1080}
1081
David Chinner7989cb82007-02-10 18:34:56 +11001082STATIC_INLINE int
Nathan Scottce8e9222006-01-11 15:39:08 +11001083_xfs_buf_iolocked(
1084 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Nathan Scottce8e9222006-01-11 15:39:08 +11001086 ASSERT(bp->b_flags & (XBF_READ | XBF_WRITE));
1087 if (bp->b_flags & XBF_READ)
1088 return bp->b_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 return 0;
1090}
1091
David Chinner7989cb82007-02-10 18:34:56 +11001092STATIC_INLINE void
Nathan Scottce8e9222006-01-11 15:39:08 +11001093_xfs_buf_ioend(
1094 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 int schedule)
1096{
Nathan Scottce8e9222006-01-11 15:39:08 +11001097 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1098 bp->b_locked = 0;
1099 xfs_buf_ioend(bp, schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101}
1102
1103STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +11001104xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 struct bio *bio,
1106 unsigned int bytes_done,
1107 int error)
1108{
Nathan Scottce8e9222006-01-11 15:39:08 +11001109 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1110 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001111 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 if (bio->bi_size)
1114 return 1;
1115
1116 if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
Nathan Scottce8e9222006-01-11 15:39:08 +11001117 bp->b_error = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Nathan Scotteedb5532005-09-02 16:39:56 +10001119 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 struct page *page = bvec->bv_page;
1121
Nathan Scott948ecdb2006-09-28 11:03:13 +10001122 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001123 if (unlikely(bp->b_error)) {
1124 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001125 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001126 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 SetPageUptodate(page);
1128 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001129 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1131 }
1132
Nathan Scotteedb5532005-09-02 16:39:56 +10001133 if (--bvec >= bio->bi_io_vec)
1134 prefetchw(&bvec->bv_page->flags);
1135
Nathan Scottce8e9222006-01-11 15:39:08 +11001136 if (_xfs_buf_iolocked(bp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 unlock_page(page);
1138 }
Nathan Scotteedb5532005-09-02 16:39:56 +10001139 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Nathan Scottce8e9222006-01-11 15:39:08 +11001141 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 bio_put(bio);
1143 return 0;
1144}
1145
1146STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001147_xfs_buf_ioapply(
1148 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
1150 int i, rw, map_i, total_nr_pages, nr_pages;
1151 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001152 int offset = bp->b_offset;
1153 int size = bp->b_count_desired;
1154 sector_t sector = bp->b_bn;
1155 unsigned int blocksize = bp->b_target->bt_bsize;
1156 int locking = _xfs_buf_iolocked(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Nathan Scottce8e9222006-01-11 15:39:08 +11001158 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 map_i = 0;
1160
Nathan Scottce8e9222006-01-11 15:39:08 +11001161 if (bp->b_flags & XBF_ORDERED) {
1162 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001163 rw = WRITE_BARRIER;
Nathan Scott51bdd702006-09-28 11:01:57 +10001164 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1165 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1166 bp->b_flags &= ~_XBF_RUN_QUEUES;
1167 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
1168 } else {
1169 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1170 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001171 }
1172
Nathan Scottce8e9222006-01-11 15:39:08 +11001173 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 * we populate up the whole page, and hence the other metadata
1175 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001176 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001178 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
1179 (bp->b_flags & XBF_READ) && locking &&
1180 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 bio = bio_alloc(GFP_NOIO, 1);
1182
Nathan Scottce8e9222006-01-11 15:39:08 +11001183 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001185 bio->bi_end_io = xfs_buf_bio_end_io;
1186 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Nathan Scottce8e9222006-01-11 15:39:08 +11001188 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 size = 0;
1190
Nathan Scottce8e9222006-01-11 15:39:08 +11001191 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 goto submit_io;
1194 }
1195
1196 /* Lock down the pages which we need to for the request */
Nathan Scottce8e9222006-01-11 15:39:08 +11001197 if (locking && (bp->b_flags & XBF_WRITE) && (bp->b_locked == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 for (i = 0; size; i++) {
1199 int nbytes = PAGE_CACHE_SIZE - offset;
Nathan Scottce8e9222006-01-11 15:39:08 +11001200 struct page *page = bp->b_pages[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 if (nbytes > size)
1203 nbytes = size;
1204
1205 lock_page(page);
1206
1207 size -= nbytes;
1208 offset = 0;
1209 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001210 offset = bp->b_offset;
1211 size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
1213
1214next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001215 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1217 if (nr_pages > total_nr_pages)
1218 nr_pages = total_nr_pages;
1219
1220 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001221 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001223 bio->bi_end_io = xfs_buf_bio_end_io;
1224 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001227 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 if (nbytes > size)
1230 nbytes = size;
1231
Nathan Scottce8e9222006-01-11 15:39:08 +11001232 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1233 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 break;
1235
1236 offset = 0;
1237 sector += nbytes >> BBSHIFT;
1238 size -= nbytes;
1239 total_nr_pages--;
1240 }
1241
1242submit_io:
1243 if (likely(bio->bi_size)) {
1244 submit_bio(rw, bio);
1245 if (size)
1246 goto next_chunk;
1247 } else {
1248 bio_put(bio);
Nathan Scottce8e9222006-01-11 15:39:08 +11001249 xfs_buf_ioerror(bp, EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
1251}
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253int
Nathan Scottce8e9222006-01-11 15:39:08 +11001254xfs_buf_iorequest(
1255 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
Nathan Scottce8e9222006-01-11 15:39:08 +11001257 XB_TRACE(bp, "iorequest", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Nathan Scottce8e9222006-01-11 15:39:08 +11001259 if (bp->b_flags & XBF_DELWRI) {
1260 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 return 0;
1262 }
1263
Nathan Scottce8e9222006-01-11 15:39:08 +11001264 if (bp->b_flags & XBF_WRITE) {
1265 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
1267
Nathan Scottce8e9222006-01-11 15:39:08 +11001268 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 /* Set the count to 1 initially, this will stop an I/O
1271 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001272 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001274 atomic_set(&bp->b_io_remaining, 1);
1275 _xfs_buf_ioapply(bp);
1276 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Nathan Scottce8e9222006-01-11 15:39:08 +11001278 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return 0;
1280}
1281
1282/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001283 * Waits for I/O to complete on the buffer supplied.
1284 * It returns immediately if no I/O is pending.
1285 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 */
1287int
Nathan Scottce8e9222006-01-11 15:39:08 +11001288xfs_buf_iowait(
1289 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Nathan Scottce8e9222006-01-11 15:39:08 +11001291 XB_TRACE(bp, "iowait", 0);
1292 if (atomic_read(&bp->b_io_remaining))
1293 blk_run_address_space(bp->b_target->bt_mapping);
1294 down(&bp->b_iodonesema);
1295 XB_TRACE(bp, "iowaited", (long)bp->b_error);
1296 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
Nathan Scottce8e9222006-01-11 15:39:08 +11001299xfs_caddr_t
1300xfs_buf_offset(
1301 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 size_t offset)
1303{
1304 struct page *page;
1305
Nathan Scottce8e9222006-01-11 15:39:08 +11001306 if (bp->b_flags & XBF_MAPPED)
1307 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Nathan Scottce8e9222006-01-11 15:39:08 +11001309 offset += bp->b_offset;
1310 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1311 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312}
1313
1314/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 * Move data into or out of a buffer.
1316 */
1317void
Nathan Scottce8e9222006-01-11 15:39:08 +11001318xfs_buf_iomove(
1319 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 size_t boff, /* starting buffer offset */
1321 size_t bsize, /* length to copy */
1322 caddr_t data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001323 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
1325 size_t bend, cpoff, csize;
1326 struct page *page;
1327
1328 bend = boff + bsize;
1329 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001330 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1331 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001333 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1336
1337 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001338 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 memset(page_address(page) + cpoff, 0, csize);
1340 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001341 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 memcpy(data, page_address(page) + cpoff, csize);
1343 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001344 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 memcpy(page_address(page) + cpoff, data, csize);
1346 }
1347
1348 boff += csize;
1349 data += csize;
1350 }
1351}
1352
1353/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001354 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 */
1356
1357/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001358 * Wait for any bufs with callbacks that have been submitted but
1359 * have not yet returned... walk the hash list for the target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 */
1361void
1362xfs_wait_buftarg(
1363 xfs_buftarg_t *btp)
1364{
1365 xfs_buf_t *bp, *n;
1366 xfs_bufhash_t *hash;
1367 uint i;
1368
1369 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1370 hash = &btp->bt_hash[i];
1371again:
1372 spin_lock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001373 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
1374 ASSERT(btp == bp->b_target);
1375 if (!(bp->b_flags & XBF_FS_MANAGED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 spin_unlock(&hash->bh_lock);
David Chinner2f926582005-09-05 08:33:35 +10001377 /*
1378 * Catch superblock reference count leaks
1379 * immediately
1380 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001381 BUG_ON(bp->b_bn == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 delay(100);
1383 goto again;
1384 }
1385 }
1386 spin_unlock(&hash->bh_lock);
1387 }
1388}
1389
1390/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001391 * Allocate buffer hash table for a given target.
1392 * For devices containing metadata (i.e. not the log/realtime devices)
1393 * we need to allocate a much larger hash table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 */
1395STATIC void
1396xfs_alloc_bufhash(
1397 xfs_buftarg_t *btp,
1398 int external)
1399{
1400 unsigned int i;
1401
1402 btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */
1403 btp->bt_hashmask = (1 << btp->bt_hashshift) - 1;
1404 btp->bt_hash = kmem_zalloc((1 << btp->bt_hashshift) *
Vlad Apostolov93c189c2006-11-11 18:03:49 +11001405 sizeof(xfs_bufhash_t), KM_SLEEP | KM_LARGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1407 spin_lock_init(&btp->bt_hash[i].bh_lock);
1408 INIT_LIST_HEAD(&btp->bt_hash[i].bh_list);
1409 }
1410}
1411
1412STATIC void
1413xfs_free_bufhash(
1414 xfs_buftarg_t *btp)
1415{
Nathan Scottce8e9222006-01-11 15:39:08 +11001416 kmem_free(btp->bt_hash, (1<<btp->bt_hashshift) * sizeof(xfs_bufhash_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 btp->bt_hash = NULL;
1418}
1419
David Chinnera6867a62006-01-11 15:37:58 +11001420/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001421 * buftarg list for delwrite queue processing
David Chinnera6867a62006-01-11 15:37:58 +11001422 */
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001423static LIST_HEAD(xfs_buftarg_list);
David Chinner7989cb82007-02-10 18:34:56 +11001424static DEFINE_SPINLOCK(xfs_buftarg_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001425
1426STATIC void
1427xfs_register_buftarg(
1428 xfs_buftarg_t *btp)
1429{
1430 spin_lock(&xfs_buftarg_lock);
1431 list_add(&btp->bt_list, &xfs_buftarg_list);
1432 spin_unlock(&xfs_buftarg_lock);
1433}
1434
1435STATIC void
1436xfs_unregister_buftarg(
1437 xfs_buftarg_t *btp)
1438{
1439 spin_lock(&xfs_buftarg_lock);
1440 list_del(&btp->bt_list);
1441 spin_unlock(&xfs_buftarg_lock);
1442}
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444void
1445xfs_free_buftarg(
1446 xfs_buftarg_t *btp,
1447 int external)
1448{
1449 xfs_flush_buftarg(btp, 1);
David Chinnerf4a9f282007-06-05 16:24:27 +10001450 xfs_blkdev_issue_flush(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (external)
Nathan Scottce8e9222006-01-11 15:39:08 +11001452 xfs_blkdev_put(btp->bt_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 xfs_free_bufhash(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001454 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001455
Nathan Scottce8e9222006-01-11 15:39:08 +11001456 /* Unregister the buftarg first so that we don't get a
1457 * wakeup finding a non-existent task
1458 */
David Chinnera6867a62006-01-11 15:37:58 +11001459 xfs_unregister_buftarg(btp);
1460 kthread_stop(btp->bt_task);
1461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 kmem_free(btp, sizeof(*btp));
1463}
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465STATIC int
1466xfs_setsize_buftarg_flags(
1467 xfs_buftarg_t *btp,
1468 unsigned int blocksize,
1469 unsigned int sectorsize,
1470 int verbose)
1471{
Nathan Scottce8e9222006-01-11 15:39:08 +11001472 btp->bt_bsize = blocksize;
1473 btp->bt_sshift = ffs(sectorsize) - 1;
1474 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Nathan Scottce8e9222006-01-11 15:39:08 +11001476 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 printk(KERN_WARNING
1478 "XFS: Cannot set_blocksize to %u on device %s\n",
1479 sectorsize, XFS_BUFTARG_NAME(btp));
1480 return EINVAL;
1481 }
1482
1483 if (verbose &&
1484 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1485 printk(KERN_WARNING
1486 "XFS: %u byte sectors in use on device %s. "
1487 "This is suboptimal; %u or greater is ideal.\n",
1488 sectorsize, XFS_BUFTARG_NAME(btp),
1489 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1490 }
1491
1492 return 0;
1493}
1494
1495/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001496 * When allocating the initial buffer target we have not yet
1497 * read in the superblock, so don't know what sized sectors
1498 * are being used is at this early stage. Play safe.
1499 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500STATIC int
1501xfs_setsize_buftarg_early(
1502 xfs_buftarg_t *btp,
1503 struct block_device *bdev)
1504{
1505 return xfs_setsize_buftarg_flags(btp,
1506 PAGE_CACHE_SIZE, bdev_hardsect_size(bdev), 0);
1507}
1508
1509int
1510xfs_setsize_buftarg(
1511 xfs_buftarg_t *btp,
1512 unsigned int blocksize,
1513 unsigned int sectorsize)
1514{
1515 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1516}
1517
1518STATIC int
1519xfs_mapping_buftarg(
1520 xfs_buftarg_t *btp,
1521 struct block_device *bdev)
1522{
1523 struct backing_dev_info *bdi;
1524 struct inode *inode;
1525 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001526 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001528 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 };
1530
1531 inode = new_inode(bdev->bd_inode->i_sb);
1532 if (!inode) {
1533 printk(KERN_WARNING
1534 "XFS: Cannot allocate mapping inode for device %s\n",
1535 XFS_BUFTARG_NAME(btp));
1536 return ENOMEM;
1537 }
1538 inode->i_mode = S_IFBLK;
1539 inode->i_bdev = bdev;
1540 inode->i_rdev = bdev->bd_dev;
1541 bdi = blk_get_backing_dev_info(bdev);
1542 if (!bdi)
1543 bdi = &default_backing_dev_info;
1544 mapping = &inode->i_data;
1545 mapping->a_ops = &mapping_aops;
1546 mapping->backing_dev_info = bdi;
1547 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001548 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return 0;
1550}
1551
David Chinnera6867a62006-01-11 15:37:58 +11001552STATIC int
1553xfs_alloc_delwrite_queue(
1554 xfs_buftarg_t *btp)
1555{
1556 int error = 0;
1557
1558 INIT_LIST_HEAD(&btp->bt_list);
1559 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
1560 spinlock_init(&btp->bt_delwrite_lock, "delwri_lock");
1561 btp->bt_flags = 0;
1562 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd");
1563 if (IS_ERR(btp->bt_task)) {
1564 error = PTR_ERR(btp->bt_task);
1565 goto out_error;
1566 }
1567 xfs_register_buftarg(btp);
1568out_error:
1569 return error;
1570}
1571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572xfs_buftarg_t *
1573xfs_alloc_buftarg(
1574 struct block_device *bdev,
1575 int external)
1576{
1577 xfs_buftarg_t *btp;
1578
1579 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1580
Nathan Scottce8e9222006-01-11 15:39:08 +11001581 btp->bt_dev = bdev->bd_dev;
1582 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (xfs_setsize_buftarg_early(btp, bdev))
1584 goto error;
1585 if (xfs_mapping_buftarg(btp, bdev))
1586 goto error;
David Chinnera6867a62006-01-11 15:37:58 +11001587 if (xfs_alloc_delwrite_queue(btp))
1588 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 xfs_alloc_bufhash(btp, external);
1590 return btp;
1591
1592error:
1593 kmem_free(btp, sizeof(*btp));
1594 return NULL;
1595}
1596
1597
1598/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001599 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001602xfs_buf_delwri_queue(
1603 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 int unlock)
1605{
Nathan Scottce8e9222006-01-11 15:39:08 +11001606 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1607 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001608
Nathan Scottce8e9222006-01-11 15:39:08 +11001609 XB_TRACE(bp, "delwri_q", (long)unlock);
1610 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
David Chinnera6867a62006-01-11 15:37:58 +11001612 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001614 if (!list_empty(&bp->b_list)) {
1615 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1616 if (unlock)
1617 atomic_dec(&bp->b_hold);
1618 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 }
1620
Nathan Scottce8e9222006-01-11 15:39:08 +11001621 bp->b_flags |= _XBF_DELWRI_Q;
1622 list_add_tail(&bp->b_list, dwq);
1623 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001624 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001627 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
1630void
Nathan Scottce8e9222006-01-11 15:39:08 +11001631xfs_buf_delwri_dequeue(
1632 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633{
Nathan Scottce8e9222006-01-11 15:39:08 +11001634 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 int dequeued = 0;
1636
David Chinnera6867a62006-01-11 15:37:58 +11001637 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001638 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1639 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1640 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 dequeued = 1;
1642 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001643 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001644 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001647 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Nathan Scottce8e9222006-01-11 15:39:08 +11001649 XB_TRACE(bp, "delwri_dq", (long)dequeued);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650}
1651
1652STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001653xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 struct workqueue_struct *queue)
1655{
1656 flush_workqueue(queue);
1657}
1658
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001660xfsbufd_wakeup(
Nathan Scott15c84a42005-11-04 10:51:01 +11001661 int priority,
1662 gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001664 xfs_buftarg_t *btp;
David Chinnera6867a62006-01-11 15:37:58 +11001665
1666 spin_lock(&xfs_buftarg_lock);
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001667 list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001668 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
David Chinnera6867a62006-01-11 15:37:58 +11001669 continue;
Nathan Scottce8e9222006-01-11 15:39:08 +11001670 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
David Chinnera6867a62006-01-11 15:37:58 +11001671 wake_up_process(btp->bt_task);
1672 }
1673 spin_unlock(&xfs_buftarg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 return 0;
1675}
1676
David Chinner585e6d82007-02-10 18:32:29 +11001677/*
1678 * Move as many buffers as specified to the supplied list
1679 * idicating if we skipped any buffers to prevent deadlocks.
1680 */
1681STATIC int
1682xfs_buf_delwri_split(
1683 xfs_buftarg_t *target,
1684 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001685 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001686{
1687 xfs_buf_t *bp, *n;
1688 struct list_head *dwq = &target->bt_delwrite_queue;
1689 spinlock_t *dwlk = &target->bt_delwrite_lock;
1690 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001691 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001692
David Chinner5e6a07d2007-02-10 18:34:49 +11001693 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001694 INIT_LIST_HEAD(list);
1695 spin_lock(dwlk);
1696 list_for_each_entry_safe(bp, n, dwq, b_list) {
1697 XB_TRACE(bp, "walkq1", (long)xfs_buf_ispin(bp));
1698 ASSERT(bp->b_flags & XBF_DELWRI);
1699
1700 if (!xfs_buf_ispin(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001701 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001702 time_before(jiffies, bp->b_queuetime + age)) {
1703 xfs_buf_unlock(bp);
1704 break;
1705 }
1706
1707 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1708 _XBF_RUN_QUEUES);
1709 bp->b_flags |= XBF_WRITE;
1710 list_move_tail(&bp->b_list, list);
1711 } else
1712 skipped++;
1713 }
1714 spin_unlock(dwlk);
1715
1716 return skipped;
1717
1718}
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001721xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001722 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
David Chinner585e6d82007-02-10 18:32:29 +11001724 struct list_head tmp;
1725 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
1726 int count;
1727 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 current->flags |= PF_MEMALLOC;
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 do {
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001732 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001733 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001734 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001735 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001736 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Nathan Scott15c84a42005-11-04 10:51:01 +11001739 schedule_timeout_interruptible(
1740 xfs_buf_timer_centisecs * msecs_to_jiffies(10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
David Chinner585e6d82007-02-10 18:32:29 +11001742 xfs_buf_delwri_split(target, &tmp,
David Chinner5e6a07d2007-02-10 18:34:49 +11001743 xfs_buf_age_centisecs * msecs_to_jiffies(10));
David Chinner585e6d82007-02-10 18:32:29 +11001744
Nathan Scottf07c2252006-09-28 10:52:15 +10001745 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001747 bp = list_entry(tmp.next, xfs_buf_t, b_list);
1748 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Nathan Scottce8e9222006-01-11 15:39:08 +11001750 list_del_init(&bp->b_list);
1751 xfs_buf_iostrategy(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001752 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 }
1754
1755 if (as_list_len > 0)
1756 purge_addresses();
Nathan Scottf07c2252006-09-28 10:52:15 +10001757 if (count)
1758 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001760 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763}
1764
1765/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001766 * Go through all incore buffers, and release buffers if they belong to
1767 * the given device. This is used in filesystem error handling to
1768 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 */
1770int
1771xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001772 xfs_buftarg_t *target,
1773 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
David Chinner585e6d82007-02-10 18:32:29 +11001775 struct list_head tmp;
1776 xfs_buf_t *bp, *n;
1777 int pincount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Nathan Scottce8e9222006-01-11 15:39:08 +11001779 xfs_buf_runall_queues(xfsdatad_workqueue);
1780 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
David Chinner5e6a07d2007-02-10 18:34:49 +11001782 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
1783 pincount = xfs_buf_delwri_split(target, &tmp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
1785 /*
1786 * Dropped the delayed write list lock, now walk the temporary list
1787 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001788 list_for_each_entry_safe(bp, n, &tmp, b_list) {
David Chinner585e6d82007-02-10 18:32:29 +11001789 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (wait)
Nathan Scottce8e9222006-01-11 15:39:08 +11001791 bp->b_flags &= ~XBF_ASYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 else
Nathan Scottce8e9222006-01-11 15:39:08 +11001793 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Nathan Scottce8e9222006-01-11 15:39:08 +11001795 xfs_buf_iostrategy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 }
1797
Nathan Scottf07c2252006-09-28 10:52:15 +10001798 if (wait)
1799 blk_run_address_space(target->bt_mapping);
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 /*
1802 * Remaining list items must be flushed before returning
1803 */
1804 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001805 bp = list_entry(tmp.next, xfs_buf_t, b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Nathan Scottce8e9222006-01-11 15:39:08 +11001807 list_del_init(&bp->b_list);
1808 xfs_iowait(bp);
1809 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
1811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 return pincount;
1813}
1814
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001815int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001816xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
Nathan Scottce8e9222006-01-11 15:39:08 +11001818#ifdef XFS_BUF_TRACE
1819 xfs_buf_trace_buf = ktrace_alloc(XFS_BUF_TRACE_SIZE, KM_SLEEP);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001820#endif
1821
Nathan Scott87582802006-03-14 13:18:19 +11001822 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1823 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001824 if (!xfs_buf_zone)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001825 goto out_free_trace_buf;
1826
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001827 xfslogd_workqueue = create_workqueue("xfslogd");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001828 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001829 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001831 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001832 if (!xfsdatad_workqueue)
1833 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Andrew Morton3260f782007-05-24 15:25:42 +10001835 xfs_buf_shake = set_shrinker(DEFAULT_SEEKS, xfsbufd_wakeup);
Nathan Scottce8e9222006-01-11 15:39:08 +11001836 if (!xfs_buf_shake)
David Chinnera6867a62006-01-11 15:37:58 +11001837 goto out_destroy_xfsdatad_workqueue;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001838
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001839 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001841 out_destroy_xfsdatad_workqueue:
1842 destroy_workqueue(xfsdatad_workqueue);
1843 out_destroy_xfslogd_workqueue:
1844 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001845 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001846 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001847 out_free_trace_buf:
Nathan Scottce8e9222006-01-11 15:39:08 +11001848#ifdef XFS_BUF_TRACE
1849 ktrace_free(xfs_buf_trace_buf);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001850#endif
Nathan Scott87582802006-03-14 13:18:19 +11001851 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852}
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854void
Nathan Scottce8e9222006-01-11 15:39:08 +11001855xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
Andrew Morton3260f782007-05-24 15:25:42 +10001857 remove_shrinker(xfs_buf_shake);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001858 destroy_workqueue(xfsdatad_workqueue);
1859 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001860 kmem_zone_destroy(xfs_buf_zone);
1861#ifdef XFS_BUF_TRACE
1862 ktrace_free(xfs_buf_trace_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001865
1866#ifdef CONFIG_KDB_MODULES
1867struct list_head *
1868xfs_get_buftarg_list(void)
1869{
1870 return &xfs_buftarg_list;
1871}
1872#endif