blob: a7c7cb27fa5acf519b2f98630dd8932bb83d77e9 [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
Jeremy Fitzhardinge7f015072007-10-17 13:55:03 +1000190#ifdef CONFIG_XEN
191 /*
192 * Xen needs to be able to make sure it can get an exclusive
193 * RO mapping of pages it wants to turn into a pagetable. If
194 * a newly allocated page is also still being vmap()ed by xfs,
195 * it will cause pagetable construction to fail. This is a
196 * quick workaround to always eagerly unmap pages so that Xen
197 * is happy.
198 */
199 vunmap(addr);
200 return;
201#endif
202
Jeff Dike7b04d712006-04-10 22:53:27 -0700203 aentry = kmalloc(sizeof(a_list_t), GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (likely(aentry)) {
205 spin_lock(&as_lock);
206 aentry->next = as_free_head;
207 aentry->vm_addr = addr;
208 as_free_head = aentry;
209 as_list_len++;
210 spin_unlock(&as_lock);
211 } else {
212 vunmap(addr);
213 }
214}
215
216STATIC void
217purge_addresses(void)
218{
219 a_list_t *aentry, *old;
220
221 if (as_free_head == NULL)
222 return;
223
224 spin_lock(&as_lock);
225 aentry = as_free_head;
226 as_free_head = NULL;
227 as_list_len = 0;
228 spin_unlock(&as_lock);
229
230 while ((old = aentry) != NULL) {
231 vunmap(aentry->vm_addr);
232 aentry = aentry->next;
233 kfree(old);
234 }
235}
236
237/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100238 * Internal xfs_buf_t object manipulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 */
240
241STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100242_xfs_buf_initialize(
243 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100245 xfs_off_t range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 size_t range_length,
Nathan Scottce8e9222006-01-11 15:39:08 +1100247 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100250 * We don't want certain flags to appear in b_flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100252 flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Nathan Scottce8e9222006-01-11 15:39:08 +1100254 memset(bp, 0, sizeof(xfs_buf_t));
255 atomic_set(&bp->b_hold, 1);
256 init_MUTEX_LOCKED(&bp->b_iodonesema);
257 INIT_LIST_HEAD(&bp->b_list);
258 INIT_LIST_HEAD(&bp->b_hash_list);
259 init_MUTEX_LOCKED(&bp->b_sema); /* held, no waiters */
260 XB_SET_OWNER(bp);
261 bp->b_target = target;
262 bp->b_file_offset = range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /*
264 * Set buffer_length and count_desired to the same value initially.
265 * I/O routines should use count_desired, which will be the same in
266 * most cases but may be reset (e.g. XFS recovery).
267 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100268 bp->b_buffer_length = bp->b_count_desired = range_length;
269 bp->b_flags = flags;
270 bp->b_bn = XFS_BUF_DADDR_NULL;
271 atomic_set(&bp->b_pin_count, 0);
272 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Nathan Scottce8e9222006-01-11 15:39:08 +1100274 XFS_STATS_INC(xb_create);
275 XB_TRACE(bp, "initialize", target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100279 * Allocate a page array capable of holding a specified number
280 * of pages, and point the page buf at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 */
282STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100283_xfs_buf_get_pages(
284 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 int page_count,
Nathan Scottce8e9222006-01-11 15:39:08 +1100286 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 /* Make sure that we have a page list */
Nathan Scottce8e9222006-01-11 15:39:08 +1100289 if (bp->b_pages == NULL) {
290 bp->b_offset = xfs_buf_poff(bp->b_file_offset);
291 bp->b_page_count = page_count;
292 if (page_count <= XB_PAGES) {
293 bp->b_pages = bp->b_page_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100295 bp->b_pages = kmem_alloc(sizeof(struct page *) *
296 page_count, xb_to_km(flags));
297 if (bp->b_pages == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return -ENOMEM;
299 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100300 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302 return 0;
303}
304
305/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100306 * Frees b_pages if it was allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 */
308STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100309_xfs_buf_free_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 xfs_buf_t *bp)
311{
Nathan Scottce8e9222006-01-11 15:39:08 +1100312 if (bp->b_pages != bp->b_page_array) {
313 kmem_free(bp->b_pages,
314 bp->b_page_count * sizeof(struct page *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316}
317
318/*
319 * Releases the specified buffer.
320 *
321 * The modification state of any associated pages is left unchanged.
Nathan Scottce8e9222006-01-11 15:39:08 +1100322 * The buffer most not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 * hashed and refcounted buffers
324 */
325void
Nathan Scottce8e9222006-01-11 15:39:08 +1100326xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 xfs_buf_t *bp)
328{
Nathan Scottce8e9222006-01-11 15:39:08 +1100329 XB_TRACE(bp, "free", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Nathan Scottce8e9222006-01-11 15:39:08 +1100331 ASSERT(list_empty(&bp->b_hash_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000333 if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 uint i;
335
Nathan Scottce8e9222006-01-11 15:39:08 +1100336 if ((bp->b_flags & XBF_MAPPED) && (bp->b_page_count > 1))
337 free_address(bp->b_addr - bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Nathan Scott948ecdb2006-09-28 11:03:13 +1000339 for (i = 0; i < bp->b_page_count; i++) {
340 struct page *page = bp->b_pages[i];
341
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000342 if (bp->b_flags & _XBF_PAGE_CACHE)
343 ASSERT(!PagePrivate(page));
Nathan Scott948ecdb2006-09-28 11:03:13 +1000344 page_cache_release(page);
345 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100346 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
348
Nathan Scottce8e9222006-01-11 15:39:08 +1100349 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
352/*
353 * Finds all pages for buffer in question and builds it's page list.
354 */
355STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100356_xfs_buf_lookup_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 xfs_buf_t *bp,
358 uint flags)
359{
Nathan Scottce8e9222006-01-11 15:39:08 +1100360 struct address_space *mapping = bp->b_target->bt_mapping;
361 size_t blocksize = bp->b_target->bt_bsize;
362 size_t size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100364 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 unsigned short page_count, i;
366 pgoff_t first;
Nathan Scott204ab252006-01-11 20:50:22 +1100367 xfs_off_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 int error;
369
Nathan Scottce8e9222006-01-11 15:39:08 +1100370 end = bp->b_file_offset + bp->b_buffer_length;
371 page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Nathan Scottce8e9222006-01-11 15:39:08 +1100373 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (unlikely(error))
375 return error;
Nathan Scottce8e9222006-01-11 15:39:08 +1100376 bp->b_flags |= _XBF_PAGE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Nathan Scottce8e9222006-01-11 15:39:08 +1100378 offset = bp->b_offset;
379 first = bp->b_file_offset >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Nathan Scottce8e9222006-01-11 15:39:08 +1100381 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 struct page *page;
383 uint retries = 0;
384
385 retry:
386 page = find_or_create_page(mapping, first + i, gfp_mask);
387 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100388 if (flags & XBF_READ_AHEAD) {
389 bp->b_page_count = i;
390 for (i = 0; i < bp->b_page_count; i++)
391 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return -ENOMEM;
393 }
394
395 /*
396 * This could deadlock.
397 *
398 * But until all the XFS lowlevel code is revamped to
399 * handle buffer allocation failures we can't do much.
400 */
401 if (!(++retries % 100))
402 printk(KERN_ERR
403 "XFS: possible memory allocation "
404 "deadlock in %s (mode:0x%x)\n",
405 __FUNCTION__, gfp_mask);
406
Nathan Scottce8e9222006-01-11 15:39:08 +1100407 XFS_STATS_INC(xb_page_retries);
Christoph Hellwig23ea4032005-06-21 15:14:01 +1000408 xfsbufd_wakeup(0, gfp_mask);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700409 congestion_wait(WRITE, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 goto retry;
411 }
Christoph Hellwigc40ea742007-10-12 11:12:39 +1000412 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Nathan Scottce8e9222006-01-11 15:39:08 +1100414 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
417 size -= nbytes;
418
Nathan Scott948ecdb2006-09-28 11:03:13 +1000419 ASSERT(!PagePrivate(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (!PageUptodate(page)) {
421 page_count--;
Christoph Hellwigc40ea742007-10-12 11:12:39 +1000422 if (blocksize < PAGE_CACHE_SIZE && !PagePrivate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (test_page_region(page, offset, nbytes))
424 page_count++;
425 }
426 }
427
Nathan Scottce8e9222006-01-11 15:39:08 +1100428 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 offset = 0;
430 }
431
Nathan Scottce8e9222006-01-11 15:39:08 +1100432 if (page_count == bp->b_page_count)
433 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Nathan Scottce8e9222006-01-11 15:39:08 +1100435 XB_TRACE(bp, "lookup_pages", (long)page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return error;
437}
438
439/*
440 * Map buffer into kernel address-space if nessecary.
441 */
442STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100443_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 xfs_buf_t *bp,
445 uint flags)
446{
447 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100448 if (bp->b_page_count == 1) {
449 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
450 bp->b_flags |= XBF_MAPPED;
451 } else if (flags & XBF_MAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (as_list_len > 64)
453 purge_addresses();
Nathan Scottce8e9222006-01-11 15:39:08 +1100454 bp->b_addr = vmap(bp->b_pages, bp->b_page_count,
455 VM_MAP, PAGE_KERNEL);
456 if (unlikely(bp->b_addr == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100458 bp->b_addr += bp->b_offset;
459 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
461
462 return 0;
463}
464
465/*
466 * Finding and Reading Buffers
467 */
468
469/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100470 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 * a given range of an inode. The buffer is returned
472 * locked. If other overlapping buffers exist, they are
473 * released before the new buffer is created and locked,
474 * which may imply that this call will block until those buffers
475 * are unlocked. No I/O is implied by this call.
476 */
477xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100478_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab252006-01-11 20:50:22 +1100480 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100482 xfs_buf_flags_t flags,
483 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Nathan Scott204ab252006-01-11 20:50:22 +1100485 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 size_t range_length;
487 xfs_bufhash_t *hash;
Nathan Scottce8e9222006-01-11 15:39:08 +1100488 xfs_buf_t *bp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 range_base = (ioff << BBSHIFT);
491 range_length = (isize << BBSHIFT);
492
493 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100494 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab252006-01-11 20:50:22 +1100495 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)];
498
499 spin_lock(&hash->bh_lock);
500
Nathan Scottce8e9222006-01-11 15:39:08 +1100501 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
502 ASSERT(btp == bp->b_target);
503 if (bp->b_file_offset == range_base &&
504 bp->b_buffer_length == range_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100506 * If we look at something, bring it to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 * front of the list for next time.
508 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100509 atomic_inc(&bp->b_hold);
510 list_move(&bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 goto found;
512 }
513 }
514
515 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100516 if (new_bp) {
517 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 range_length, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100519 new_bp->b_hash = hash;
520 list_add(&new_bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100522 XFS_STATS_INC(xb_miss_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
524
525 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100526 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528found:
529 spin_unlock(&hash->bh_lock);
530
531 /* Attempt to get the semaphore without sleeping,
532 * if this does not work then we need to drop the
533 * spinlock and do a hard attempt on the semaphore.
534 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100535 if (down_trylock(&bp->b_sema)) {
536 if (!(flags & XBF_TRYLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 /* wait for buffer ownership */
Nathan Scottce8e9222006-01-11 15:39:08 +1100538 XB_TRACE(bp, "get_lock", 0);
539 xfs_buf_lock(bp);
540 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 } else {
542 /* We asked for a trylock and failed, no need
543 * to look at file offset and length here, we
Nathan Scottce8e9222006-01-11 15:39:08 +1100544 * know that this buffer at least overlaps our
545 * buffer and is locked, therefore our buffer
546 * either does not exist, or is this buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100548 xfs_buf_rele(bp);
549 XFS_STATS_INC(xb_busy_locked);
550 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
552 } else {
553 /* trylock worked */
Nathan Scottce8e9222006-01-11 15:39:08 +1100554 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556
Nathan Scottce8e9222006-01-11 15:39:08 +1100557 if (bp->b_flags & XBF_STALE) {
558 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
559 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000560 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100561 XB_TRACE(bp, "got_lock", 0);
562 XFS_STATS_INC(xb_get_locked);
563 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
566/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100567 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 * Storage in memory for all portions of the buffer will be allocated,
569 * although backing storage may not be.
570 */
571xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100572xfs_buf_get_flags(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100574 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100576 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Nathan Scottce8e9222006-01-11 15:39:08 +1100578 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 int error = 0, i;
580
Nathan Scottce8e9222006-01-11 15:39:08 +1100581 new_bp = xfs_buf_allocate(flags);
582 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return NULL;
584
Nathan Scottce8e9222006-01-11 15:39:08 +1100585 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
586 if (bp == new_bp) {
587 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (error)
589 goto no_buffer;
590 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100591 xfs_buf_deallocate(new_bp);
592 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return NULL;
594 }
595
Nathan Scottce8e9222006-01-11 15:39:08 +1100596 for (i = 0; i < bp->b_page_count; i++)
597 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Nathan Scottce8e9222006-01-11 15:39:08 +1100599 if (!(bp->b_flags & XBF_MAPPED)) {
600 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (unlikely(error)) {
602 printk(KERN_WARNING "%s: failed to map pages\n",
603 __FUNCTION__);
604 goto no_buffer;
605 }
606 }
607
Nathan Scottce8e9222006-01-11 15:39:08 +1100608 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 /*
611 * Always fill in the block number now, the mapped cases can do
612 * their own overlay of this later.
613 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100614 bp->b_bn = ioff;
615 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Nathan Scottce8e9222006-01-11 15:39:08 +1100617 XB_TRACE(bp, "get", (unsigned long)flags);
618 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100621 if (flags & (XBF_LOCK | XBF_TRYLOCK))
622 xfs_buf_unlock(bp);
623 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return NULL;
625}
626
627xfs_buf_t *
628xfs_buf_read_flags(
629 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100630 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100632 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Nathan Scottce8e9222006-01-11 15:39:08 +1100634 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Nathan Scottce8e9222006-01-11 15:39:08 +1100636 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Nathan Scottce8e9222006-01-11 15:39:08 +1100638 bp = xfs_buf_get_flags(target, ioff, isize, flags);
639 if (bp) {
640 if (!XFS_BUF_ISDONE(bp)) {
641 XB_TRACE(bp, "read", (unsigned long)flags);
642 XFS_STATS_INC(xb_get_read);
643 xfs_buf_iostart(bp, flags);
644 } else if (flags & XBF_ASYNC) {
645 XB_TRACE(bp, "read_async", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 /*
647 * Read ahead call which is already satisfied,
648 * drop the buffer
649 */
650 goto no_buffer;
651 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100652 XB_TRACE(bp, "read_done", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100654 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656 }
657
Nathan Scottce8e9222006-01-11 15:39:08 +1100658 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100661 if (flags & (XBF_LOCK | XBF_TRYLOCK))
662 xfs_buf_unlock(bp);
663 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return NULL;
665}
666
667/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100668 * If we are not low on memory then do the readahead in a deadlock
669 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 */
671void
Nathan Scottce8e9222006-01-11 15:39:08 +1100672xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100674 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100676 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
678 struct backing_dev_info *bdi;
679
Nathan Scottce8e9222006-01-11 15:39:08 +1100680 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (bdi_read_congested(bdi))
682 return;
683
Nathan Scottce8e9222006-01-11 15:39:08 +1100684 flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 xfs_buf_read_flags(target, ioff, isize, flags);
686}
687
688xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100689xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 size_t len,
691 xfs_buftarg_t *target)
692{
Nathan Scottce8e9222006-01-11 15:39:08 +1100693 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Nathan Scottce8e9222006-01-11 15:39:08 +1100695 bp = xfs_buf_allocate(0);
696 if (bp)
697 _xfs_buf_initialize(bp, target, 0, len, 0);
698 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
701static inline struct page *
702mem_to_page(
703 void *addr)
704{
705 if (((unsigned long)addr < VMALLOC_START) ||
706 ((unsigned long)addr >= VMALLOC_END)) {
707 return virt_to_page(addr);
708 } else {
709 return vmalloc_to_page(addr);
710 }
711}
712
713int
Nathan Scottce8e9222006-01-11 15:39:08 +1100714xfs_buf_associate_memory(
715 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 void *mem,
717 size_t len)
718{
719 int rval;
720 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100721 unsigned long pageaddr;
722 unsigned long offset;
723 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 int page_count;
725
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100726 pageaddr = (unsigned long)mem & PAGE_CACHE_MASK;
727 offset = (unsigned long)mem - pageaddr;
728 buflen = PAGE_CACHE_ALIGN(len + offset);
729 page_count = buflen >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100732 if (bp->b_pages)
733 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Nathan Scottce8e9222006-01-11 15:39:08 +1100735 bp->b_pages = NULL;
736 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Nathan Scottce8e9222006-01-11 15:39:08 +1100738 rval = _xfs_buf_get_pages(bp, page_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (rval)
740 return rval;
741
Nathan Scottce8e9222006-01-11 15:39:08 +1100742 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100744 for (i = 0; i < bp->b_page_count; i++) {
745 bp->b_pages[i] = mem_to_page((void *)pageaddr);
746 pageaddr += PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100749 bp->b_count_desired = len;
750 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100751 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 return 0;
754}
755
756xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100757xfs_buf_get_noaddr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 size_t len,
759 xfs_buftarg_t *target)
760{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000761 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
762 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Nathan Scottce8e9222006-01-11 15:39:08 +1100765 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (unlikely(bp == NULL))
767 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100768 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000770 error = _xfs_buf_get_pages(bp, page_count, 0);
771 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 goto fail_free_buf;
773
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000774 for (i = 0; i < page_count; i++) {
775 bp->b_pages[i] = alloc_page(GFP_KERNEL);
776 if (!bp->b_pages[i])
777 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000779 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000781 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
782 if (unlikely(error)) {
783 printk(KERN_WARNING "%s: failed to map pages\n",
784 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Nathan Scottce8e9222006-01-11 15:39:08 +1100788 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000790 XB_TRACE(bp, "no_daddr", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000794 while (--i >= 0)
795 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000796 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000798 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 fail:
800 return NULL;
801}
802
803/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 * Increment reference count on buffer, to hold the buffer concurrently
805 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 * Must hold the buffer already to call this function.
807 */
808void
Nathan Scottce8e9222006-01-11 15:39:08 +1100809xfs_buf_hold(
810 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Nathan Scottce8e9222006-01-11 15:39:08 +1100812 atomic_inc(&bp->b_hold);
813 XB_TRACE(bp, "hold", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
816/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100817 * Releases a hold on the specified buffer. If the
818 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 */
820void
Nathan Scottce8e9222006-01-11 15:39:08 +1100821xfs_buf_rele(
822 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Nathan Scottce8e9222006-01-11 15:39:08 +1100824 xfs_bufhash_t *hash = bp->b_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Nathan Scottce8e9222006-01-11 15:39:08 +1100826 XB_TRACE(bp, "rele", bp->b_relse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Nathan Scottfad3aa12006-02-01 12:14:52 +1100828 if (unlikely(!hash)) {
829 ASSERT(!bp->b_relse);
830 if (atomic_dec_and_test(&bp->b_hold))
831 xfs_buf_free(bp);
832 return;
833 }
834
Nathan Scottce8e9222006-01-11 15:39:08 +1100835 if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) {
836 if (bp->b_relse) {
837 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100839 (*(bp->b_relse)) (bp);
840 } else if (bp->b_flags & XBF_FS_MANAGED) {
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100841 spin_unlock(&hash->bh_lock);
842 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100843 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
844 list_del_init(&bp->b_hash_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100846 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
David Chinner2f926582005-09-05 08:33:35 +1000848 } else {
849 /*
850 * Catch reference count leaks
851 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100852 ASSERT(atomic_read(&bp->b_hold) >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854}
855
856
857/*
858 * Mutual exclusion on buffers. Locking model:
859 *
860 * Buffers associated with inodes for which buffer locking
861 * is not enabled are not protected by semaphores, and are
862 * assumed to be exclusively owned by the caller. There is a
863 * spinlock in the buffer, used by the caller when concurrent
864 * access is possible.
865 */
866
867/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100868 * Locks a buffer object, if it is not already locked.
869 * Note that this in no way locks the underlying pages, so it is only
870 * useful for synchronizing concurrent use of buffer objects, not for
871 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 */
873int
Nathan Scottce8e9222006-01-11 15:39:08 +1100874xfs_buf_cond_lock(
875 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
877 int locked;
878
Nathan Scottce8e9222006-01-11 15:39:08 +1100879 locked = down_trylock(&bp->b_sema) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (locked) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100881 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100883 XB_TRACE(bp, "cond_lock", (long)locked);
884 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
887#if defined(DEBUG) || defined(XFS_BLI_TRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888int
Nathan Scottce8e9222006-01-11 15:39:08 +1100889xfs_buf_lock_value(
890 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Nathan Scottce8e9222006-01-11 15:39:08 +1100892 return atomic_read(&bp->b_sema.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
894#endif
895
896/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100897 * Locks a buffer object.
898 * Note that this in no way locks the underlying pages, so it is only
899 * useful for synchronizing concurrent use of buffer objects, not for
900 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100902void
903xfs_buf_lock(
904 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Nathan Scottce8e9222006-01-11 15:39:08 +1100906 XB_TRACE(bp, "lock", 0);
907 if (atomic_read(&bp->b_io_remaining))
908 blk_run_address_space(bp->b_target->bt_mapping);
909 down(&bp->b_sema);
910 XB_SET_OWNER(bp);
911 XB_TRACE(bp, "locked", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
914/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100915 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000916 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100917 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000918 * take a reference for the delwri queue because the unlocker is going to
919 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 */
921void
Nathan Scottce8e9222006-01-11 15:39:08 +1100922xfs_buf_unlock(
923 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Nathan Scottce8e9222006-01-11 15:39:08 +1100925 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
926 atomic_inc(&bp->b_hold);
927 bp->b_flags |= XBF_ASYNC;
928 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000929 }
930
Nathan Scottce8e9222006-01-11 15:39:08 +1100931 XB_CLEAR_OWNER(bp);
932 up(&bp->b_sema);
933 XB_TRACE(bp, "unlock", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
936
937/*
938 * Pinning Buffer Storage in Memory
Nathan Scottce8e9222006-01-11 15:39:08 +1100939 * Ensure that no attempt to force a buffer to disk will succeed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 */
941void
Nathan Scottce8e9222006-01-11 15:39:08 +1100942xfs_buf_pin(
943 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Nathan Scottce8e9222006-01-11 15:39:08 +1100945 atomic_inc(&bp->b_pin_count);
946 XB_TRACE(bp, "pin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949void
Nathan Scottce8e9222006-01-11 15:39:08 +1100950xfs_buf_unpin(
951 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Nathan Scottce8e9222006-01-11 15:39:08 +1100953 if (atomic_dec_and_test(&bp->b_pin_count))
954 wake_up_all(&bp->b_waiters);
955 XB_TRACE(bp, "unpin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
958int
Nathan Scottce8e9222006-01-11 15:39:08 +1100959xfs_buf_ispin(
960 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Nathan Scottce8e9222006-01-11 15:39:08 +1100962 return atomic_read(&bp->b_pin_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
Nathan Scottce8e9222006-01-11 15:39:08 +1100965STATIC void
966xfs_buf_wait_unpin(
967 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
969 DECLARE_WAITQUEUE (wait, current);
970
Nathan Scottce8e9222006-01-11 15:39:08 +1100971 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return;
973
Nathan Scottce8e9222006-01-11 15:39:08 +1100974 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 for (;;) {
976 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100977 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 break;
Nathan Scottce8e9222006-01-11 15:39:08 +1100979 if (atomic_read(&bp->b_io_remaining))
980 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 schedule();
982 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100983 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 set_current_state(TASK_RUNNING);
985}
986
987/*
988 * Buffer Utility Routines
989 */
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100992xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +0000993 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
David Howellsc4028952006-11-22 14:57:56 +0000995 xfs_buf_t *bp =
996 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
David Chinner0bfefc42007-05-14 18:24:23 +1000998 /*
999 * We can get an EOPNOTSUPP to ordered writes. Here we clear the
1000 * ordered flag and reissue them. Because we can't tell the higher
1001 * layers directly that they should not issue ordered I/O anymore, they
1002 * need to check if the ordered flag was cleared during I/O completion.
1003 */
1004 if ((bp->b_error == EOPNOTSUPP) &&
1005 (bp->b_flags & (XBF_ORDERED|XBF_ASYNC)) == (XBF_ORDERED|XBF_ASYNC)) {
1006 XB_TRACE(bp, "ordered_retry", bp->b_iodone);
1007 bp->b_flags &= ~XBF_ORDERED;
1008 xfs_buf_iorequest(bp);
1009 } else if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +11001010 (*(bp->b_iodone))(bp);
1011 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 xfs_buf_relse(bp);
1013}
1014
1015void
Nathan Scottce8e9222006-01-11 15:39:08 +11001016xfs_buf_ioend(
1017 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 int schedule)
1019{
Lachlan McIlroy77be55a2007-11-23 16:31:00 +11001020 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +11001021 if (bp->b_error == 0)
1022 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Nathan Scottce8e9222006-01-11 15:39:08 +11001024 XB_TRACE(bp, "iodone", bp->b_iodone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Nathan Scottce8e9222006-01-11 15:39:08 +11001026 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001028 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001029 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 } else {
David Howellsc4028952006-11-22 14:57:56 +00001031 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001034 up(&bp->b_iodonesema);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036}
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038void
Nathan Scottce8e9222006-01-11 15:39:08 +11001039xfs_buf_ioerror(
1040 xfs_buf_t *bp,
1041 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
1043 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001044 bp->b_error = (unsigned short)error;
1045 XB_TRACE(bp, "ioerror", (unsigned long)error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
1048/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001049 * Initiate I/O on a buffer, based on the flags supplied.
1050 * The b_iodone routine in the buffer supplied will only be called
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 * when all of the subsidiary I/O requests, if any, have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 */
1053int
Nathan Scottce8e9222006-01-11 15:39:08 +11001054xfs_buf_iostart(
1055 xfs_buf_t *bp,
1056 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
1058 int status = 0;
1059
Nathan Scottce8e9222006-01-11 15:39:08 +11001060 XB_TRACE(bp, "iostart", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Nathan Scottce8e9222006-01-11 15:39:08 +11001062 if (flags & XBF_DELWRI) {
1063 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC);
1064 bp->b_flags |= flags & (XBF_DELWRI | XBF_ASYNC);
1065 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return status;
1067 }
1068
Nathan Scottce8e9222006-01-11 15:39:08 +11001069 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
1070 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
1071 bp->b_flags |= flags & (XBF_READ | XBF_WRITE | XBF_ASYNC | \
1072 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Nathan Scottce8e9222006-01-11 15:39:08 +11001074 BUG_ON(bp->b_bn == XFS_BUF_DADDR_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 /* For writes allow an alternate strategy routine to precede
1077 * the actual I/O request (which may not be issued at all in
1078 * a shutdown situation, for example).
1079 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001080 status = (flags & XBF_WRITE) ?
1081 xfs_buf_iostrategy(bp) : xfs_buf_iorequest(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 /* Wait for I/O if we are not an async request.
1084 * Note: async I/O request completion will release the buffer,
1085 * and that can already be done by this point. So using the
1086 * buffer pointer from here on, after async I/O, is invalid.
1087 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001088 if (!status && !(flags & XBF_ASYNC))
1089 status = xfs_buf_iowait(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 return status;
1092}
1093
David Chinner7989cb82007-02-10 18:34:56 +11001094STATIC_INLINE void
Nathan Scottce8e9222006-01-11 15:39:08 +11001095_xfs_buf_ioend(
1096 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 int schedule)
1098{
Christoph Hellwigc40ea742007-10-12 11:12:39 +10001099 if (atomic_dec_and_test(&bp->b_io_remaining) == 1)
Nathan Scottce8e9222006-01-11 15:39:08 +11001100 xfs_buf_ioend(bp, schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
Al Viro782e3b32007-10-12 07:17:47 +01001103STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001104xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 int error)
1107{
Nathan Scottce8e9222006-01-11 15:39:08 +11001108 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1109 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001110 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
Nathan Scottce8e9222006-01-11 15:39:08 +11001113 bp->b_error = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Nathan Scotteedb5532005-09-02 16:39:56 +10001115 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 struct page *page = bvec->bv_page;
1117
Nathan Scott948ecdb2006-09-28 11:03:13 +10001118 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001119 if (unlikely(bp->b_error)) {
1120 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001121 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001122 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 SetPageUptodate(page);
1124 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001125 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1127 }
1128
Nathan Scotteedb5532005-09-02 16:39:56 +10001129 if (--bvec >= bio->bi_io_vec)
1130 prefetchw(&bvec->bv_page->flags);
Nathan Scotteedb5532005-09-02 16:39:56 +10001131 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Nathan Scottce8e9222006-01-11 15:39:08 +11001133 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
1136
1137STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001138_xfs_buf_ioapply(
1139 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
Christoph Hellwigc40ea742007-10-12 11:12:39 +10001141 int rw, map_i, total_nr_pages, nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001143 int offset = bp->b_offset;
1144 int size = bp->b_count_desired;
1145 sector_t sector = bp->b_bn;
1146 unsigned int blocksize = bp->b_target->bt_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Nathan Scottce8e9222006-01-11 15:39:08 +11001148 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 map_i = 0;
1150
Nathan Scottce8e9222006-01-11 15:39:08 +11001151 if (bp->b_flags & XBF_ORDERED) {
1152 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001153 rw = WRITE_BARRIER;
Nathan Scott51bdd702006-09-28 11:01:57 +10001154 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1155 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1156 bp->b_flags &= ~_XBF_RUN_QUEUES;
1157 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
1158 } else {
1159 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1160 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001161 }
1162
Nathan Scottce8e9222006-01-11 15:39:08 +11001163 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 * we populate up the whole page, and hence the other metadata
1165 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001166 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001168 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
Christoph Hellwigc40ea742007-10-12 11:12:39 +10001169 (bp->b_flags & XBF_READ) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001170 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 bio = bio_alloc(GFP_NOIO, 1);
1172
Nathan Scottce8e9222006-01-11 15:39:08 +11001173 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001175 bio->bi_end_io = xfs_buf_bio_end_io;
1176 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Nathan Scottce8e9222006-01-11 15:39:08 +11001178 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 size = 0;
1180
Nathan Scottce8e9222006-01-11 15:39:08 +11001181 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 goto submit_io;
1184 }
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001187 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1189 if (nr_pages > total_nr_pages)
1190 nr_pages = total_nr_pages;
1191
1192 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001193 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001195 bio->bi_end_io = xfs_buf_bio_end_io;
1196 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001199 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 if (nbytes > size)
1202 nbytes = size;
1203
Nathan Scottce8e9222006-01-11 15:39:08 +11001204 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1205 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 break;
1207
1208 offset = 0;
1209 sector += nbytes >> BBSHIFT;
1210 size -= nbytes;
1211 total_nr_pages--;
1212 }
1213
1214submit_io:
1215 if (likely(bio->bi_size)) {
1216 submit_bio(rw, bio);
1217 if (size)
1218 goto next_chunk;
1219 } else {
1220 bio_put(bio);
Nathan Scottce8e9222006-01-11 15:39:08 +11001221 xfs_buf_ioerror(bp, EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
1223}
1224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225int
Nathan Scottce8e9222006-01-11 15:39:08 +11001226xfs_buf_iorequest(
1227 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Nathan Scottce8e9222006-01-11 15:39:08 +11001229 XB_TRACE(bp, "iorequest", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Nathan Scottce8e9222006-01-11 15:39:08 +11001231 if (bp->b_flags & XBF_DELWRI) {
1232 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 return 0;
1234 }
1235
Nathan Scottce8e9222006-01-11 15:39:08 +11001236 if (bp->b_flags & XBF_WRITE) {
1237 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239
Nathan Scottce8e9222006-01-11 15:39:08 +11001240 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 /* Set the count to 1 initially, this will stop an I/O
1243 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001244 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001246 atomic_set(&bp->b_io_remaining, 1);
1247 _xfs_buf_ioapply(bp);
1248 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Nathan Scottce8e9222006-01-11 15:39:08 +11001250 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 return 0;
1252}
1253
1254/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001255 * Waits for I/O to complete on the buffer supplied.
1256 * It returns immediately if no I/O is pending.
1257 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 */
1259int
Nathan Scottce8e9222006-01-11 15:39:08 +11001260xfs_buf_iowait(
1261 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Nathan Scottce8e9222006-01-11 15:39:08 +11001263 XB_TRACE(bp, "iowait", 0);
1264 if (atomic_read(&bp->b_io_remaining))
1265 blk_run_address_space(bp->b_target->bt_mapping);
1266 down(&bp->b_iodonesema);
1267 XB_TRACE(bp, "iowaited", (long)bp->b_error);
1268 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
Nathan Scottce8e9222006-01-11 15:39:08 +11001271xfs_caddr_t
1272xfs_buf_offset(
1273 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 size_t offset)
1275{
1276 struct page *page;
1277
Nathan Scottce8e9222006-01-11 15:39:08 +11001278 if (bp->b_flags & XBF_MAPPED)
1279 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Nathan Scottce8e9222006-01-11 15:39:08 +11001281 offset += bp->b_offset;
1282 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1283 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
1286/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 * Move data into or out of a buffer.
1288 */
1289void
Nathan Scottce8e9222006-01-11 15:39:08 +11001290xfs_buf_iomove(
1291 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 size_t boff, /* starting buffer offset */
1293 size_t bsize, /* length to copy */
1294 caddr_t data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001295 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
1297 size_t bend, cpoff, csize;
1298 struct page *page;
1299
1300 bend = boff + bsize;
1301 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001302 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1303 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001305 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1308
1309 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001310 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 memset(page_address(page) + cpoff, 0, csize);
1312 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001313 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 memcpy(data, page_address(page) + cpoff, csize);
1315 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001316 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 memcpy(page_address(page) + cpoff, data, csize);
1318 }
1319
1320 boff += csize;
1321 data += csize;
1322 }
1323}
1324
1325/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001326 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 */
1328
1329/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001330 * Wait for any bufs with callbacks that have been submitted but
1331 * have not yet returned... walk the hash list for the target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 */
1333void
1334xfs_wait_buftarg(
1335 xfs_buftarg_t *btp)
1336{
1337 xfs_buf_t *bp, *n;
1338 xfs_bufhash_t *hash;
1339 uint i;
1340
1341 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1342 hash = &btp->bt_hash[i];
1343again:
1344 spin_lock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001345 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
1346 ASSERT(btp == bp->b_target);
1347 if (!(bp->b_flags & XBF_FS_MANAGED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 spin_unlock(&hash->bh_lock);
David Chinner2f926582005-09-05 08:33:35 +10001349 /*
1350 * Catch superblock reference count leaks
1351 * immediately
1352 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001353 BUG_ON(bp->b_bn == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 delay(100);
1355 goto again;
1356 }
1357 }
1358 spin_unlock(&hash->bh_lock);
1359 }
1360}
1361
1362/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001363 * Allocate buffer hash table for a given target.
1364 * For devices containing metadata (i.e. not the log/realtime devices)
1365 * we need to allocate a much larger hash table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 */
1367STATIC void
1368xfs_alloc_bufhash(
1369 xfs_buftarg_t *btp,
1370 int external)
1371{
1372 unsigned int i;
1373
1374 btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */
1375 btp->bt_hashmask = (1 << btp->bt_hashshift) - 1;
1376 btp->bt_hash = kmem_zalloc((1 << btp->bt_hashshift) *
Vlad Apostolov93c189c2006-11-11 18:03:49 +11001377 sizeof(xfs_bufhash_t), KM_SLEEP | KM_LARGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1379 spin_lock_init(&btp->bt_hash[i].bh_lock);
1380 INIT_LIST_HEAD(&btp->bt_hash[i].bh_list);
1381 }
1382}
1383
1384STATIC void
1385xfs_free_bufhash(
1386 xfs_buftarg_t *btp)
1387{
Nathan Scottce8e9222006-01-11 15:39:08 +11001388 kmem_free(btp->bt_hash, (1<<btp->bt_hashshift) * sizeof(xfs_bufhash_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 btp->bt_hash = NULL;
1390}
1391
David Chinnera6867a62006-01-11 15:37:58 +11001392/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001393 * buftarg list for delwrite queue processing
David Chinnera6867a62006-01-11 15:37:58 +11001394 */
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001395static LIST_HEAD(xfs_buftarg_list);
David Chinner7989cb82007-02-10 18:34:56 +11001396static DEFINE_SPINLOCK(xfs_buftarg_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001397
1398STATIC void
1399xfs_register_buftarg(
1400 xfs_buftarg_t *btp)
1401{
1402 spin_lock(&xfs_buftarg_lock);
1403 list_add(&btp->bt_list, &xfs_buftarg_list);
1404 spin_unlock(&xfs_buftarg_lock);
1405}
1406
1407STATIC void
1408xfs_unregister_buftarg(
1409 xfs_buftarg_t *btp)
1410{
1411 spin_lock(&xfs_buftarg_lock);
1412 list_del(&btp->bt_list);
1413 spin_unlock(&xfs_buftarg_lock);
1414}
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416void
1417xfs_free_buftarg(
1418 xfs_buftarg_t *btp,
1419 int external)
1420{
1421 xfs_flush_buftarg(btp, 1);
David Chinnerf4a9f282007-06-05 16:24:27 +10001422 xfs_blkdev_issue_flush(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 if (external)
Nathan Scottce8e9222006-01-11 15:39:08 +11001424 xfs_blkdev_put(btp->bt_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 xfs_free_bufhash(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001426 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001427
Nathan Scottce8e9222006-01-11 15:39:08 +11001428 /* Unregister the buftarg first so that we don't get a
1429 * wakeup finding a non-existent task
1430 */
David Chinnera6867a62006-01-11 15:37:58 +11001431 xfs_unregister_buftarg(btp);
1432 kthread_stop(btp->bt_task);
1433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 kmem_free(btp, sizeof(*btp));
1435}
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437STATIC int
1438xfs_setsize_buftarg_flags(
1439 xfs_buftarg_t *btp,
1440 unsigned int blocksize,
1441 unsigned int sectorsize,
1442 int verbose)
1443{
Nathan Scottce8e9222006-01-11 15:39:08 +11001444 btp->bt_bsize = blocksize;
1445 btp->bt_sshift = ffs(sectorsize) - 1;
1446 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Nathan Scottce8e9222006-01-11 15:39:08 +11001448 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 printk(KERN_WARNING
1450 "XFS: Cannot set_blocksize to %u on device %s\n",
1451 sectorsize, XFS_BUFTARG_NAME(btp));
1452 return EINVAL;
1453 }
1454
1455 if (verbose &&
1456 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1457 printk(KERN_WARNING
1458 "XFS: %u byte sectors in use on device %s. "
1459 "This is suboptimal; %u or greater is ideal.\n",
1460 sectorsize, XFS_BUFTARG_NAME(btp),
1461 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1462 }
1463
1464 return 0;
1465}
1466
1467/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001468 * When allocating the initial buffer target we have not yet
1469 * read in the superblock, so don't know what sized sectors
1470 * are being used is at this early stage. Play safe.
1471 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472STATIC int
1473xfs_setsize_buftarg_early(
1474 xfs_buftarg_t *btp,
1475 struct block_device *bdev)
1476{
1477 return xfs_setsize_buftarg_flags(btp,
1478 PAGE_CACHE_SIZE, bdev_hardsect_size(bdev), 0);
1479}
1480
1481int
1482xfs_setsize_buftarg(
1483 xfs_buftarg_t *btp,
1484 unsigned int blocksize,
1485 unsigned int sectorsize)
1486{
1487 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1488}
1489
1490STATIC int
1491xfs_mapping_buftarg(
1492 xfs_buftarg_t *btp,
1493 struct block_device *bdev)
1494{
1495 struct backing_dev_info *bdi;
1496 struct inode *inode;
1497 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001498 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001500 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 };
1502
1503 inode = new_inode(bdev->bd_inode->i_sb);
1504 if (!inode) {
1505 printk(KERN_WARNING
1506 "XFS: Cannot allocate mapping inode for device %s\n",
1507 XFS_BUFTARG_NAME(btp));
1508 return ENOMEM;
1509 }
1510 inode->i_mode = S_IFBLK;
1511 inode->i_bdev = bdev;
1512 inode->i_rdev = bdev->bd_dev;
1513 bdi = blk_get_backing_dev_info(bdev);
1514 if (!bdi)
1515 bdi = &default_backing_dev_info;
1516 mapping = &inode->i_data;
1517 mapping->a_ops = &mapping_aops;
1518 mapping->backing_dev_info = bdi;
1519 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001520 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 return 0;
1522}
1523
David Chinnera6867a62006-01-11 15:37:58 +11001524STATIC int
1525xfs_alloc_delwrite_queue(
1526 xfs_buftarg_t *btp)
1527{
1528 int error = 0;
1529
1530 INIT_LIST_HEAD(&btp->bt_list);
1531 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
Eric Sandeen007c61c2007-10-11 17:43:56 +10001532 spin_lock_init(&btp->bt_delwrite_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001533 btp->bt_flags = 0;
1534 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd");
1535 if (IS_ERR(btp->bt_task)) {
1536 error = PTR_ERR(btp->bt_task);
1537 goto out_error;
1538 }
1539 xfs_register_buftarg(btp);
1540out_error:
1541 return error;
1542}
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544xfs_buftarg_t *
1545xfs_alloc_buftarg(
1546 struct block_device *bdev,
1547 int external)
1548{
1549 xfs_buftarg_t *btp;
1550
1551 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1552
Nathan Scottce8e9222006-01-11 15:39:08 +11001553 btp->bt_dev = bdev->bd_dev;
1554 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (xfs_setsize_buftarg_early(btp, bdev))
1556 goto error;
1557 if (xfs_mapping_buftarg(btp, bdev))
1558 goto error;
David Chinnera6867a62006-01-11 15:37:58 +11001559 if (xfs_alloc_delwrite_queue(btp))
1560 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 xfs_alloc_bufhash(btp, external);
1562 return btp;
1563
1564error:
1565 kmem_free(btp, sizeof(*btp));
1566 return NULL;
1567}
1568
1569
1570/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001571 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001574xfs_buf_delwri_queue(
1575 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 int unlock)
1577{
Nathan Scottce8e9222006-01-11 15:39:08 +11001578 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1579 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001580
Nathan Scottce8e9222006-01-11 15:39:08 +11001581 XB_TRACE(bp, "delwri_q", (long)unlock);
1582 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
David Chinnera6867a62006-01-11 15:37:58 +11001584 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001586 if (!list_empty(&bp->b_list)) {
1587 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1588 if (unlock)
1589 atomic_dec(&bp->b_hold);
1590 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 }
1592
Nathan Scottce8e9222006-01-11 15:39:08 +11001593 bp->b_flags |= _XBF_DELWRI_Q;
1594 list_add_tail(&bp->b_list, dwq);
1595 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001596 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001599 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
1602void
Nathan Scottce8e9222006-01-11 15:39:08 +11001603xfs_buf_delwri_dequeue(
1604 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
Nathan Scottce8e9222006-01-11 15:39:08 +11001606 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 int dequeued = 0;
1608
David Chinnera6867a62006-01-11 15:37:58 +11001609 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001610 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1611 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1612 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 dequeued = 1;
1614 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001615 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001616 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001619 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Nathan Scottce8e9222006-01-11 15:39:08 +11001621 XB_TRACE(bp, "delwri_dq", (long)dequeued);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622}
1623
1624STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001625xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 struct workqueue_struct *queue)
1627{
1628 flush_workqueue(queue);
1629}
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001632xfsbufd_wakeup(
Nathan Scott15c84a42005-11-04 10:51:01 +11001633 int priority,
1634 gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001636 xfs_buftarg_t *btp;
David Chinnera6867a62006-01-11 15:37:58 +11001637
1638 spin_lock(&xfs_buftarg_lock);
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001639 list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001640 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
David Chinnera6867a62006-01-11 15:37:58 +11001641 continue;
Nathan Scottce8e9222006-01-11 15:39:08 +11001642 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
David Chinnera6867a62006-01-11 15:37:58 +11001643 wake_up_process(btp->bt_task);
1644 }
1645 spin_unlock(&xfs_buftarg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 return 0;
1647}
1648
David Chinner585e6d82007-02-10 18:32:29 +11001649/*
1650 * Move as many buffers as specified to the supplied list
1651 * idicating if we skipped any buffers to prevent deadlocks.
1652 */
1653STATIC int
1654xfs_buf_delwri_split(
1655 xfs_buftarg_t *target,
1656 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001657 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001658{
1659 xfs_buf_t *bp, *n;
1660 struct list_head *dwq = &target->bt_delwrite_queue;
1661 spinlock_t *dwlk = &target->bt_delwrite_lock;
1662 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001663 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001664
David Chinner5e6a07d2007-02-10 18:34:49 +11001665 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001666 INIT_LIST_HEAD(list);
1667 spin_lock(dwlk);
1668 list_for_each_entry_safe(bp, n, dwq, b_list) {
1669 XB_TRACE(bp, "walkq1", (long)xfs_buf_ispin(bp));
1670 ASSERT(bp->b_flags & XBF_DELWRI);
1671
1672 if (!xfs_buf_ispin(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001673 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001674 time_before(jiffies, bp->b_queuetime + age)) {
1675 xfs_buf_unlock(bp);
1676 break;
1677 }
1678
1679 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1680 _XBF_RUN_QUEUES);
1681 bp->b_flags |= XBF_WRITE;
1682 list_move_tail(&bp->b_list, list);
1683 } else
1684 skipped++;
1685 }
1686 spin_unlock(dwlk);
1687
1688 return skipped;
1689
1690}
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001693xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001694 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
David Chinner585e6d82007-02-10 18:32:29 +11001696 struct list_head tmp;
1697 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
1698 int count;
1699 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 current->flags |= PF_MEMALLOC;
1702
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001703 set_freezable();
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 do {
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001706 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001707 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001708 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001709 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001710 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Nathan Scott15c84a42005-11-04 10:51:01 +11001713 schedule_timeout_interruptible(
1714 xfs_buf_timer_centisecs * msecs_to_jiffies(10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
David Chinner585e6d82007-02-10 18:32:29 +11001716 xfs_buf_delwri_split(target, &tmp,
David Chinner5e6a07d2007-02-10 18:34:49 +11001717 xfs_buf_age_centisecs * msecs_to_jiffies(10));
David Chinner585e6d82007-02-10 18:32:29 +11001718
Nathan Scottf07c2252006-09-28 10:52:15 +10001719 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001721 bp = list_entry(tmp.next, xfs_buf_t, b_list);
1722 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Nathan Scottce8e9222006-01-11 15:39:08 +11001724 list_del_init(&bp->b_list);
1725 xfs_buf_iostrategy(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001726 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 }
1728
1729 if (as_list_len > 0)
1730 purge_addresses();
Nathan Scottf07c2252006-09-28 10:52:15 +10001731 if (count)
1732 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001734 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001736 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737}
1738
1739/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001740 * Go through all incore buffers, and release buffers if they belong to
1741 * the given device. This is used in filesystem error handling to
1742 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 */
1744int
1745xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001746 xfs_buftarg_t *target,
1747 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748{
David Chinner585e6d82007-02-10 18:32:29 +11001749 struct list_head tmp;
1750 xfs_buf_t *bp, *n;
1751 int pincount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Nathan Scottce8e9222006-01-11 15:39:08 +11001753 xfs_buf_runall_queues(xfsdatad_workqueue);
1754 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
David Chinner5e6a07d2007-02-10 18:34:49 +11001756 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
1757 pincount = xfs_buf_delwri_split(target, &tmp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
1759 /*
1760 * Dropped the delayed write list lock, now walk the temporary list
1761 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001762 list_for_each_entry_safe(bp, n, &tmp, b_list) {
David Chinner585e6d82007-02-10 18:32:29 +11001763 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 if (wait)
Nathan Scottce8e9222006-01-11 15:39:08 +11001765 bp->b_flags &= ~XBF_ASYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 else
Nathan Scottce8e9222006-01-11 15:39:08 +11001767 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Nathan Scottce8e9222006-01-11 15:39:08 +11001769 xfs_buf_iostrategy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
1771
Nathan Scottf07c2252006-09-28 10:52:15 +10001772 if (wait)
1773 blk_run_address_space(target->bt_mapping);
1774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 /*
1776 * Remaining list items must be flushed before returning
1777 */
1778 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001779 bp = list_entry(tmp.next, xfs_buf_t, b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Nathan Scottce8e9222006-01-11 15:39:08 +11001781 list_del_init(&bp->b_list);
1782 xfs_iowait(bp);
1783 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
1785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 return pincount;
1787}
1788
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001789int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001790xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
Nathan Scottce8e9222006-01-11 15:39:08 +11001792#ifdef XFS_BUF_TRACE
1793 xfs_buf_trace_buf = ktrace_alloc(XFS_BUF_TRACE_SIZE, KM_SLEEP);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001794#endif
1795
Nathan Scott87582802006-03-14 13:18:19 +11001796 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1797 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001798 if (!xfs_buf_zone)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001799 goto out_free_trace_buf;
1800
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001801 xfslogd_workqueue = create_workqueue("xfslogd");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001802 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001803 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001805 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001806 if (!xfsdatad_workqueue)
1807 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Rusty Russell8e1f9362007-07-17 04:03:17 -07001809 register_shrinker(&xfs_buf_shake);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001810 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001812 out_destroy_xfslogd_workqueue:
1813 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001814 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001815 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001816 out_free_trace_buf:
Nathan Scottce8e9222006-01-11 15:39:08 +11001817#ifdef XFS_BUF_TRACE
1818 ktrace_free(xfs_buf_trace_buf);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001819#endif
Nathan Scott87582802006-03-14 13:18:19 +11001820 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823void
Nathan Scottce8e9222006-01-11 15:39:08 +11001824xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
Rusty Russell8e1f9362007-07-17 04:03:17 -07001826 unregister_shrinker(&xfs_buf_shake);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001827 destroy_workqueue(xfsdatad_workqueue);
1828 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001829 kmem_zone_destroy(xfs_buf_zone);
1830#ifdef XFS_BUF_TRACE
1831 ktrace_free(xfs_buf_trace_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001834
1835#ifdef CONFIG_KDB_MODULES
1836struct list_head *
1837xfs_get_buftarg_list(void)
1838{
1839 return &xfs_buftarg_list;
1840}
1841#endif