blob: 6a75f4d984a1a7ada4efc6148b8b02036f9d4e90 [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;
David Chinnera6867a62006-01-11 15:37:58 +110038STATIC int xfsbufd(void *);
Al Viro27496a82005-10-21 03:20:48 -040039STATIC int xfsbufd_wakeup(int, gfp_t);
Nathan Scottce8e9222006-01-11 15:39:08 +110040STATIC void xfs_buf_delwri_queue(xfs_buf_t *, int);
Rusty Russell8e1f9362007-07-17 04:03:17 -070041static struct shrinker xfs_buf_shake = {
42 .shrink = xfsbufd_wakeup,
43 .seeks = DEFAULT_SEEKS,
44};
Christoph Hellwig23ea4032005-06-21 15:14:01 +100045
David Chinner7989cb82007-02-10 18:34:56 +110046static struct workqueue_struct *xfslogd_workqueue;
Christoph Hellwig0829c362005-09-02 16:58:49 +100047struct workqueue_struct *xfsdatad_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Nathan Scottce8e9222006-01-11 15:39:08 +110049#ifdef XFS_BUF_TRACE
Linus Torvalds1da177e2005-04-16 15:20:36 -070050void
Nathan Scottce8e9222006-01-11 15:39:08 +110051xfs_buf_trace(
52 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 char *id,
54 void *data,
55 void *ra)
56{
Nathan Scottce8e9222006-01-11 15:39:08 +110057 ktrace_enter(xfs_buf_trace_buf,
58 bp, id,
59 (void *)(unsigned long)bp->b_flags,
60 (void *)(unsigned long)bp->b_hold.counter,
61 (void *)(unsigned long)bp->b_sema.count.counter,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 (void *)current,
63 data, ra,
Nathan Scottce8e9222006-01-11 15:39:08 +110064 (void *)(unsigned long)((bp->b_file_offset>>32) & 0xffffffff),
65 (void *)(unsigned long)(bp->b_file_offset & 0xffffffff),
66 (void *)(unsigned long)bp->b_buffer_length,
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 NULL, NULL, NULL, NULL, NULL);
68}
Nathan Scottce8e9222006-01-11 15:39:08 +110069ktrace_t *xfs_buf_trace_buf;
70#define XFS_BUF_TRACE_SIZE 4096
71#define XB_TRACE(bp, id, data) \
72 xfs_buf_trace(bp, id, (void *)data, (void *)__builtin_return_address(0))
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#else
Nathan Scottce8e9222006-01-11 15:39:08 +110074#define XB_TRACE(bp, id, data) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#endif
76
Nathan Scottce8e9222006-01-11 15:39:08 +110077#ifdef XFS_BUF_LOCK_TRACKING
78# define XB_SET_OWNER(bp) ((bp)->b_last_holder = current->pid)
79# define XB_CLEAR_OWNER(bp) ((bp)->b_last_holder = -1)
80# define XB_GET_OWNER(bp) ((bp)->b_last_holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#else
Nathan Scottce8e9222006-01-11 15:39:08 +110082# define XB_SET_OWNER(bp) do { } while (0)
83# define XB_CLEAR_OWNER(bp) do { } while (0)
84# define XB_GET_OWNER(bp) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#endif
86
Nathan Scottce8e9222006-01-11 15:39:08 +110087#define xb_to_gfp(flags) \
88 ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : \
89 ((flags) & XBF_DONT_BLOCK) ? GFP_NOFS : GFP_KERNEL) | __GFP_NOWARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Nathan Scottce8e9222006-01-11 15:39:08 +110091#define xb_to_km(flags) \
92 (((flags) & XBF_DONT_BLOCK) ? KM_NOFS : KM_SLEEP)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Nathan Scottce8e9222006-01-11 15:39:08 +110094#define xfs_buf_allocate(flags) \
95 kmem_zone_alloc(xfs_buf_zone, xb_to_km(flags))
96#define xfs_buf_deallocate(bp) \
97 kmem_zone_free(xfs_buf_zone, (bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100100 * Page Region interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 *
Nathan Scottce8e9222006-01-11 15:39:08 +1100102 * For pages in filesystems where the blocksize is smaller than the
103 * pagesize, we use the page->private field (long) to hold a bitmap
104 * of uptodate regions within the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 *
Nathan Scottce8e9222006-01-11 15:39:08 +1100106 * Each such region is "bytes per page / bits per long" bytes long.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 *
Nathan Scottce8e9222006-01-11 15:39:08 +1100108 * NBPPR == number-of-bytes-per-page-region
109 * BTOPR == bytes-to-page-region (rounded up)
110 * BTOPRT == bytes-to-page-region-truncated (rounded down)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 */
112#if (BITS_PER_LONG == 32)
113#define PRSHIFT (PAGE_CACHE_SHIFT - 5) /* (32 == 1<<5) */
114#elif (BITS_PER_LONG == 64)
115#define PRSHIFT (PAGE_CACHE_SHIFT - 6) /* (64 == 1<<6) */
116#else
117#error BITS_PER_LONG must be 32 or 64
118#endif
119#define NBPPR (PAGE_CACHE_SIZE/BITS_PER_LONG)
120#define BTOPR(b) (((unsigned int)(b) + (NBPPR - 1)) >> PRSHIFT)
121#define BTOPRT(b) (((unsigned int)(b) >> PRSHIFT))
122
123STATIC unsigned long
124page_region_mask(
125 size_t offset,
126 size_t length)
127{
128 unsigned long mask;
129 int first, final;
130
131 first = BTOPR(offset);
132 final = BTOPRT(offset + length - 1);
133 first = min(first, final);
134
135 mask = ~0UL;
136 mask <<= BITS_PER_LONG - (final - first);
137 mask >>= BITS_PER_LONG - (final);
138
139 ASSERT(offset + length <= PAGE_CACHE_SIZE);
140 ASSERT((final - first) < BITS_PER_LONG && (final - first) >= 0);
141
142 return mask;
143}
144
David Chinner7989cb82007-02-10 18:34:56 +1100145STATIC_INLINE void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146set_page_region(
147 struct page *page,
148 size_t offset,
149 size_t length)
150{
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700151 set_page_private(page,
152 page_private(page) | page_region_mask(offset, length));
153 if (page_private(page) == ~0UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 SetPageUptodate(page);
155}
156
David Chinner7989cb82007-02-10 18:34:56 +1100157STATIC_INLINE int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158test_page_region(
159 struct page *page,
160 size_t offset,
161 size_t length)
162{
163 unsigned long mask = page_region_mask(offset, length);
164
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700165 return (mask && (page_private(page) & mask) == mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
168/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100169 * Mapping of multi-page buffers into contiguous virtual space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
171
172typedef struct a_list {
173 void *vm_addr;
174 struct a_list *next;
175} a_list_t;
176
David Chinner7989cb82007-02-10 18:34:56 +1100177static a_list_t *as_free_head;
178static int as_list_len;
179static DEFINE_SPINLOCK(as_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100182 * Try to batch vunmaps because they are costly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 */
184STATIC void
185free_address(
186 void *addr)
187{
188 a_list_t *aentry;
189
Jeff Dike7b04d712006-04-10 22:53:27 -0700190 aentry = kmalloc(sizeof(a_list_t), GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (likely(aentry)) {
192 spin_lock(&as_lock);
193 aentry->next = as_free_head;
194 aentry->vm_addr = addr;
195 as_free_head = aentry;
196 as_list_len++;
197 spin_unlock(&as_lock);
198 } else {
199 vunmap(addr);
200 }
201}
202
203STATIC void
204purge_addresses(void)
205{
206 a_list_t *aentry, *old;
207
208 if (as_free_head == NULL)
209 return;
210
211 spin_lock(&as_lock);
212 aentry = as_free_head;
213 as_free_head = NULL;
214 as_list_len = 0;
215 spin_unlock(&as_lock);
216
217 while ((old = aentry) != NULL) {
218 vunmap(aentry->vm_addr);
219 aentry = aentry->next;
220 kfree(old);
221 }
222}
223
224/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100225 * Internal xfs_buf_t object manipulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 */
227
228STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100229_xfs_buf_initialize(
230 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 xfs_buftarg_t *target,
Nathan Scott204ab25f2006-01-11 20:50:22 +1100232 xfs_off_t range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 size_t range_length,
Nathan Scottce8e9222006-01-11 15:39:08 +1100234 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100237 * We don't want certain flags to appear in b_flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100239 flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Nathan Scottce8e9222006-01-11 15:39:08 +1100241 memset(bp, 0, sizeof(xfs_buf_t));
242 atomic_set(&bp->b_hold, 1);
243 init_MUTEX_LOCKED(&bp->b_iodonesema);
244 INIT_LIST_HEAD(&bp->b_list);
245 INIT_LIST_HEAD(&bp->b_hash_list);
246 init_MUTEX_LOCKED(&bp->b_sema); /* held, no waiters */
247 XB_SET_OWNER(bp);
248 bp->b_target = target;
249 bp->b_file_offset = range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /*
251 * Set buffer_length and count_desired to the same value initially.
252 * I/O routines should use count_desired, which will be the same in
253 * most cases but may be reset (e.g. XFS recovery).
254 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100255 bp->b_buffer_length = bp->b_count_desired = range_length;
256 bp->b_flags = flags;
257 bp->b_bn = XFS_BUF_DADDR_NULL;
258 atomic_set(&bp->b_pin_count, 0);
259 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Nathan Scottce8e9222006-01-11 15:39:08 +1100261 XFS_STATS_INC(xb_create);
262 XB_TRACE(bp, "initialize", target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100266 * Allocate a page array capable of holding a specified number
267 * of pages, and point the page buf at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 */
269STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100270_xfs_buf_get_pages(
271 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 int page_count,
Nathan Scottce8e9222006-01-11 15:39:08 +1100273 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 /* Make sure that we have a page list */
Nathan Scottce8e9222006-01-11 15:39:08 +1100276 if (bp->b_pages == NULL) {
277 bp->b_offset = xfs_buf_poff(bp->b_file_offset);
278 bp->b_page_count = page_count;
279 if (page_count <= XB_PAGES) {
280 bp->b_pages = bp->b_page_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100282 bp->b_pages = kmem_alloc(sizeof(struct page *) *
283 page_count, xb_to_km(flags));
284 if (bp->b_pages == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return -ENOMEM;
286 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100287 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289 return 0;
290}
291
292/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100293 * Frees b_pages if it was allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 */
295STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100296_xfs_buf_free_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 xfs_buf_t *bp)
298{
Nathan Scottce8e9222006-01-11 15:39:08 +1100299 if (bp->b_pages != bp->b_page_array) {
300 kmem_free(bp->b_pages,
301 bp->b_page_count * sizeof(struct page *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
303}
304
305/*
306 * Releases the specified buffer.
307 *
308 * The modification state of any associated pages is left unchanged.
Nathan Scottce8e9222006-01-11 15:39:08 +1100309 * The buffer most not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * hashed and refcounted buffers
311 */
312void
Nathan Scottce8e9222006-01-11 15:39:08 +1100313xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 xfs_buf_t *bp)
315{
Nathan Scottce8e9222006-01-11 15:39:08 +1100316 XB_TRACE(bp, "free", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Nathan Scottce8e9222006-01-11 15:39:08 +1100318 ASSERT(list_empty(&bp->b_hash_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000320 if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 uint i;
322
Nathan Scottce8e9222006-01-11 15:39:08 +1100323 if ((bp->b_flags & XBF_MAPPED) && (bp->b_page_count > 1))
324 free_address(bp->b_addr - bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Nathan Scott948ecdb2006-09-28 11:03:13 +1000326 for (i = 0; i < bp->b_page_count; i++) {
327 struct page *page = bp->b_pages[i];
328
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000329 if (bp->b_flags & _XBF_PAGE_CACHE)
330 ASSERT(!PagePrivate(page));
Nathan Scott948ecdb2006-09-28 11:03:13 +1000331 page_cache_release(page);
332 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100333 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335
Nathan Scottce8e9222006-01-11 15:39:08 +1100336 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
339/*
340 * Finds all pages for buffer in question and builds it's page list.
341 */
342STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100343_xfs_buf_lookup_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 xfs_buf_t *bp,
345 uint flags)
346{
Nathan Scottce8e9222006-01-11 15:39:08 +1100347 struct address_space *mapping = bp->b_target->bt_mapping;
348 size_t blocksize = bp->b_target->bt_bsize;
349 size_t size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100351 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 unsigned short page_count, i;
353 pgoff_t first;
Nathan Scott204ab25f2006-01-11 20:50:22 +1100354 xfs_off_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 int error;
356
Nathan Scottce8e9222006-01-11 15:39:08 +1100357 end = bp->b_file_offset + bp->b_buffer_length;
358 page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Nathan Scottce8e9222006-01-11 15:39:08 +1100360 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (unlikely(error))
362 return error;
Nathan Scottce8e9222006-01-11 15:39:08 +1100363 bp->b_flags |= _XBF_PAGE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Nathan Scottce8e9222006-01-11 15:39:08 +1100365 offset = bp->b_offset;
366 first = bp->b_file_offset >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Nathan Scottce8e9222006-01-11 15:39:08 +1100368 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 struct page *page;
370 uint retries = 0;
371
372 retry:
373 page = find_or_create_page(mapping, first + i, gfp_mask);
374 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100375 if (flags & XBF_READ_AHEAD) {
376 bp->b_page_count = i;
377 for (i = 0; i < bp->b_page_count; i++)
378 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return -ENOMEM;
380 }
381
382 /*
383 * This could deadlock.
384 *
385 * But until all the XFS lowlevel code is revamped to
386 * handle buffer allocation failures we can't do much.
387 */
388 if (!(++retries % 100))
389 printk(KERN_ERR
390 "XFS: possible memory allocation "
391 "deadlock in %s (mode:0x%x)\n",
392 __FUNCTION__, gfp_mask);
393
Nathan Scottce8e9222006-01-11 15:39:08 +1100394 XFS_STATS_INC(xb_page_retries);
Christoph Hellwig23ea4032005-06-21 15:14:01 +1000395 xfsbufd_wakeup(0, gfp_mask);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700396 congestion_wait(WRITE, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 goto retry;
398 }
399
Nathan Scottce8e9222006-01-11 15:39:08 +1100400 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
403 size -= nbytes;
404
Nathan Scott948ecdb2006-09-28 11:03:13 +1000405 ASSERT(!PagePrivate(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (!PageUptodate(page)) {
407 page_count--;
408 if (blocksize >= PAGE_CACHE_SIZE) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100409 if (flags & XBF_READ)
410 bp->b_locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 } else if (!PagePrivate(page)) {
412 if (test_page_region(page, offset, nbytes))
413 page_count++;
414 }
415 }
416
Nathan Scottce8e9222006-01-11 15:39:08 +1100417 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 offset = 0;
419 }
420
Nathan Scottce8e9222006-01-11 15:39:08 +1100421 if (!bp->b_locked) {
422 for (i = 0; i < bp->b_page_count; i++)
423 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
425
Nathan Scottce8e9222006-01-11 15:39:08 +1100426 if (page_count == bp->b_page_count)
427 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Nathan Scottce8e9222006-01-11 15:39:08 +1100429 XB_TRACE(bp, "lookup_pages", (long)page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return error;
431}
432
433/*
434 * Map buffer into kernel address-space if nessecary.
435 */
436STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100437_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 xfs_buf_t *bp,
439 uint flags)
440{
441 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100442 if (bp->b_page_count == 1) {
443 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
444 bp->b_flags |= XBF_MAPPED;
445 } else if (flags & XBF_MAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (as_list_len > 64)
447 purge_addresses();
Nathan Scottce8e9222006-01-11 15:39:08 +1100448 bp->b_addr = vmap(bp->b_pages, bp->b_page_count,
449 VM_MAP, PAGE_KERNEL);
450 if (unlikely(bp->b_addr == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100452 bp->b_addr += bp->b_offset;
453 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
456 return 0;
457}
458
459/*
460 * Finding and Reading Buffers
461 */
462
463/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100464 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 * a given range of an inode. The buffer is returned
466 * locked. If other overlapping buffers exist, they are
467 * released before the new buffer is created and locked,
468 * which may imply that this call will block until those buffers
469 * are unlocked. No I/O is implied by this call.
470 */
471xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100472_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab25f2006-01-11 20:50:22 +1100474 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100476 xfs_buf_flags_t flags,
477 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Nathan Scott204ab25f2006-01-11 20:50:22 +1100479 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 size_t range_length;
481 xfs_bufhash_t *hash;
Nathan Scottce8e9222006-01-11 15:39:08 +1100482 xfs_buf_t *bp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 range_base = (ioff << BBSHIFT);
485 range_length = (isize << BBSHIFT);
486
487 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100488 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab25f2006-01-11 20:50:22 +1100489 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)];
492
493 spin_lock(&hash->bh_lock);
494
Nathan Scottce8e9222006-01-11 15:39:08 +1100495 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
496 ASSERT(btp == bp->b_target);
497 if (bp->b_file_offset == range_base &&
498 bp->b_buffer_length == range_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100500 * If we look at something, bring it to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 * front of the list for next time.
502 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100503 atomic_inc(&bp->b_hold);
504 list_move(&bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 goto found;
506 }
507 }
508
509 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100510 if (new_bp) {
511 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 range_length, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100513 new_bp->b_hash = hash;
514 list_add(&new_bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100516 XFS_STATS_INC(xb_miss_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518
519 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100520 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522found:
523 spin_unlock(&hash->bh_lock);
524
525 /* Attempt to get the semaphore without sleeping,
526 * if this does not work then we need to drop the
527 * spinlock and do a hard attempt on the semaphore.
528 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100529 if (down_trylock(&bp->b_sema)) {
530 if (!(flags & XBF_TRYLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /* wait for buffer ownership */
Nathan Scottce8e9222006-01-11 15:39:08 +1100532 XB_TRACE(bp, "get_lock", 0);
533 xfs_buf_lock(bp);
534 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 } else {
536 /* We asked for a trylock and failed, no need
537 * to look at file offset and length here, we
Nathan Scottce8e9222006-01-11 15:39:08 +1100538 * know that this buffer at least overlaps our
539 * buffer and is locked, therefore our buffer
540 * either does not exist, or is this buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100542 xfs_buf_rele(bp);
543 XFS_STATS_INC(xb_busy_locked);
544 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
546 } else {
547 /* trylock worked */
Nathan Scottce8e9222006-01-11 15:39:08 +1100548 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550
Nathan Scottce8e9222006-01-11 15:39:08 +1100551 if (bp->b_flags & XBF_STALE) {
552 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
553 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000554 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100555 XB_TRACE(bp, "got_lock", 0);
556 XFS_STATS_INC(xb_get_locked);
557 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
560/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100561 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 * Storage in memory for all portions of the buffer will be allocated,
563 * although backing storage may not be.
564 */
565xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100566xfs_buf_get_flags(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab25f2006-01-11 20:50:22 +1100568 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100570 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Nathan Scottce8e9222006-01-11 15:39:08 +1100572 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 int error = 0, i;
574
Nathan Scottce8e9222006-01-11 15:39:08 +1100575 new_bp = xfs_buf_allocate(flags);
576 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return NULL;
578
Nathan Scottce8e9222006-01-11 15:39:08 +1100579 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
580 if (bp == new_bp) {
581 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (error)
583 goto no_buffer;
584 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100585 xfs_buf_deallocate(new_bp);
586 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return NULL;
588 }
589
Nathan Scottce8e9222006-01-11 15:39:08 +1100590 for (i = 0; i < bp->b_page_count; i++)
591 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Nathan Scottce8e9222006-01-11 15:39:08 +1100593 if (!(bp->b_flags & XBF_MAPPED)) {
594 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (unlikely(error)) {
596 printk(KERN_WARNING "%s: failed to map pages\n",
597 __FUNCTION__);
598 goto no_buffer;
599 }
600 }
601
Nathan Scottce8e9222006-01-11 15:39:08 +1100602 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 /*
605 * Always fill in the block number now, the mapped cases can do
606 * their own overlay of this later.
607 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100608 bp->b_bn = ioff;
609 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Nathan Scottce8e9222006-01-11 15:39:08 +1100611 XB_TRACE(bp, "get", (unsigned long)flags);
612 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100615 if (flags & (XBF_LOCK | XBF_TRYLOCK))
616 xfs_buf_unlock(bp);
617 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return NULL;
619}
620
621xfs_buf_t *
622xfs_buf_read_flags(
623 xfs_buftarg_t *target,
Nathan Scott204ab25f2006-01-11 20:50:22 +1100624 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100626 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Nathan Scottce8e9222006-01-11 15:39:08 +1100628 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Nathan Scottce8e9222006-01-11 15:39:08 +1100630 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Nathan Scottce8e9222006-01-11 15:39:08 +1100632 bp = xfs_buf_get_flags(target, ioff, isize, flags);
633 if (bp) {
634 if (!XFS_BUF_ISDONE(bp)) {
635 XB_TRACE(bp, "read", (unsigned long)flags);
636 XFS_STATS_INC(xb_get_read);
637 xfs_buf_iostart(bp, flags);
638 } else if (flags & XBF_ASYNC) {
639 XB_TRACE(bp, "read_async", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 /*
641 * Read ahead call which is already satisfied,
642 * drop the buffer
643 */
644 goto no_buffer;
645 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100646 XB_TRACE(bp, "read_done", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100648 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650 }
651
Nathan Scottce8e9222006-01-11 15:39:08 +1100652 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100655 if (flags & (XBF_LOCK | XBF_TRYLOCK))
656 xfs_buf_unlock(bp);
657 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return NULL;
659}
660
661/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100662 * If we are not low on memory then do the readahead in a deadlock
663 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
665void
Nathan Scottce8e9222006-01-11 15:39:08 +1100666xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 xfs_buftarg_t *target,
Nathan Scott204ab25f2006-01-11 20:50:22 +1100668 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100670 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 struct backing_dev_info *bdi;
673
Nathan Scottce8e9222006-01-11 15:39:08 +1100674 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (bdi_read_congested(bdi))
676 return;
677
Nathan Scottce8e9222006-01-11 15:39:08 +1100678 flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 xfs_buf_read_flags(target, ioff, isize, flags);
680}
681
682xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100683xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 size_t len,
685 xfs_buftarg_t *target)
686{
Nathan Scottce8e9222006-01-11 15:39:08 +1100687 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Nathan Scottce8e9222006-01-11 15:39:08 +1100689 bp = xfs_buf_allocate(0);
690 if (bp)
691 _xfs_buf_initialize(bp, target, 0, len, 0);
692 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
695static inline struct page *
696mem_to_page(
697 void *addr)
698{
699 if (((unsigned long)addr < VMALLOC_START) ||
700 ((unsigned long)addr >= VMALLOC_END)) {
701 return virt_to_page(addr);
702 } else {
703 return vmalloc_to_page(addr);
704 }
705}
706
707int
Nathan Scottce8e9222006-01-11 15:39:08 +1100708xfs_buf_associate_memory(
709 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 void *mem,
711 size_t len)
712{
713 int rval;
714 int i = 0;
715 size_t ptr;
716 size_t end, end_cur;
717 off_t offset;
718 int page_count;
719
720 page_count = PAGE_CACHE_ALIGN(len) >> PAGE_CACHE_SHIFT;
721 offset = (off_t) mem - ((off_t)mem & PAGE_CACHE_MASK);
722 if (offset && (len > PAGE_CACHE_SIZE))
723 page_count++;
724
725 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100726 if (bp->b_pages)
727 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Nathan Scottce8e9222006-01-11 15:39:08 +1100729 bp->b_pages = NULL;
730 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Nathan Scottce8e9222006-01-11 15:39:08 +1100732 rval = _xfs_buf_get_pages(bp, page_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (rval)
734 return rval;
735
Nathan Scottce8e9222006-01-11 15:39:08 +1100736 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 ptr = (size_t) mem & PAGE_CACHE_MASK;
738 end = PAGE_CACHE_ALIGN((size_t) mem + len);
739 end_cur = end;
740 /* set up first page */
Nathan Scottce8e9222006-01-11 15:39:08 +1100741 bp->b_pages[0] = mem_to_page(mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 ptr += PAGE_CACHE_SIZE;
Nathan Scottce8e9222006-01-11 15:39:08 +1100744 bp->b_page_count = ++i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 while (ptr < end) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100746 bp->b_pages[i] = mem_to_page((void *)ptr);
747 bp->b_page_count = ++i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 ptr += PAGE_CACHE_SIZE;
749 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100750 bp->b_locked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Nathan Scottce8e9222006-01-11 15:39:08 +1100752 bp->b_count_desired = bp->b_buffer_length = len;
753 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 return 0;
756}
757
758xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100759xfs_buf_get_noaddr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 size_t len,
761 xfs_buftarg_t *target)
762{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000763 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
764 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Nathan Scottce8e9222006-01-11 15:39:08 +1100767 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 if (unlikely(bp == NULL))
769 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100770 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000772 error = _xfs_buf_get_pages(bp, page_count, 0);
773 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 goto fail_free_buf;
775
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000776 for (i = 0; i < page_count; i++) {
777 bp->b_pages[i] = alloc_page(GFP_KERNEL);
778 if (!bp->b_pages[i])
779 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000781 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000783 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
784 if (unlikely(error)) {
785 printk(KERN_WARNING "%s: failed to map pages\n",
786 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Nathan Scottce8e9222006-01-11 15:39:08 +1100790 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000792 XB_TRACE(bp, "no_daddr", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000796 while (--i >= 0)
797 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000798 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000800 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 fail:
802 return NULL;
803}
804
805/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 * Increment reference count on buffer, to hold the buffer concurrently
807 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 * Must hold the buffer already to call this function.
809 */
810void
Nathan Scottce8e9222006-01-11 15:39:08 +1100811xfs_buf_hold(
812 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Nathan Scottce8e9222006-01-11 15:39:08 +1100814 atomic_inc(&bp->b_hold);
815 XB_TRACE(bp, "hold", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
818/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100819 * Releases a hold on the specified buffer. If the
820 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 */
822void
Nathan Scottce8e9222006-01-11 15:39:08 +1100823xfs_buf_rele(
824 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Nathan Scottce8e9222006-01-11 15:39:08 +1100826 xfs_bufhash_t *hash = bp->b_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Nathan Scottce8e9222006-01-11 15:39:08 +1100828 XB_TRACE(bp, "rele", bp->b_relse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Nathan Scottfad3aa12006-02-01 12:14:52 +1100830 if (unlikely(!hash)) {
831 ASSERT(!bp->b_relse);
832 if (atomic_dec_and_test(&bp->b_hold))
833 xfs_buf_free(bp);
834 return;
835 }
836
Nathan Scottce8e9222006-01-11 15:39:08 +1100837 if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) {
838 if (bp->b_relse) {
839 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100841 (*(bp->b_relse)) (bp);
842 } else if (bp->b_flags & XBF_FS_MANAGED) {
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100843 spin_unlock(&hash->bh_lock);
844 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100845 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
846 list_del_init(&bp->b_hash_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100848 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
David Chinner2f926582005-09-05 08:33:35 +1000850 } else {
851 /*
852 * Catch reference count leaks
853 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100854 ASSERT(atomic_read(&bp->b_hold) >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856}
857
858
859/*
860 * Mutual exclusion on buffers. Locking model:
861 *
862 * Buffers associated with inodes for which buffer locking
863 * is not enabled are not protected by semaphores, and are
864 * assumed to be exclusively owned by the caller. There is a
865 * spinlock in the buffer, used by the caller when concurrent
866 * access is possible.
867 */
868
869/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100870 * Locks a buffer object, if it is not already locked.
871 * Note that this in no way locks the underlying pages, so it is only
872 * useful for synchronizing concurrent use of buffer objects, not for
873 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 */
875int
Nathan Scottce8e9222006-01-11 15:39:08 +1100876xfs_buf_cond_lock(
877 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
879 int locked;
880
Nathan Scottce8e9222006-01-11 15:39:08 +1100881 locked = down_trylock(&bp->b_sema) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (locked) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100883 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100885 XB_TRACE(bp, "cond_lock", (long)locked);
886 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
889#if defined(DEBUG) || defined(XFS_BLI_TRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890int
Nathan Scottce8e9222006-01-11 15:39:08 +1100891xfs_buf_lock_value(
892 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Nathan Scottce8e9222006-01-11 15:39:08 +1100894 return atomic_read(&bp->b_sema.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896#endif
897
898/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100899 * Locks a buffer object.
900 * Note that this in no way locks the underlying pages, so it is only
901 * useful for synchronizing concurrent use of buffer objects, not for
902 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100904void
905xfs_buf_lock(
906 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Nathan Scottce8e9222006-01-11 15:39:08 +1100908 XB_TRACE(bp, "lock", 0);
909 if (atomic_read(&bp->b_io_remaining))
910 blk_run_address_space(bp->b_target->bt_mapping);
911 down(&bp->b_sema);
912 XB_SET_OWNER(bp);
913 XB_TRACE(bp, "locked", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
916/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100917 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000918 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100919 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000920 * take a reference for the delwri queue because the unlocker is going to
921 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 */
923void
Nathan Scottce8e9222006-01-11 15:39:08 +1100924xfs_buf_unlock(
925 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Nathan Scottce8e9222006-01-11 15:39:08 +1100927 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
928 atomic_inc(&bp->b_hold);
929 bp->b_flags |= XBF_ASYNC;
930 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000931 }
932
Nathan Scottce8e9222006-01-11 15:39:08 +1100933 XB_CLEAR_OWNER(bp);
934 up(&bp->b_sema);
935 XB_TRACE(bp, "unlock", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
938
939/*
940 * Pinning Buffer Storage in Memory
Nathan Scottce8e9222006-01-11 15:39:08 +1100941 * Ensure that no attempt to force a buffer to disk will succeed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 */
943void
Nathan Scottce8e9222006-01-11 15:39:08 +1100944xfs_buf_pin(
945 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Nathan Scottce8e9222006-01-11 15:39:08 +1100947 atomic_inc(&bp->b_pin_count);
948 XB_TRACE(bp, "pin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951void
Nathan Scottce8e9222006-01-11 15:39:08 +1100952xfs_buf_unpin(
953 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Nathan Scottce8e9222006-01-11 15:39:08 +1100955 if (atomic_dec_and_test(&bp->b_pin_count))
956 wake_up_all(&bp->b_waiters);
957 XB_TRACE(bp, "unpin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
960int
Nathan Scottce8e9222006-01-11 15:39:08 +1100961xfs_buf_ispin(
962 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
Nathan Scottce8e9222006-01-11 15:39:08 +1100964 return atomic_read(&bp->b_pin_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
Nathan Scottce8e9222006-01-11 15:39:08 +1100967STATIC void
968xfs_buf_wait_unpin(
969 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
971 DECLARE_WAITQUEUE (wait, current);
972
Nathan Scottce8e9222006-01-11 15:39:08 +1100973 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 return;
975
Nathan Scottce8e9222006-01-11 15:39:08 +1100976 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 for (;;) {
978 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100979 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 break;
Nathan Scottce8e9222006-01-11 15:39:08 +1100981 if (atomic_read(&bp->b_io_remaining))
982 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 schedule();
984 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100985 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 set_current_state(TASK_RUNNING);
987}
988
989/*
990 * Buffer Utility Routines
991 */
992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100994xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +0000995 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
David Howellsc4028952006-11-22 14:57:56 +0000997 xfs_buf_t *bp =
998 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Nathan Scottce8e9222006-01-11 15:39:08 +11001000 if (bp->b_iodone)
1001 (*(bp->b_iodone))(bp);
1002 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 xfs_buf_relse(bp);
1004}
1005
1006void
Nathan Scottce8e9222006-01-11 15:39:08 +11001007xfs_buf_ioend(
1008 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 int schedule)
1010{
Nathan Scottce8e9222006-01-11 15:39:08 +11001011 bp->b_flags &= ~(XBF_READ | XBF_WRITE);
1012 if (bp->b_error == 0)
1013 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Nathan Scottce8e9222006-01-11 15:39:08 +11001015 XB_TRACE(bp, "iodone", bp->b_iodone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Nathan Scottce8e9222006-01-11 15:39:08 +11001017 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001019 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001020 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 } else {
David Howellsc4028952006-11-22 14:57:56 +00001022 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
1024 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001025 up(&bp->b_iodonesema);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027}
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029void
Nathan Scottce8e9222006-01-11 15:39:08 +11001030xfs_buf_ioerror(
1031 xfs_buf_t *bp,
1032 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
1034 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001035 bp->b_error = (unsigned short)error;
1036 XB_TRACE(bp, "ioerror", (unsigned long)error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038
1039/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001040 * Initiate I/O on a buffer, based on the flags supplied.
1041 * The b_iodone routine in the buffer supplied will only be called
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 * when all of the subsidiary I/O requests, if any, have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 */
1044int
Nathan Scottce8e9222006-01-11 15:39:08 +11001045xfs_buf_iostart(
1046 xfs_buf_t *bp,
1047 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 int status = 0;
1050
Nathan Scottce8e9222006-01-11 15:39:08 +11001051 XB_TRACE(bp, "iostart", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Nathan Scottce8e9222006-01-11 15:39:08 +11001053 if (flags & XBF_DELWRI) {
1054 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC);
1055 bp->b_flags |= flags & (XBF_DELWRI | XBF_ASYNC);
1056 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return status;
1058 }
1059
Nathan Scottce8e9222006-01-11 15:39:08 +11001060 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
1061 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
1062 bp->b_flags |= flags & (XBF_READ | XBF_WRITE | XBF_ASYNC | \
1063 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Nathan Scottce8e9222006-01-11 15:39:08 +11001065 BUG_ON(bp->b_bn == XFS_BUF_DADDR_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 /* For writes allow an alternate strategy routine to precede
1068 * the actual I/O request (which may not be issued at all in
1069 * a shutdown situation, for example).
1070 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001071 status = (flags & XBF_WRITE) ?
1072 xfs_buf_iostrategy(bp) : xfs_buf_iorequest(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 /* Wait for I/O if we are not an async request.
1075 * Note: async I/O request completion will release the buffer,
1076 * and that can already be done by this point. So using the
1077 * buffer pointer from here on, after async I/O, is invalid.
1078 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001079 if (!status && !(flags & XBF_ASYNC))
1080 status = xfs_buf_iowait(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 return status;
1083}
1084
David Chinner7989cb82007-02-10 18:34:56 +11001085STATIC_INLINE int
Nathan Scottce8e9222006-01-11 15:39:08 +11001086_xfs_buf_iolocked(
1087 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Nathan Scottce8e9222006-01-11 15:39:08 +11001089 ASSERT(bp->b_flags & (XBF_READ | XBF_WRITE));
1090 if (bp->b_flags & XBF_READ)
1091 return bp->b_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 return 0;
1093}
1094
David Chinner7989cb82007-02-10 18:34:56 +11001095STATIC_INLINE void
Nathan Scottce8e9222006-01-11 15:39:08 +11001096_xfs_buf_ioend(
1097 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 int schedule)
1099{
Nathan Scottce8e9222006-01-11 15:39:08 +11001100 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1101 bp->b_locked = 0;
1102 xfs_buf_ioend(bp, schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
1104}
1105
1106STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +11001107xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 int error)
1110{
Nathan Scottce8e9222006-01-11 15:39:08 +11001111 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1112 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001113 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 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);
David Chinnerf4a9f282007-06-05 16:24:27 +10001449 xfs_blkdev_issue_flush(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 if (external)
Nathan Scottce8e9222006-01-11 15:39:08 +11001451 xfs_blkdev_put(btp->bt_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 xfs_free_bufhash(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001453 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001454
Nathan Scottce8e9222006-01-11 15:39:08 +11001455 /* Unregister the buftarg first so that we don't get a
1456 * wakeup finding a non-existent task
1457 */
David Chinnera6867a62006-01-11 15:37:58 +11001458 xfs_unregister_buftarg(btp);
1459 kthread_stop(btp->bt_task);
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 kmem_free(btp, sizeof(*btp));
1462}
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464STATIC int
1465xfs_setsize_buftarg_flags(
1466 xfs_buftarg_t *btp,
1467 unsigned int blocksize,
1468 unsigned int sectorsize,
1469 int verbose)
1470{
Nathan Scottce8e9222006-01-11 15:39:08 +11001471 btp->bt_bsize = blocksize;
1472 btp->bt_sshift = ffs(sectorsize) - 1;
1473 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Nathan Scottce8e9222006-01-11 15:39:08 +11001475 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 printk(KERN_WARNING
1477 "XFS: Cannot set_blocksize to %u on device %s\n",
1478 sectorsize, XFS_BUFTARG_NAME(btp));
1479 return EINVAL;
1480 }
1481
1482 if (verbose &&
1483 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1484 printk(KERN_WARNING
1485 "XFS: %u byte sectors in use on device %s. "
1486 "This is suboptimal; %u or greater is ideal.\n",
1487 sectorsize, XFS_BUFTARG_NAME(btp),
1488 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1489 }
1490
1491 return 0;
1492}
1493
1494/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001495 * When allocating the initial buffer target we have not yet
1496 * read in the superblock, so don't know what sized sectors
1497 * are being used is at this early stage. Play safe.
1498 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499STATIC int
1500xfs_setsize_buftarg_early(
1501 xfs_buftarg_t *btp,
1502 struct block_device *bdev)
1503{
1504 return xfs_setsize_buftarg_flags(btp,
1505 PAGE_CACHE_SIZE, bdev_hardsect_size(bdev), 0);
1506}
1507
1508int
1509xfs_setsize_buftarg(
1510 xfs_buftarg_t *btp,
1511 unsigned int blocksize,
1512 unsigned int sectorsize)
1513{
1514 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1515}
1516
1517STATIC int
1518xfs_mapping_buftarg(
1519 xfs_buftarg_t *btp,
1520 struct block_device *bdev)
1521{
1522 struct backing_dev_info *bdi;
1523 struct inode *inode;
1524 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001525 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001527 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 };
1529
1530 inode = new_inode(bdev->bd_inode->i_sb);
1531 if (!inode) {
1532 printk(KERN_WARNING
1533 "XFS: Cannot allocate mapping inode for device %s\n",
1534 XFS_BUFTARG_NAME(btp));
1535 return ENOMEM;
1536 }
1537 inode->i_mode = S_IFBLK;
1538 inode->i_bdev = bdev;
1539 inode->i_rdev = bdev->bd_dev;
1540 bdi = blk_get_backing_dev_info(bdev);
1541 if (!bdi)
1542 bdi = &default_backing_dev_info;
1543 mapping = &inode->i_data;
1544 mapping->a_ops = &mapping_aops;
1545 mapping->backing_dev_info = bdi;
1546 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001547 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 return 0;
1549}
1550
David Chinnera6867a62006-01-11 15:37:58 +11001551STATIC int
1552xfs_alloc_delwrite_queue(
1553 xfs_buftarg_t *btp)
1554{
1555 int error = 0;
1556
1557 INIT_LIST_HEAD(&btp->bt_list);
1558 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
1559 spinlock_init(&btp->bt_delwrite_lock, "delwri_lock");
1560 btp->bt_flags = 0;
1561 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd");
1562 if (IS_ERR(btp->bt_task)) {
1563 error = PTR_ERR(btp->bt_task);
1564 goto out_error;
1565 }
1566 xfs_register_buftarg(btp);
1567out_error:
1568 return error;
1569}
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571xfs_buftarg_t *
1572xfs_alloc_buftarg(
1573 struct block_device *bdev,
1574 int external)
1575{
1576 xfs_buftarg_t *btp;
1577
1578 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1579
Nathan Scottce8e9222006-01-11 15:39:08 +11001580 btp->bt_dev = bdev->bd_dev;
1581 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 if (xfs_setsize_buftarg_early(btp, bdev))
1583 goto error;
1584 if (xfs_mapping_buftarg(btp, bdev))
1585 goto error;
David Chinnera6867a62006-01-11 15:37:58 +11001586 if (xfs_alloc_delwrite_queue(btp))
1587 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 xfs_alloc_bufhash(btp, external);
1589 return btp;
1590
1591error:
1592 kmem_free(btp, sizeof(*btp));
1593 return NULL;
1594}
1595
1596
1597/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001598 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001601xfs_buf_delwri_queue(
1602 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 int unlock)
1604{
Nathan Scottce8e9222006-01-11 15:39:08 +11001605 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1606 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001607
Nathan Scottce8e9222006-01-11 15:39:08 +11001608 XB_TRACE(bp, "delwri_q", (long)unlock);
1609 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
David Chinnera6867a62006-01-11 15:37:58 +11001611 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001613 if (!list_empty(&bp->b_list)) {
1614 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1615 if (unlock)
1616 atomic_dec(&bp->b_hold);
1617 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
1619
Nathan Scottce8e9222006-01-11 15:39:08 +11001620 bp->b_flags |= _XBF_DELWRI_Q;
1621 list_add_tail(&bp->b_list, dwq);
1622 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001623 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001626 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
1628
1629void
Nathan Scottce8e9222006-01-11 15:39:08 +11001630xfs_buf_delwri_dequeue(
1631 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632{
Nathan Scottce8e9222006-01-11 15:39:08 +11001633 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 int dequeued = 0;
1635
David Chinnera6867a62006-01-11 15:37:58 +11001636 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001637 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1638 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1639 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 dequeued = 1;
1641 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001642 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001643 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
1645 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001646 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Nathan Scottce8e9222006-01-11 15:39:08 +11001648 XB_TRACE(bp, "delwri_dq", (long)dequeued);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649}
1650
1651STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001652xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 struct workqueue_struct *queue)
1654{
1655 flush_workqueue(queue);
1656}
1657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001659xfsbufd_wakeup(
Nathan Scott15c84a42005-11-04 10:51:01 +11001660 int priority,
1661 gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662{
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001663 xfs_buftarg_t *btp;
David Chinnera6867a62006-01-11 15:37:58 +11001664
1665 spin_lock(&xfs_buftarg_lock);
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001666 list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001667 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
David Chinnera6867a62006-01-11 15:37:58 +11001668 continue;
Nathan Scottce8e9222006-01-11 15:39:08 +11001669 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
David Chinnera6867a62006-01-11 15:37:58 +11001670 wake_up_process(btp->bt_task);
1671 }
1672 spin_unlock(&xfs_buftarg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 return 0;
1674}
1675
David Chinner585e6d82007-02-10 18:32:29 +11001676/*
1677 * Move as many buffers as specified to the supplied list
1678 * idicating if we skipped any buffers to prevent deadlocks.
1679 */
1680STATIC int
1681xfs_buf_delwri_split(
1682 xfs_buftarg_t *target,
1683 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001684 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001685{
1686 xfs_buf_t *bp, *n;
1687 struct list_head *dwq = &target->bt_delwrite_queue;
1688 spinlock_t *dwlk = &target->bt_delwrite_lock;
1689 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001690 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001691
David Chinner5e6a07d2007-02-10 18:34:49 +11001692 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001693 INIT_LIST_HEAD(list);
1694 spin_lock(dwlk);
1695 list_for_each_entry_safe(bp, n, dwq, b_list) {
1696 XB_TRACE(bp, "walkq1", (long)xfs_buf_ispin(bp));
1697 ASSERT(bp->b_flags & XBF_DELWRI);
1698
1699 if (!xfs_buf_ispin(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001700 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001701 time_before(jiffies, bp->b_queuetime + age)) {
1702 xfs_buf_unlock(bp);
1703 break;
1704 }
1705
1706 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1707 _XBF_RUN_QUEUES);
1708 bp->b_flags |= XBF_WRITE;
1709 list_move_tail(&bp->b_list, list);
1710 } else
1711 skipped++;
1712 }
1713 spin_unlock(dwlk);
1714
1715 return skipped;
1716
1717}
1718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001720xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001721 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
David Chinner585e6d82007-02-10 18:32:29 +11001723 struct list_head tmp;
1724 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
1725 int count;
1726 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 current->flags |= PF_MEMALLOC;
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 do {
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001731 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001732 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001733 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001734 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001735 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Nathan Scott15c84a42005-11-04 10:51:01 +11001738 schedule_timeout_interruptible(
1739 xfs_buf_timer_centisecs * msecs_to_jiffies(10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
David Chinner585e6d82007-02-10 18:32:29 +11001741 xfs_buf_delwri_split(target, &tmp,
David Chinner5e6a07d2007-02-10 18:34:49 +11001742 xfs_buf_age_centisecs * msecs_to_jiffies(10));
David Chinner585e6d82007-02-10 18:32:29 +11001743
Nathan Scottf07c2252006-09-28 10:52:15 +10001744 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001746 bp = list_entry(tmp.next, xfs_buf_t, b_list);
1747 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Nathan Scottce8e9222006-01-11 15:39:08 +11001749 list_del_init(&bp->b_list);
1750 xfs_buf_iostrategy(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001751 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 }
1753
1754 if (as_list_len > 0)
1755 purge_addresses();
Nathan Scottf07c2252006-09-28 10:52:15 +10001756 if (count)
1757 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001759 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001761 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
1763
1764/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001765 * Go through all incore buffers, and release buffers if they belong to
1766 * the given device. This is used in filesystem error handling to
1767 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 */
1769int
1770xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001771 xfs_buftarg_t *target,
1772 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
David Chinner585e6d82007-02-10 18:32:29 +11001774 struct list_head tmp;
1775 xfs_buf_t *bp, *n;
1776 int pincount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Nathan Scottce8e9222006-01-11 15:39:08 +11001778 xfs_buf_runall_queues(xfsdatad_workqueue);
1779 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
David Chinner5e6a07d2007-02-10 18:34:49 +11001781 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
1782 pincount = xfs_buf_delwri_split(target, &tmp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 /*
1785 * Dropped the delayed write list lock, now walk the temporary list
1786 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001787 list_for_each_entry_safe(bp, n, &tmp, b_list) {
David Chinner585e6d82007-02-10 18:32:29 +11001788 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 if (wait)
Nathan Scottce8e9222006-01-11 15:39:08 +11001790 bp->b_flags &= ~XBF_ASYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 else
Nathan Scottce8e9222006-01-11 15:39:08 +11001792 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Nathan Scottce8e9222006-01-11 15:39:08 +11001794 xfs_buf_iostrategy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
1796
Nathan Scottf07c2252006-09-28 10:52:15 +10001797 if (wait)
1798 blk_run_address_space(target->bt_mapping);
1799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 /*
1801 * Remaining list items must be flushed before returning
1802 */
1803 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001804 bp = list_entry(tmp.next, xfs_buf_t, b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Nathan Scottce8e9222006-01-11 15:39:08 +11001806 list_del_init(&bp->b_list);
1807 xfs_iowait(bp);
1808 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
1810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 return pincount;
1812}
1813
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001814int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001815xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816{
Nathan Scottce8e9222006-01-11 15:39:08 +11001817#ifdef XFS_BUF_TRACE
1818 xfs_buf_trace_buf = ktrace_alloc(XFS_BUF_TRACE_SIZE, KM_SLEEP);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001819#endif
1820
Nathan Scott87582802006-03-14 13:18:19 +11001821 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1822 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001823 if (!xfs_buf_zone)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001824 goto out_free_trace_buf;
1825
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001826 xfslogd_workqueue = create_workqueue("xfslogd");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001827 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001828 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001830 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001831 if (!xfsdatad_workqueue)
1832 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Rusty Russell8e1f9362007-07-17 04:03:17 -07001834 register_shrinker(&xfs_buf_shake);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001835 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001837 out_destroy_xfslogd_workqueue:
1838 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001839 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001840 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001841 out_free_trace_buf:
Nathan Scottce8e9222006-01-11 15:39:08 +11001842#ifdef XFS_BUF_TRACE
1843 ktrace_free(xfs_buf_trace_buf);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001844#endif
Nathan Scott87582802006-03-14 13:18:19 +11001845 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848void
Nathan Scottce8e9222006-01-11 15:39:08 +11001849xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
Rusty Russell8e1f9362007-07-17 04:03:17 -07001851 unregister_shrinker(&xfs_buf_shake);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001852 destroy_workqueue(xfsdatad_workqueue);
1853 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001854 kmem_zone_destroy(xfs_buf_zone);
1855#ifdef XFS_BUF_TRACE
1856 ktrace_free(xfs_buf_trace_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001859
1860#ifdef CONFIG_KDB_MODULES
1861struct list_head *
1862xfs_get_buftarg_list(void)
1863{
1864 return &xfs_buftarg_list;
1865}
1866#endif