blob: 302273f8e2a92399b27b13faf9d7ddf72359f518 [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return -ENOMEM;
391 }
392
393 /*
394 * This could deadlock.
395 *
396 * But until all the XFS lowlevel code is revamped to
397 * handle buffer allocation failures we can't do much.
398 */
399 if (!(++retries % 100))
400 printk(KERN_ERR
401 "XFS: possible memory allocation "
402 "deadlock in %s (mode:0x%x)\n",
403 __FUNCTION__, gfp_mask);
404
Nathan Scottce8e9222006-01-11 15:39:08 +1100405 XFS_STATS_INC(xb_page_retries);
Christoph Hellwig23ea4032005-06-21 15:14:01 +1000406 xfsbufd_wakeup(0, gfp_mask);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700407 congestion_wait(WRITE, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 goto retry;
409 }
410
Nathan Scottce8e9222006-01-11 15:39:08 +1100411 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
414 size -= nbytes;
415
Nathan Scott948ecdb2006-09-28 11:03:13 +1000416 ASSERT(!PagePrivate(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if (!PageUptodate(page)) {
418 page_count--;
Christoph Hellwiga9759f22007-12-07 14:07:08 +1100419 if (blocksize < PAGE_CACHE_SIZE && !PagePrivate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (test_page_region(page, offset, nbytes))
421 page_count++;
422 }
423 }
424
Christoph Hellwiga9759f22007-12-07 14:07:08 +1100425 unlock_page(page);
Nathan Scottce8e9222006-01-11 15:39:08 +1100426 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 offset = 0;
428 }
429
Nathan Scottce8e9222006-01-11 15:39:08 +1100430 if (page_count == bp->b_page_count)
431 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Nathan Scottce8e9222006-01-11 15:39:08 +1100433 XB_TRACE(bp, "lookup_pages", (long)page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return error;
435}
436
437/*
438 * Map buffer into kernel address-space if nessecary.
439 */
440STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100441_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 xfs_buf_t *bp,
443 uint flags)
444{
445 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100446 if (bp->b_page_count == 1) {
447 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
448 bp->b_flags |= XBF_MAPPED;
449 } else if (flags & XBF_MAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (as_list_len > 64)
451 purge_addresses();
Nathan Scottce8e9222006-01-11 15:39:08 +1100452 bp->b_addr = vmap(bp->b_pages, bp->b_page_count,
453 VM_MAP, PAGE_KERNEL);
454 if (unlikely(bp->b_addr == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100456 bp->b_addr += bp->b_offset;
457 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459
460 return 0;
461}
462
463/*
464 * Finding and Reading Buffers
465 */
466
467/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100468 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 * a given range of an inode. The buffer is returned
470 * locked. If other overlapping buffers exist, they are
471 * released before the new buffer is created and locked,
472 * which may imply that this call will block until those buffers
473 * are unlocked. No I/O is implied by this call.
474 */
475xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100476_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab252006-01-11 20:50:22 +1100478 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100480 xfs_buf_flags_t flags,
481 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Nathan Scott204ab252006-01-11 20:50:22 +1100483 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 size_t range_length;
485 xfs_bufhash_t *hash;
Nathan Scottce8e9222006-01-11 15:39:08 +1100486 xfs_buf_t *bp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 range_base = (ioff << BBSHIFT);
489 range_length = (isize << BBSHIFT);
490
491 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100492 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab252006-01-11 20:50:22 +1100493 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)];
496
497 spin_lock(&hash->bh_lock);
498
Nathan Scottce8e9222006-01-11 15:39:08 +1100499 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
500 ASSERT(btp == bp->b_target);
501 if (bp->b_file_offset == range_base &&
502 bp->b_buffer_length == range_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100504 * If we look at something, bring it to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 * front of the list for next time.
506 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100507 atomic_inc(&bp->b_hold);
508 list_move(&bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 goto found;
510 }
511 }
512
513 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100514 if (new_bp) {
515 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 range_length, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100517 new_bp->b_hash = hash;
518 list_add(&new_bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100520 XFS_STATS_INC(xb_miss_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
522
523 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100524 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526found:
527 spin_unlock(&hash->bh_lock);
528
529 /* Attempt to get the semaphore without sleeping,
530 * if this does not work then we need to drop the
531 * spinlock and do a hard attempt on the semaphore.
532 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100533 if (down_trylock(&bp->b_sema)) {
534 if (!(flags & XBF_TRYLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 /* wait for buffer ownership */
Nathan Scottce8e9222006-01-11 15:39:08 +1100536 XB_TRACE(bp, "get_lock", 0);
537 xfs_buf_lock(bp);
538 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 } else {
540 /* We asked for a trylock and failed, no need
541 * to look at file offset and length here, we
Nathan Scottce8e9222006-01-11 15:39:08 +1100542 * know that this buffer at least overlaps our
543 * buffer and is locked, therefore our buffer
544 * either does not exist, or is this buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100546 xfs_buf_rele(bp);
547 XFS_STATS_INC(xb_busy_locked);
548 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550 } else {
551 /* trylock worked */
Nathan Scottce8e9222006-01-11 15:39:08 +1100552 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554
Nathan Scottce8e9222006-01-11 15:39:08 +1100555 if (bp->b_flags & XBF_STALE) {
556 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
557 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000558 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100559 XB_TRACE(bp, "got_lock", 0);
560 XFS_STATS_INC(xb_get_locked);
561 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
564/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100565 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 * Storage in memory for all portions of the buffer will be allocated,
567 * although backing storage may not be.
568 */
569xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100570xfs_buf_get_flags(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100572 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100574 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Nathan Scottce8e9222006-01-11 15:39:08 +1100576 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 int error = 0, i;
578
Nathan Scottce8e9222006-01-11 15:39:08 +1100579 new_bp = xfs_buf_allocate(flags);
580 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return NULL;
582
Nathan Scottce8e9222006-01-11 15:39:08 +1100583 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
584 if (bp == new_bp) {
585 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (error)
587 goto no_buffer;
588 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100589 xfs_buf_deallocate(new_bp);
590 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return NULL;
592 }
593
Nathan Scottce8e9222006-01-11 15:39:08 +1100594 for (i = 0; i < bp->b_page_count; i++)
595 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Nathan Scottce8e9222006-01-11 15:39:08 +1100597 if (!(bp->b_flags & XBF_MAPPED)) {
598 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (unlikely(error)) {
600 printk(KERN_WARNING "%s: failed to map pages\n",
601 __FUNCTION__);
602 goto no_buffer;
603 }
604 }
605
Nathan Scottce8e9222006-01-11 15:39:08 +1100606 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 /*
609 * Always fill in the block number now, the mapped cases can do
610 * their own overlay of this later.
611 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100612 bp->b_bn = ioff;
613 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Nathan Scottce8e9222006-01-11 15:39:08 +1100615 XB_TRACE(bp, "get", (unsigned long)flags);
616 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100619 if (flags & (XBF_LOCK | XBF_TRYLOCK))
620 xfs_buf_unlock(bp);
621 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return NULL;
623}
624
625xfs_buf_t *
626xfs_buf_read_flags(
627 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100628 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100630 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Nathan Scottce8e9222006-01-11 15:39:08 +1100632 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Nathan Scottce8e9222006-01-11 15:39:08 +1100634 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Nathan Scottce8e9222006-01-11 15:39:08 +1100636 bp = xfs_buf_get_flags(target, ioff, isize, flags);
637 if (bp) {
638 if (!XFS_BUF_ISDONE(bp)) {
639 XB_TRACE(bp, "read", (unsigned long)flags);
640 XFS_STATS_INC(xb_get_read);
641 xfs_buf_iostart(bp, flags);
642 } else if (flags & XBF_ASYNC) {
643 XB_TRACE(bp, "read_async", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 /*
645 * Read ahead call which is already satisfied,
646 * drop the buffer
647 */
648 goto no_buffer;
649 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100650 XB_TRACE(bp, "read_done", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100652 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654 }
655
Nathan Scottce8e9222006-01-11 15:39:08 +1100656 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100659 if (flags & (XBF_LOCK | XBF_TRYLOCK))
660 xfs_buf_unlock(bp);
661 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return NULL;
663}
664
665/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100666 * If we are not low on memory then do the readahead in a deadlock
667 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 */
669void
Nathan Scottce8e9222006-01-11 15:39:08 +1100670xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100672 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100674 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
676 struct backing_dev_info *bdi;
677
Nathan Scottce8e9222006-01-11 15:39:08 +1100678 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 if (bdi_read_congested(bdi))
680 return;
681
Nathan Scottce8e9222006-01-11 15:39:08 +1100682 flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 xfs_buf_read_flags(target, ioff, isize, flags);
684}
685
686xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100687xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 size_t len,
689 xfs_buftarg_t *target)
690{
Nathan Scottce8e9222006-01-11 15:39:08 +1100691 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Nathan Scottce8e9222006-01-11 15:39:08 +1100693 bp = xfs_buf_allocate(0);
694 if (bp)
695 _xfs_buf_initialize(bp, target, 0, len, 0);
696 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
699static inline struct page *
700mem_to_page(
701 void *addr)
702{
703 if (((unsigned long)addr < VMALLOC_START) ||
704 ((unsigned long)addr >= VMALLOC_END)) {
705 return virt_to_page(addr);
706 } else {
707 return vmalloc_to_page(addr);
708 }
709}
710
711int
Nathan Scottce8e9222006-01-11 15:39:08 +1100712xfs_buf_associate_memory(
713 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 void *mem,
715 size_t len)
716{
717 int rval;
718 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100719 unsigned long pageaddr;
720 unsigned long offset;
721 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 int page_count;
723
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100724 pageaddr = (unsigned long)mem & PAGE_CACHE_MASK;
725 offset = (unsigned long)mem - pageaddr;
726 buflen = PAGE_CACHE_ALIGN(len + offset);
727 page_count = buflen >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100730 if (bp->b_pages)
731 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Nathan Scottce8e9222006-01-11 15:39:08 +1100733 bp->b_pages = NULL;
734 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Nathan Scottce8e9222006-01-11 15:39:08 +1100736 rval = _xfs_buf_get_pages(bp, page_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (rval)
738 return rval;
739
Nathan Scottce8e9222006-01-11 15:39:08 +1100740 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100742 for (i = 0; i < bp->b_page_count; i++) {
743 bp->b_pages[i] = mem_to_page((void *)pageaddr);
744 pageaddr += PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100747 bp->b_count_desired = len;
748 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100749 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 return 0;
752}
753
754xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100755xfs_buf_get_noaddr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 size_t len,
757 xfs_buftarg_t *target)
758{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000759 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
760 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Nathan Scottce8e9222006-01-11 15:39:08 +1100763 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 if (unlikely(bp == NULL))
765 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100766 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000768 error = _xfs_buf_get_pages(bp, page_count, 0);
769 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 goto fail_free_buf;
771
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000772 for (i = 0; i < page_count; i++) {
773 bp->b_pages[i] = alloc_page(GFP_KERNEL);
774 if (!bp->b_pages[i])
775 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000777 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000779 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
780 if (unlikely(error)) {
781 printk(KERN_WARNING "%s: failed to map pages\n",
782 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Nathan Scottce8e9222006-01-11 15:39:08 +1100786 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000788 XB_TRACE(bp, "no_daddr", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000792 while (--i >= 0)
793 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000794 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000796 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 fail:
798 return NULL;
799}
800
801/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 * Increment reference count on buffer, to hold the buffer concurrently
803 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 * Must hold the buffer already to call this function.
805 */
806void
Nathan Scottce8e9222006-01-11 15:39:08 +1100807xfs_buf_hold(
808 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Nathan Scottce8e9222006-01-11 15:39:08 +1100810 atomic_inc(&bp->b_hold);
811 XB_TRACE(bp, "hold", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
814/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100815 * Releases a hold on the specified buffer. If the
816 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 */
818void
Nathan Scottce8e9222006-01-11 15:39:08 +1100819xfs_buf_rele(
820 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Nathan Scottce8e9222006-01-11 15:39:08 +1100822 xfs_bufhash_t *hash = bp->b_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Nathan Scottce8e9222006-01-11 15:39:08 +1100824 XB_TRACE(bp, "rele", bp->b_relse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Nathan Scottfad3aa12006-02-01 12:14:52 +1100826 if (unlikely(!hash)) {
827 ASSERT(!bp->b_relse);
828 if (atomic_dec_and_test(&bp->b_hold))
829 xfs_buf_free(bp);
830 return;
831 }
832
Nathan Scottce8e9222006-01-11 15:39:08 +1100833 if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) {
834 if (bp->b_relse) {
835 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100837 (*(bp->b_relse)) (bp);
838 } else if (bp->b_flags & XBF_FS_MANAGED) {
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100839 spin_unlock(&hash->bh_lock);
840 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100841 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
842 list_del_init(&bp->b_hash_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100844 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
David Chinner2f926582005-09-05 08:33:35 +1000846 } else {
847 /*
848 * Catch reference count leaks
849 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100850 ASSERT(atomic_read(&bp->b_hold) >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852}
853
854
855/*
856 * Mutual exclusion on buffers. Locking model:
857 *
858 * Buffers associated with inodes for which buffer locking
859 * is not enabled are not protected by semaphores, and are
860 * assumed to be exclusively owned by the caller. There is a
861 * spinlock in the buffer, used by the caller when concurrent
862 * access is possible.
863 */
864
865/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100866 * Locks a buffer object, if it is not already locked.
867 * Note that this in no way locks the underlying pages, so it is only
868 * useful for synchronizing concurrent use of buffer objects, not for
869 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 */
871int
Nathan Scottce8e9222006-01-11 15:39:08 +1100872xfs_buf_cond_lock(
873 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
875 int locked;
876
Nathan Scottce8e9222006-01-11 15:39:08 +1100877 locked = down_trylock(&bp->b_sema) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (locked) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100879 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100881 XB_TRACE(bp, "cond_lock", (long)locked);
882 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
885#if defined(DEBUG) || defined(XFS_BLI_TRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886int
Nathan Scottce8e9222006-01-11 15:39:08 +1100887xfs_buf_lock_value(
888 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Nathan Scottce8e9222006-01-11 15:39:08 +1100890 return atomic_read(&bp->b_sema.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892#endif
893
894/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100895 * Locks a buffer object.
896 * Note that this in no way locks the underlying pages, so it is only
897 * useful for synchronizing concurrent use of buffer objects, not for
898 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100900void
901xfs_buf_lock(
902 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Nathan Scottce8e9222006-01-11 15:39:08 +1100904 XB_TRACE(bp, "lock", 0);
905 if (atomic_read(&bp->b_io_remaining))
906 blk_run_address_space(bp->b_target->bt_mapping);
907 down(&bp->b_sema);
908 XB_SET_OWNER(bp);
909 XB_TRACE(bp, "locked", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
912/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100913 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000914 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100915 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000916 * take a reference for the delwri queue because the unlocker is going to
917 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 */
919void
Nathan Scottce8e9222006-01-11 15:39:08 +1100920xfs_buf_unlock(
921 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
Nathan Scottce8e9222006-01-11 15:39:08 +1100923 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
924 atomic_inc(&bp->b_hold);
925 bp->b_flags |= XBF_ASYNC;
926 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000927 }
928
Nathan Scottce8e9222006-01-11 15:39:08 +1100929 XB_CLEAR_OWNER(bp);
930 up(&bp->b_sema);
931 XB_TRACE(bp, "unlock", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934
935/*
936 * Pinning Buffer Storage in Memory
Nathan Scottce8e9222006-01-11 15:39:08 +1100937 * Ensure that no attempt to force a buffer to disk will succeed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 */
939void
Nathan Scottce8e9222006-01-11 15:39:08 +1100940xfs_buf_pin(
941 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Nathan Scottce8e9222006-01-11 15:39:08 +1100943 atomic_inc(&bp->b_pin_count);
944 XB_TRACE(bp, "pin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947void
Nathan Scottce8e9222006-01-11 15:39:08 +1100948xfs_buf_unpin(
949 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Nathan Scottce8e9222006-01-11 15:39:08 +1100951 if (atomic_dec_and_test(&bp->b_pin_count))
952 wake_up_all(&bp->b_waiters);
953 XB_TRACE(bp, "unpin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955
956int
Nathan Scottce8e9222006-01-11 15:39:08 +1100957xfs_buf_ispin(
958 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Nathan Scottce8e9222006-01-11 15:39:08 +1100960 return atomic_read(&bp->b_pin_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
Nathan Scottce8e9222006-01-11 15:39:08 +1100963STATIC void
964xfs_buf_wait_unpin(
965 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 DECLARE_WAITQUEUE (wait, current);
968
Nathan Scottce8e9222006-01-11 15:39:08 +1100969 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 return;
971
Nathan Scottce8e9222006-01-11 15:39:08 +1100972 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 for (;;) {
974 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100975 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 break;
Nathan Scottce8e9222006-01-11 15:39:08 +1100977 if (atomic_read(&bp->b_io_remaining))
978 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 schedule();
980 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100981 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 set_current_state(TASK_RUNNING);
983}
984
985/*
986 * Buffer Utility Routines
987 */
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100990xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +0000991 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
David Howellsc4028952006-11-22 14:57:56 +0000993 xfs_buf_t *bp =
994 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
David Chinner0bfefc42007-05-14 18:24:23 +1000996 /*
997 * We can get an EOPNOTSUPP to ordered writes. Here we clear the
998 * ordered flag and reissue them. Because we can't tell the higher
999 * layers directly that they should not issue ordered I/O anymore, they
1000 * need to check if the ordered flag was cleared during I/O completion.
1001 */
1002 if ((bp->b_error == EOPNOTSUPP) &&
1003 (bp->b_flags & (XBF_ORDERED|XBF_ASYNC)) == (XBF_ORDERED|XBF_ASYNC)) {
1004 XB_TRACE(bp, "ordered_retry", bp->b_iodone);
1005 bp->b_flags &= ~XBF_ORDERED;
1006 xfs_buf_iorequest(bp);
1007 } else if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +11001008 (*(bp->b_iodone))(bp);
1009 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 xfs_buf_relse(bp);
1011}
1012
1013void
Nathan Scottce8e9222006-01-11 15:39:08 +11001014xfs_buf_ioend(
1015 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 int schedule)
1017{
Lachlan McIlroy77be55a2007-11-23 16:31:00 +11001018 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +11001019 if (bp->b_error == 0)
1020 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Nathan Scottce8e9222006-01-11 15:39:08 +11001022 XB_TRACE(bp, "iodone", bp->b_iodone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Nathan Scottce8e9222006-01-11 15:39:08 +11001024 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001026 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001027 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 } else {
David Howellsc4028952006-11-22 14:57:56 +00001029 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001032 up(&bp->b_iodonesema);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
1034}
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036void
Nathan Scottce8e9222006-01-11 15:39:08 +11001037xfs_buf_ioerror(
1038 xfs_buf_t *bp,
1039 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
1041 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001042 bp->b_error = (unsigned short)error;
1043 XB_TRACE(bp, "ioerror", (unsigned long)error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
1046/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001047 * Initiate I/O on a buffer, based on the flags supplied.
1048 * The b_iodone routine in the buffer supplied will only be called
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 * when all of the subsidiary I/O requests, if any, have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 */
1051int
Nathan Scottce8e9222006-01-11 15:39:08 +11001052xfs_buf_iostart(
1053 xfs_buf_t *bp,
1054 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
1056 int status = 0;
1057
Nathan Scottce8e9222006-01-11 15:39:08 +11001058 XB_TRACE(bp, "iostart", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Nathan Scottce8e9222006-01-11 15:39:08 +11001060 if (flags & XBF_DELWRI) {
1061 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC);
1062 bp->b_flags |= flags & (XBF_DELWRI | XBF_ASYNC);
1063 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return status;
1065 }
1066
Nathan Scottce8e9222006-01-11 15:39:08 +11001067 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
1068 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
1069 bp->b_flags |= flags & (XBF_READ | XBF_WRITE | XBF_ASYNC | \
1070 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Nathan Scottce8e9222006-01-11 15:39:08 +11001072 BUG_ON(bp->b_bn == XFS_BUF_DADDR_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 /* For writes allow an alternate strategy routine to precede
1075 * the actual I/O request (which may not be issued at all in
1076 * a shutdown situation, for example).
1077 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001078 status = (flags & XBF_WRITE) ?
1079 xfs_buf_iostrategy(bp) : xfs_buf_iorequest(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 /* Wait for I/O if we are not an async request.
1082 * Note: async I/O request completion will release the buffer,
1083 * and that can already be done by this point. So using the
1084 * buffer pointer from here on, after async I/O, is invalid.
1085 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001086 if (!status && !(flags & XBF_ASYNC))
1087 status = xfs_buf_iowait(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089 return status;
1090}
1091
David Chinner7989cb82007-02-10 18:34:56 +11001092STATIC_INLINE void
Nathan Scottce8e9222006-01-11 15:39:08 +11001093_xfs_buf_ioend(
1094 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 int schedule)
1096{
Christoph Hellwiga9759f22007-12-07 14:07:08 +11001097 if (atomic_dec_and_test(&bp->b_io_remaining) == 1)
Nathan Scottce8e9222006-01-11 15:39:08 +11001098 xfs_buf_ioend(bp, schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
Al Viro782e3b32007-10-12 07:17:47 +01001101STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001102xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 int error)
1105{
Nathan Scottce8e9222006-01-11 15:39:08 +11001106 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1107 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001108 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
Nathan Scottce8e9222006-01-11 15:39:08 +11001111 bp->b_error = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Nathan Scotteedb5532005-09-02 16:39:56 +10001113 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 struct page *page = bvec->bv_page;
1115
Nathan Scott948ecdb2006-09-28 11:03:13 +10001116 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001117 if (unlikely(bp->b_error)) {
1118 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001119 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001120 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 SetPageUptodate(page);
1122 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001123 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1125 }
1126
Nathan Scotteedb5532005-09-02 16:39:56 +10001127 if (--bvec >= bio->bi_io_vec)
1128 prefetchw(&bvec->bv_page->flags);
Nathan Scotteedb5532005-09-02 16:39:56 +10001129 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Nathan Scottce8e9222006-01-11 15:39:08 +11001131 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
1134
1135STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001136_xfs_buf_ioapply(
1137 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
Christoph Hellwiga9759f22007-12-07 14:07:08 +11001139 int rw, map_i, total_nr_pages, nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001141 int offset = bp->b_offset;
1142 int size = bp->b_count_desired;
1143 sector_t sector = bp->b_bn;
1144 unsigned int blocksize = bp->b_target->bt_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Nathan Scottce8e9222006-01-11 15:39:08 +11001146 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 map_i = 0;
1148
Nathan Scottce8e9222006-01-11 15:39:08 +11001149 if (bp->b_flags & XBF_ORDERED) {
1150 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001151 rw = WRITE_BARRIER;
Nathan Scott51bdd702006-09-28 11:01:57 +10001152 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1153 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1154 bp->b_flags &= ~_XBF_RUN_QUEUES;
1155 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
1156 } else {
1157 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1158 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001159 }
1160
Nathan Scottce8e9222006-01-11 15:39:08 +11001161 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 * we populate up the whole page, and hence the other metadata
1163 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001164 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001166 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
Christoph Hellwiga9759f22007-12-07 14:07:08 +11001167 (bp->b_flags & XBF_READ) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001168 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 bio = bio_alloc(GFP_NOIO, 1);
1170
Nathan Scottce8e9222006-01-11 15:39:08 +11001171 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001173 bio->bi_end_io = xfs_buf_bio_end_io;
1174 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Nathan Scottce8e9222006-01-11 15:39:08 +11001176 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 size = 0;
1178
Nathan Scottce8e9222006-01-11 15:39:08 +11001179 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 goto submit_io;
1182 }
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001185 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1187 if (nr_pages > total_nr_pages)
1188 nr_pages = total_nr_pages;
1189
1190 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001191 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001193 bio->bi_end_io = xfs_buf_bio_end_io;
1194 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001197 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 if (nbytes > size)
1200 nbytes = size;
1201
Nathan Scottce8e9222006-01-11 15:39:08 +11001202 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1203 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 break;
1205
1206 offset = 0;
1207 sector += nbytes >> BBSHIFT;
1208 size -= nbytes;
1209 total_nr_pages--;
1210 }
1211
1212submit_io:
1213 if (likely(bio->bi_size)) {
1214 submit_bio(rw, bio);
1215 if (size)
1216 goto next_chunk;
1217 } else {
1218 bio_put(bio);
Nathan Scottce8e9222006-01-11 15:39:08 +11001219 xfs_buf_ioerror(bp, EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221}
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223int
Nathan Scottce8e9222006-01-11 15:39:08 +11001224xfs_buf_iorequest(
1225 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
Nathan Scottce8e9222006-01-11 15:39:08 +11001227 XB_TRACE(bp, "iorequest", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Nathan Scottce8e9222006-01-11 15:39:08 +11001229 if (bp->b_flags & XBF_DELWRI) {
1230 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return 0;
1232 }
1233
Nathan Scottce8e9222006-01-11 15:39:08 +11001234 if (bp->b_flags & XBF_WRITE) {
1235 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237
Nathan Scottce8e9222006-01-11 15:39:08 +11001238 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
1240 /* Set the count to 1 initially, this will stop an I/O
1241 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001242 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001244 atomic_set(&bp->b_io_remaining, 1);
1245 _xfs_buf_ioapply(bp);
1246 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Nathan Scottce8e9222006-01-11 15:39:08 +11001248 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 return 0;
1250}
1251
1252/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001253 * Waits for I/O to complete on the buffer supplied.
1254 * It returns immediately if no I/O is pending.
1255 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 */
1257int
Nathan Scottce8e9222006-01-11 15:39:08 +11001258xfs_buf_iowait(
1259 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Nathan Scottce8e9222006-01-11 15:39:08 +11001261 XB_TRACE(bp, "iowait", 0);
1262 if (atomic_read(&bp->b_io_remaining))
1263 blk_run_address_space(bp->b_target->bt_mapping);
1264 down(&bp->b_iodonesema);
1265 XB_TRACE(bp, "iowaited", (long)bp->b_error);
1266 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267}
1268
Nathan Scottce8e9222006-01-11 15:39:08 +11001269xfs_caddr_t
1270xfs_buf_offset(
1271 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 size_t offset)
1273{
1274 struct page *page;
1275
Nathan Scottce8e9222006-01-11 15:39:08 +11001276 if (bp->b_flags & XBF_MAPPED)
1277 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Nathan Scottce8e9222006-01-11 15:39:08 +11001279 offset += bp->b_offset;
1280 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1281 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
1284/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 * Move data into or out of a buffer.
1286 */
1287void
Nathan Scottce8e9222006-01-11 15:39:08 +11001288xfs_buf_iomove(
1289 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 size_t boff, /* starting buffer offset */
1291 size_t bsize, /* length to copy */
1292 caddr_t data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001293 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
1295 size_t bend, cpoff, csize;
1296 struct page *page;
1297
1298 bend = boff + bsize;
1299 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001300 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1301 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001303 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1306
1307 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001308 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 memset(page_address(page) + cpoff, 0, csize);
1310 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001311 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 memcpy(data, page_address(page) + cpoff, csize);
1313 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001314 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 memcpy(page_address(page) + cpoff, data, csize);
1316 }
1317
1318 boff += csize;
1319 data += csize;
1320 }
1321}
1322
1323/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001324 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 */
1326
1327/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001328 * Wait for any bufs with callbacks that have been submitted but
1329 * have not yet returned... walk the hash list for the target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 */
1331void
1332xfs_wait_buftarg(
1333 xfs_buftarg_t *btp)
1334{
1335 xfs_buf_t *bp, *n;
1336 xfs_bufhash_t *hash;
1337 uint i;
1338
1339 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1340 hash = &btp->bt_hash[i];
1341again:
1342 spin_lock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001343 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
1344 ASSERT(btp == bp->b_target);
1345 if (!(bp->b_flags & XBF_FS_MANAGED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 spin_unlock(&hash->bh_lock);
David Chinner2f926582005-09-05 08:33:35 +10001347 /*
1348 * Catch superblock reference count leaks
1349 * immediately
1350 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001351 BUG_ON(bp->b_bn == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 delay(100);
1353 goto again;
1354 }
1355 }
1356 spin_unlock(&hash->bh_lock);
1357 }
1358}
1359
1360/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001361 * Allocate buffer hash table for a given target.
1362 * For devices containing metadata (i.e. not the log/realtime devices)
1363 * we need to allocate a much larger hash table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 */
1365STATIC void
1366xfs_alloc_bufhash(
1367 xfs_buftarg_t *btp,
1368 int external)
1369{
1370 unsigned int i;
1371
1372 btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */
1373 btp->bt_hashmask = (1 << btp->bt_hashshift) - 1;
1374 btp->bt_hash = kmem_zalloc((1 << btp->bt_hashshift) *
Vlad Apostolov93c189c2006-11-11 18:03:49 +11001375 sizeof(xfs_bufhash_t), KM_SLEEP | KM_LARGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1377 spin_lock_init(&btp->bt_hash[i].bh_lock);
1378 INIT_LIST_HEAD(&btp->bt_hash[i].bh_list);
1379 }
1380}
1381
1382STATIC void
1383xfs_free_bufhash(
1384 xfs_buftarg_t *btp)
1385{
Nathan Scottce8e9222006-01-11 15:39:08 +11001386 kmem_free(btp->bt_hash, (1<<btp->bt_hashshift) * sizeof(xfs_bufhash_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 btp->bt_hash = NULL;
1388}
1389
David Chinnera6867a62006-01-11 15:37:58 +11001390/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001391 * buftarg list for delwrite queue processing
David Chinnera6867a62006-01-11 15:37:58 +11001392 */
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001393static LIST_HEAD(xfs_buftarg_list);
David Chinner7989cb82007-02-10 18:34:56 +11001394static DEFINE_SPINLOCK(xfs_buftarg_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001395
1396STATIC void
1397xfs_register_buftarg(
1398 xfs_buftarg_t *btp)
1399{
1400 spin_lock(&xfs_buftarg_lock);
1401 list_add(&btp->bt_list, &xfs_buftarg_list);
1402 spin_unlock(&xfs_buftarg_lock);
1403}
1404
1405STATIC void
1406xfs_unregister_buftarg(
1407 xfs_buftarg_t *btp)
1408{
1409 spin_lock(&xfs_buftarg_lock);
1410 list_del(&btp->bt_list);
1411 spin_unlock(&xfs_buftarg_lock);
1412}
1413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414void
1415xfs_free_buftarg(
1416 xfs_buftarg_t *btp,
1417 int external)
1418{
1419 xfs_flush_buftarg(btp, 1);
David Chinnerf4a9f282007-06-05 16:24:27 +10001420 xfs_blkdev_issue_flush(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 if (external)
Nathan Scottce8e9222006-01-11 15:39:08 +11001422 xfs_blkdev_put(btp->bt_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 xfs_free_bufhash(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001424 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001425
Nathan Scottce8e9222006-01-11 15:39:08 +11001426 /* Unregister the buftarg first so that we don't get a
1427 * wakeup finding a non-existent task
1428 */
David Chinnera6867a62006-01-11 15:37:58 +11001429 xfs_unregister_buftarg(btp);
1430 kthread_stop(btp->bt_task);
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 kmem_free(btp, sizeof(*btp));
1433}
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435STATIC int
1436xfs_setsize_buftarg_flags(
1437 xfs_buftarg_t *btp,
1438 unsigned int blocksize,
1439 unsigned int sectorsize,
1440 int verbose)
1441{
Nathan Scottce8e9222006-01-11 15:39:08 +11001442 btp->bt_bsize = blocksize;
1443 btp->bt_sshift = ffs(sectorsize) - 1;
1444 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Nathan Scottce8e9222006-01-11 15:39:08 +11001446 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 printk(KERN_WARNING
1448 "XFS: Cannot set_blocksize to %u on device %s\n",
1449 sectorsize, XFS_BUFTARG_NAME(btp));
1450 return EINVAL;
1451 }
1452
1453 if (verbose &&
1454 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1455 printk(KERN_WARNING
1456 "XFS: %u byte sectors in use on device %s. "
1457 "This is suboptimal; %u or greater is ideal.\n",
1458 sectorsize, XFS_BUFTARG_NAME(btp),
1459 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1460 }
1461
1462 return 0;
1463}
1464
1465/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001466 * When allocating the initial buffer target we have not yet
1467 * read in the superblock, so don't know what sized sectors
1468 * are being used is at this early stage. Play safe.
1469 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470STATIC int
1471xfs_setsize_buftarg_early(
1472 xfs_buftarg_t *btp,
1473 struct block_device *bdev)
1474{
1475 return xfs_setsize_buftarg_flags(btp,
1476 PAGE_CACHE_SIZE, bdev_hardsect_size(bdev), 0);
1477}
1478
1479int
1480xfs_setsize_buftarg(
1481 xfs_buftarg_t *btp,
1482 unsigned int blocksize,
1483 unsigned int sectorsize)
1484{
1485 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1486}
1487
1488STATIC int
1489xfs_mapping_buftarg(
1490 xfs_buftarg_t *btp,
1491 struct block_device *bdev)
1492{
1493 struct backing_dev_info *bdi;
1494 struct inode *inode;
1495 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001496 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001498 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 };
1500
1501 inode = new_inode(bdev->bd_inode->i_sb);
1502 if (!inode) {
1503 printk(KERN_WARNING
1504 "XFS: Cannot allocate mapping inode for device %s\n",
1505 XFS_BUFTARG_NAME(btp));
1506 return ENOMEM;
1507 }
1508 inode->i_mode = S_IFBLK;
1509 inode->i_bdev = bdev;
1510 inode->i_rdev = bdev->bd_dev;
1511 bdi = blk_get_backing_dev_info(bdev);
1512 if (!bdi)
1513 bdi = &default_backing_dev_info;
1514 mapping = &inode->i_data;
1515 mapping->a_ops = &mapping_aops;
1516 mapping->backing_dev_info = bdi;
1517 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001518 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 return 0;
1520}
1521
David Chinnera6867a62006-01-11 15:37:58 +11001522STATIC int
1523xfs_alloc_delwrite_queue(
1524 xfs_buftarg_t *btp)
1525{
1526 int error = 0;
1527
1528 INIT_LIST_HEAD(&btp->bt_list);
1529 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
Eric Sandeen007c61c2007-10-11 17:43:56 +10001530 spin_lock_init(&btp->bt_delwrite_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001531 btp->bt_flags = 0;
1532 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd");
1533 if (IS_ERR(btp->bt_task)) {
1534 error = PTR_ERR(btp->bt_task);
1535 goto out_error;
1536 }
1537 xfs_register_buftarg(btp);
1538out_error:
1539 return error;
1540}
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542xfs_buftarg_t *
1543xfs_alloc_buftarg(
1544 struct block_device *bdev,
1545 int external)
1546{
1547 xfs_buftarg_t *btp;
1548
1549 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1550
Nathan Scottce8e9222006-01-11 15:39:08 +11001551 btp->bt_dev = bdev->bd_dev;
1552 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 if (xfs_setsize_buftarg_early(btp, bdev))
1554 goto error;
1555 if (xfs_mapping_buftarg(btp, bdev))
1556 goto error;
David Chinnera6867a62006-01-11 15:37:58 +11001557 if (xfs_alloc_delwrite_queue(btp))
1558 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 xfs_alloc_bufhash(btp, external);
1560 return btp;
1561
1562error:
1563 kmem_free(btp, sizeof(*btp));
1564 return NULL;
1565}
1566
1567
1568/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001569 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001572xfs_buf_delwri_queue(
1573 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 int unlock)
1575{
Nathan Scottce8e9222006-01-11 15:39:08 +11001576 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1577 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001578
Nathan Scottce8e9222006-01-11 15:39:08 +11001579 XB_TRACE(bp, "delwri_q", (long)unlock);
1580 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
David Chinnera6867a62006-01-11 15:37:58 +11001582 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001584 if (!list_empty(&bp->b_list)) {
1585 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1586 if (unlock)
1587 atomic_dec(&bp->b_hold);
1588 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }
1590
Nathan Scottce8e9222006-01-11 15:39:08 +11001591 bp->b_flags |= _XBF_DELWRI_Q;
1592 list_add_tail(&bp->b_list, dwq);
1593 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001594 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001597 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598}
1599
1600void
Nathan Scottce8e9222006-01-11 15:39:08 +11001601xfs_buf_delwri_dequeue(
1602 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
Nathan Scottce8e9222006-01-11 15:39:08 +11001604 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 int dequeued = 0;
1606
David Chinnera6867a62006-01-11 15:37:58 +11001607 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001608 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1609 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1610 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 dequeued = 1;
1612 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001613 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001614 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
1616 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001617 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Nathan Scottce8e9222006-01-11 15:39:08 +11001619 XB_TRACE(bp, "delwri_dq", (long)dequeued);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620}
1621
1622STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001623xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 struct workqueue_struct *queue)
1625{
1626 flush_workqueue(queue);
1627}
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001630xfsbufd_wakeup(
Nathan Scott15c84a42005-11-04 10:51:01 +11001631 int priority,
1632 gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633{
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001634 xfs_buftarg_t *btp;
David Chinnera6867a62006-01-11 15:37:58 +11001635
1636 spin_lock(&xfs_buftarg_lock);
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001637 list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001638 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
David Chinnera6867a62006-01-11 15:37:58 +11001639 continue;
Nathan Scottce8e9222006-01-11 15:39:08 +11001640 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
David Chinnera6867a62006-01-11 15:37:58 +11001641 wake_up_process(btp->bt_task);
1642 }
1643 spin_unlock(&xfs_buftarg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 return 0;
1645}
1646
David Chinner585e6d82007-02-10 18:32:29 +11001647/*
1648 * Move as many buffers as specified to the supplied list
1649 * idicating if we skipped any buffers to prevent deadlocks.
1650 */
1651STATIC int
1652xfs_buf_delwri_split(
1653 xfs_buftarg_t *target,
1654 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001655 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001656{
1657 xfs_buf_t *bp, *n;
1658 struct list_head *dwq = &target->bt_delwrite_queue;
1659 spinlock_t *dwlk = &target->bt_delwrite_lock;
1660 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001661 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001662
David Chinner5e6a07d2007-02-10 18:34:49 +11001663 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001664 INIT_LIST_HEAD(list);
1665 spin_lock(dwlk);
1666 list_for_each_entry_safe(bp, n, dwq, b_list) {
1667 XB_TRACE(bp, "walkq1", (long)xfs_buf_ispin(bp));
1668 ASSERT(bp->b_flags & XBF_DELWRI);
1669
1670 if (!xfs_buf_ispin(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001671 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001672 time_before(jiffies, bp->b_queuetime + age)) {
1673 xfs_buf_unlock(bp);
1674 break;
1675 }
1676
1677 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1678 _XBF_RUN_QUEUES);
1679 bp->b_flags |= XBF_WRITE;
1680 list_move_tail(&bp->b_list, list);
1681 } else
1682 skipped++;
1683 }
1684 spin_unlock(dwlk);
1685
1686 return skipped;
1687
1688}
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001691xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001692 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693{
David Chinner585e6d82007-02-10 18:32:29 +11001694 struct list_head tmp;
1695 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
1696 int count;
1697 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 current->flags |= PF_MEMALLOC;
1700
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001701 set_freezable();
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 do {
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001704 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001705 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001706 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001707 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001708 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Nathan Scott15c84a42005-11-04 10:51:01 +11001711 schedule_timeout_interruptible(
1712 xfs_buf_timer_centisecs * msecs_to_jiffies(10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
David Chinner585e6d82007-02-10 18:32:29 +11001714 xfs_buf_delwri_split(target, &tmp,
David Chinner5e6a07d2007-02-10 18:34:49 +11001715 xfs_buf_age_centisecs * msecs_to_jiffies(10));
David Chinner585e6d82007-02-10 18:32:29 +11001716
Nathan Scottf07c2252006-09-28 10:52:15 +10001717 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001719 bp = list_entry(tmp.next, xfs_buf_t, b_list);
1720 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Nathan Scottce8e9222006-01-11 15:39:08 +11001722 list_del_init(&bp->b_list);
1723 xfs_buf_iostrategy(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001724 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 }
1726
1727 if (as_list_len > 0)
1728 purge_addresses();
Nathan Scottf07c2252006-09-28 10:52:15 +10001729 if (count)
1730 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001732 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001734 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
1736
1737/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001738 * Go through all incore buffers, and release buffers if they belong to
1739 * the given device. This is used in filesystem error handling to
1740 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 */
1742int
1743xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001744 xfs_buftarg_t *target,
1745 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
David Chinner585e6d82007-02-10 18:32:29 +11001747 struct list_head tmp;
1748 xfs_buf_t *bp, *n;
1749 int pincount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Nathan Scottce8e9222006-01-11 15:39:08 +11001751 xfs_buf_runall_queues(xfsdatad_workqueue);
1752 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
David Chinner5e6a07d2007-02-10 18:34:49 +11001754 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
1755 pincount = xfs_buf_delwri_split(target, &tmp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757 /*
1758 * Dropped the delayed write list lock, now walk the temporary list
1759 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001760 list_for_each_entry_safe(bp, n, &tmp, b_list) {
David Chinner585e6d82007-02-10 18:32:29 +11001761 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 if (wait)
Nathan Scottce8e9222006-01-11 15:39:08 +11001763 bp->b_flags &= ~XBF_ASYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 else
Nathan Scottce8e9222006-01-11 15:39:08 +11001765 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Nathan Scottce8e9222006-01-11 15:39:08 +11001767 xfs_buf_iostrategy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
1769
Nathan Scottf07c2252006-09-28 10:52:15 +10001770 if (wait)
1771 blk_run_address_space(target->bt_mapping);
1772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 /*
1774 * Remaining list items must be flushed before returning
1775 */
1776 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001777 bp = list_entry(tmp.next, xfs_buf_t, b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Nathan Scottce8e9222006-01-11 15:39:08 +11001779 list_del_init(&bp->b_list);
1780 xfs_iowait(bp);
1781 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 }
1783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return pincount;
1785}
1786
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001787int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001788xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789{
Nathan Scottce8e9222006-01-11 15:39:08 +11001790#ifdef XFS_BUF_TRACE
1791 xfs_buf_trace_buf = ktrace_alloc(XFS_BUF_TRACE_SIZE, KM_SLEEP);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001792#endif
1793
Nathan Scott87582802006-03-14 13:18:19 +11001794 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1795 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001796 if (!xfs_buf_zone)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001797 goto out_free_trace_buf;
1798
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001799 xfslogd_workqueue = create_workqueue("xfslogd");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001800 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001801 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001803 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001804 if (!xfsdatad_workqueue)
1805 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Rusty Russell8e1f9362007-07-17 04:03:17 -07001807 register_shrinker(&xfs_buf_shake);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001808 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001810 out_destroy_xfslogd_workqueue:
1811 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001812 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001813 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001814 out_free_trace_buf:
Nathan Scottce8e9222006-01-11 15:39:08 +11001815#ifdef XFS_BUF_TRACE
1816 ktrace_free(xfs_buf_trace_buf);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001817#endif
Nathan Scott87582802006-03-14 13:18:19 +11001818 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819}
1820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821void
Nathan Scottce8e9222006-01-11 15:39:08 +11001822xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
Rusty Russell8e1f9362007-07-17 04:03:17 -07001824 unregister_shrinker(&xfs_buf_shake);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001825 destroy_workqueue(xfsdatad_workqueue);
1826 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001827 kmem_zone_destroy(xfs_buf_zone);
1828#ifdef XFS_BUF_TRACE
1829 ktrace_free(xfs_buf_trace_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001832
1833#ifdef CONFIG_KDB_MODULES
1834struct list_head *
1835xfs_get_buftarg_list(void)
1836{
1837 return &xfs_buftarg_list;
1838}
1839#endif