blob: 0382c19d6523708792675b9215aebd4867801aa3 [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 }
412
Nathan Scottce8e9222006-01-11 15:39:08 +1100413 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
416 size -= nbytes;
417
Nathan Scott948ecdb2006-09-28 11:03:13 +1000418 ASSERT(!PagePrivate(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (!PageUptodate(page)) {
420 page_count--;
421 if (blocksize >= PAGE_CACHE_SIZE) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100422 if (flags & XBF_READ)
423 bp->b_locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 } else if (!PagePrivate(page)) {
425 if (test_page_region(page, offset, nbytes))
426 page_count++;
427 }
428 }
429
Nathan Scottce8e9222006-01-11 15:39:08 +1100430 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 offset = 0;
432 }
433
Nathan Scottce8e9222006-01-11 15:39:08 +1100434 if (!bp->b_locked) {
435 for (i = 0; i < bp->b_page_count; i++)
436 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
438
Nathan Scottce8e9222006-01-11 15:39:08 +1100439 if (page_count == bp->b_page_count)
440 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Nathan Scottce8e9222006-01-11 15:39:08 +1100442 XB_TRACE(bp, "lookup_pages", (long)page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return error;
444}
445
446/*
447 * Map buffer into kernel address-space if nessecary.
448 */
449STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100450_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 xfs_buf_t *bp,
452 uint flags)
453{
454 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100455 if (bp->b_page_count == 1) {
456 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
457 bp->b_flags |= XBF_MAPPED;
458 } else if (flags & XBF_MAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (as_list_len > 64)
460 purge_addresses();
Nathan Scottce8e9222006-01-11 15:39:08 +1100461 bp->b_addr = vmap(bp->b_pages, bp->b_page_count,
462 VM_MAP, PAGE_KERNEL);
463 if (unlikely(bp->b_addr == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100465 bp->b_addr += bp->b_offset;
466 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468
469 return 0;
470}
471
472/*
473 * Finding and Reading Buffers
474 */
475
476/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100477 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 * a given range of an inode. The buffer is returned
479 * locked. If other overlapping buffers exist, they are
480 * released before the new buffer is created and locked,
481 * which may imply that this call will block until those buffers
482 * are unlocked. No I/O is implied by this call.
483 */
484xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100485_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab252006-01-11 20:50:22 +1100487 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100489 xfs_buf_flags_t flags,
490 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Nathan Scott204ab252006-01-11 20:50:22 +1100492 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 size_t range_length;
494 xfs_bufhash_t *hash;
Nathan Scottce8e9222006-01-11 15:39:08 +1100495 xfs_buf_t *bp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 range_base = (ioff << BBSHIFT);
498 range_length = (isize << BBSHIFT);
499
500 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100501 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab252006-01-11 20:50:22 +1100502 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)];
505
506 spin_lock(&hash->bh_lock);
507
Nathan Scottce8e9222006-01-11 15:39:08 +1100508 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
509 ASSERT(btp == bp->b_target);
510 if (bp->b_file_offset == range_base &&
511 bp->b_buffer_length == range_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100513 * If we look at something, bring it to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 * front of the list for next time.
515 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100516 atomic_inc(&bp->b_hold);
517 list_move(&bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 goto found;
519 }
520 }
521
522 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100523 if (new_bp) {
524 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 range_length, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100526 new_bp->b_hash = hash;
527 list_add(&new_bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100529 XFS_STATS_INC(xb_miss_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531
532 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100533 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535found:
536 spin_unlock(&hash->bh_lock);
537
538 /* Attempt to get the semaphore without sleeping,
539 * if this does not work then we need to drop the
540 * spinlock and do a hard attempt on the semaphore.
541 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100542 if (down_trylock(&bp->b_sema)) {
543 if (!(flags & XBF_TRYLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* wait for buffer ownership */
Nathan Scottce8e9222006-01-11 15:39:08 +1100545 XB_TRACE(bp, "get_lock", 0);
546 xfs_buf_lock(bp);
547 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 } else {
549 /* We asked for a trylock and failed, no need
550 * to look at file offset and length here, we
Nathan Scottce8e9222006-01-11 15:39:08 +1100551 * know that this buffer at least overlaps our
552 * buffer and is locked, therefore our buffer
553 * either does not exist, or is this buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100555 xfs_buf_rele(bp);
556 XFS_STATS_INC(xb_busy_locked);
557 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559 } else {
560 /* trylock worked */
Nathan Scottce8e9222006-01-11 15:39:08 +1100561 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563
Nathan Scottce8e9222006-01-11 15:39:08 +1100564 if (bp->b_flags & XBF_STALE) {
565 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
566 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000567 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100568 XB_TRACE(bp, "got_lock", 0);
569 XFS_STATS_INC(xb_get_locked);
570 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
573/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100574 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 * Storage in memory for all portions of the buffer will be allocated,
576 * although backing storage may not be.
577 */
578xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100579xfs_buf_get_flags(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100581 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100583 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Nathan Scottce8e9222006-01-11 15:39:08 +1100585 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 int error = 0, i;
587
Nathan Scottce8e9222006-01-11 15:39:08 +1100588 new_bp = xfs_buf_allocate(flags);
589 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return NULL;
591
Nathan Scottce8e9222006-01-11 15:39:08 +1100592 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
593 if (bp == new_bp) {
594 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (error)
596 goto no_buffer;
597 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100598 xfs_buf_deallocate(new_bp);
599 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return NULL;
601 }
602
Nathan Scottce8e9222006-01-11 15:39:08 +1100603 for (i = 0; i < bp->b_page_count; i++)
604 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Nathan Scottce8e9222006-01-11 15:39:08 +1100606 if (!(bp->b_flags & XBF_MAPPED)) {
607 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (unlikely(error)) {
609 printk(KERN_WARNING "%s: failed to map pages\n",
610 __FUNCTION__);
611 goto no_buffer;
612 }
613 }
614
Nathan Scottce8e9222006-01-11 15:39:08 +1100615 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 /*
618 * Always fill in the block number now, the mapped cases can do
619 * their own overlay of this later.
620 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100621 bp->b_bn = ioff;
622 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Nathan Scottce8e9222006-01-11 15:39:08 +1100624 XB_TRACE(bp, "get", (unsigned long)flags);
625 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100628 if (flags & (XBF_LOCK | XBF_TRYLOCK))
629 xfs_buf_unlock(bp);
630 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return NULL;
632}
633
634xfs_buf_t *
635xfs_buf_read_flags(
636 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100637 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100639 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Nathan Scottce8e9222006-01-11 15:39:08 +1100641 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Nathan Scottce8e9222006-01-11 15:39:08 +1100643 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Nathan Scottce8e9222006-01-11 15:39:08 +1100645 bp = xfs_buf_get_flags(target, ioff, isize, flags);
646 if (bp) {
647 if (!XFS_BUF_ISDONE(bp)) {
648 XB_TRACE(bp, "read", (unsigned long)flags);
649 XFS_STATS_INC(xb_get_read);
650 xfs_buf_iostart(bp, flags);
651 } else if (flags & XBF_ASYNC) {
652 XB_TRACE(bp, "read_async", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /*
654 * Read ahead call which is already satisfied,
655 * drop the buffer
656 */
657 goto no_buffer;
658 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100659 XB_TRACE(bp, "read_done", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100661 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663 }
664
Nathan Scottce8e9222006-01-11 15:39:08 +1100665 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100668 if (flags & (XBF_LOCK | XBF_TRYLOCK))
669 xfs_buf_unlock(bp);
670 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return NULL;
672}
673
674/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100675 * If we are not low on memory then do the readahead in a deadlock
676 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 */
678void
Nathan Scottce8e9222006-01-11 15:39:08 +1100679xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100681 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100683 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
685 struct backing_dev_info *bdi;
686
Nathan Scottce8e9222006-01-11 15:39:08 +1100687 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (bdi_read_congested(bdi))
689 return;
690
Nathan Scottce8e9222006-01-11 15:39:08 +1100691 flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 xfs_buf_read_flags(target, ioff, isize, flags);
693}
694
695xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100696xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 size_t len,
698 xfs_buftarg_t *target)
699{
Nathan Scottce8e9222006-01-11 15:39:08 +1100700 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Nathan Scottce8e9222006-01-11 15:39:08 +1100702 bp = xfs_buf_allocate(0);
703 if (bp)
704 _xfs_buf_initialize(bp, target, 0, len, 0);
705 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
708static inline struct page *
709mem_to_page(
710 void *addr)
711{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800712 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return virt_to_page(addr);
714 } else {
715 return vmalloc_to_page(addr);
716 }
717}
718
719int
Nathan Scottce8e9222006-01-11 15:39:08 +1100720xfs_buf_associate_memory(
721 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 void *mem,
723 size_t len)
724{
725 int rval;
726 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100727 unsigned long pageaddr;
728 unsigned long offset;
729 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 int page_count;
731
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100732 pageaddr = (unsigned long)mem & PAGE_CACHE_MASK;
733 offset = (unsigned long)mem - pageaddr;
734 buflen = PAGE_CACHE_ALIGN(len + offset);
735 page_count = buflen >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100738 if (bp->b_pages)
739 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Nathan Scottce8e9222006-01-11 15:39:08 +1100741 bp->b_pages = NULL;
742 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Nathan Scottce8e9222006-01-11 15:39:08 +1100744 rval = _xfs_buf_get_pages(bp, page_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (rval)
746 return rval;
747
Nathan Scottce8e9222006-01-11 15:39:08 +1100748 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100750 for (i = 0; i < bp->b_page_count; i++) {
751 bp->b_pages[i] = mem_to_page((void *)pageaddr);
752 pageaddr += PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100754 bp->b_locked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100756 bp->b_count_desired = len;
757 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100758 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 return 0;
761}
762
763xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100764xfs_buf_get_noaddr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 size_t len,
766 xfs_buftarg_t *target)
767{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000768 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
769 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Nathan Scottce8e9222006-01-11 15:39:08 +1100772 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (unlikely(bp == NULL))
774 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100775 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000777 error = _xfs_buf_get_pages(bp, page_count, 0);
778 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 goto fail_free_buf;
780
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000781 for (i = 0; i < page_count; i++) {
782 bp->b_pages[i] = alloc_page(GFP_KERNEL);
783 if (!bp->b_pages[i])
784 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000786 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000788 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
789 if (unlikely(error)) {
790 printk(KERN_WARNING "%s: failed to map pages\n",
791 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Nathan Scottce8e9222006-01-11 15:39:08 +1100795 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000797 XB_TRACE(bp, "no_daddr", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000801 while (--i >= 0)
802 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000803 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000805 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 fail:
807 return NULL;
808}
809
810/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 * Increment reference count on buffer, to hold the buffer concurrently
812 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 * Must hold the buffer already to call this function.
814 */
815void
Nathan Scottce8e9222006-01-11 15:39:08 +1100816xfs_buf_hold(
817 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Nathan Scottce8e9222006-01-11 15:39:08 +1100819 atomic_inc(&bp->b_hold);
820 XB_TRACE(bp, "hold", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
823/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100824 * Releases a hold on the specified buffer. If the
825 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 */
827void
Nathan Scottce8e9222006-01-11 15:39:08 +1100828xfs_buf_rele(
829 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
Nathan Scottce8e9222006-01-11 15:39:08 +1100831 xfs_bufhash_t *hash = bp->b_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Nathan Scottce8e9222006-01-11 15:39:08 +1100833 XB_TRACE(bp, "rele", bp->b_relse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Nathan Scottfad3aa12006-02-01 12:14:52 +1100835 if (unlikely(!hash)) {
836 ASSERT(!bp->b_relse);
837 if (atomic_dec_and_test(&bp->b_hold))
838 xfs_buf_free(bp);
839 return;
840 }
841
Nathan Scottce8e9222006-01-11 15:39:08 +1100842 if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) {
843 if (bp->b_relse) {
844 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100846 (*(bp->b_relse)) (bp);
847 } else if (bp->b_flags & XBF_FS_MANAGED) {
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100848 spin_unlock(&hash->bh_lock);
849 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100850 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
851 list_del_init(&bp->b_hash_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100853 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
David Chinner2f926582005-09-05 08:33:35 +1000855 } else {
856 /*
857 * Catch reference count leaks
858 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100859 ASSERT(atomic_read(&bp->b_hold) >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
861}
862
863
864/*
865 * Mutual exclusion on buffers. Locking model:
866 *
867 * Buffers associated with inodes for which buffer locking
868 * is not enabled are not protected by semaphores, and are
869 * assumed to be exclusively owned by the caller. There is a
870 * spinlock in the buffer, used by the caller when concurrent
871 * access is possible.
872 */
873
874/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100875 * Locks a buffer object, if it is not already locked.
876 * Note that this in no way locks the underlying pages, so it is only
877 * useful for synchronizing concurrent use of buffer objects, not for
878 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 */
880int
Nathan Scottce8e9222006-01-11 15:39:08 +1100881xfs_buf_cond_lock(
882 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
884 int locked;
885
Nathan Scottce8e9222006-01-11 15:39:08 +1100886 locked = down_trylock(&bp->b_sema) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (locked) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100888 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100890 XB_TRACE(bp, "cond_lock", (long)locked);
891 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893
894#if defined(DEBUG) || defined(XFS_BLI_TRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895int
Nathan Scottce8e9222006-01-11 15:39:08 +1100896xfs_buf_lock_value(
897 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Nathan Scottce8e9222006-01-11 15:39:08 +1100899 return atomic_read(&bp->b_sema.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901#endif
902
903/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100904 * Locks a buffer object.
905 * Note that this in no way locks the underlying pages, so it is only
906 * useful for synchronizing concurrent use of buffer objects, not for
907 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100909void
910xfs_buf_lock(
911 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
Nathan Scottce8e9222006-01-11 15:39:08 +1100913 XB_TRACE(bp, "lock", 0);
914 if (atomic_read(&bp->b_io_remaining))
915 blk_run_address_space(bp->b_target->bt_mapping);
916 down(&bp->b_sema);
917 XB_SET_OWNER(bp);
918 XB_TRACE(bp, "locked", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
920
921/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100922 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000923 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100924 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000925 * take a reference for the delwri queue because the unlocker is going to
926 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 */
928void
Nathan Scottce8e9222006-01-11 15:39:08 +1100929xfs_buf_unlock(
930 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Nathan Scottce8e9222006-01-11 15:39:08 +1100932 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
933 atomic_inc(&bp->b_hold);
934 bp->b_flags |= XBF_ASYNC;
935 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000936 }
937
Nathan Scottce8e9222006-01-11 15:39:08 +1100938 XB_CLEAR_OWNER(bp);
939 up(&bp->b_sema);
940 XB_TRACE(bp, "unlock", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
943
944/*
945 * Pinning Buffer Storage in Memory
Nathan Scottce8e9222006-01-11 15:39:08 +1100946 * Ensure that no attempt to force a buffer to disk will succeed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 */
948void
Nathan Scottce8e9222006-01-11 15:39:08 +1100949xfs_buf_pin(
950 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Nathan Scottce8e9222006-01-11 15:39:08 +1100952 atomic_inc(&bp->b_pin_count);
953 XB_TRACE(bp, "pin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956void
Nathan Scottce8e9222006-01-11 15:39:08 +1100957xfs_buf_unpin(
958 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Nathan Scottce8e9222006-01-11 15:39:08 +1100960 if (atomic_dec_and_test(&bp->b_pin_count))
961 wake_up_all(&bp->b_waiters);
962 XB_TRACE(bp, "unpin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
965int
Nathan Scottce8e9222006-01-11 15:39:08 +1100966xfs_buf_ispin(
967 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
Nathan Scottce8e9222006-01-11 15:39:08 +1100969 return atomic_read(&bp->b_pin_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
971
Nathan Scottce8e9222006-01-11 15:39:08 +1100972STATIC void
973xfs_buf_wait_unpin(
974 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
976 DECLARE_WAITQUEUE (wait, current);
977
Nathan Scottce8e9222006-01-11 15:39:08 +1100978 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return;
980
Nathan Scottce8e9222006-01-11 15:39:08 +1100981 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 for (;;) {
983 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100984 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 break;
Nathan Scottce8e9222006-01-11 15:39:08 +1100986 if (atomic_read(&bp->b_io_remaining))
987 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 schedule();
989 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100990 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 set_current_state(TASK_RUNNING);
992}
993
994/*
995 * Buffer Utility Routines
996 */
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100999xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +00001000 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
David Howellsc4028952006-11-22 14:57:56 +00001002 xfs_buf_t *bp =
1003 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
David Chinner0bfefc42007-05-14 18:24:23 +10001005 /*
1006 * We can get an EOPNOTSUPP to ordered writes. Here we clear the
1007 * ordered flag and reissue them. Because we can't tell the higher
1008 * layers directly that they should not issue ordered I/O anymore, they
1009 * need to check if the ordered flag was cleared during I/O completion.
1010 */
1011 if ((bp->b_error == EOPNOTSUPP) &&
1012 (bp->b_flags & (XBF_ORDERED|XBF_ASYNC)) == (XBF_ORDERED|XBF_ASYNC)) {
1013 XB_TRACE(bp, "ordered_retry", bp->b_iodone);
1014 bp->b_flags &= ~XBF_ORDERED;
1015 xfs_buf_iorequest(bp);
1016 } else if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +11001017 (*(bp->b_iodone))(bp);
1018 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 xfs_buf_relse(bp);
1020}
1021
1022void
Nathan Scottce8e9222006-01-11 15:39:08 +11001023xfs_buf_ioend(
1024 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 int schedule)
1026{
Lachlan McIlroy77be55a2007-11-23 16:31:00 +11001027 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +11001028 if (bp->b_error == 0)
1029 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Nathan Scottce8e9222006-01-11 15:39:08 +11001031 XB_TRACE(bp, "iodone", bp->b_iodone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Nathan Scottce8e9222006-01-11 15:39:08 +11001033 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001035 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001036 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 } else {
David Howellsc4028952006-11-22 14:57:56 +00001038 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001041 up(&bp->b_iodonesema);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043}
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045void
Nathan Scottce8e9222006-01-11 15:39:08 +11001046xfs_buf_ioerror(
1047 xfs_buf_t *bp,
1048 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
1050 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001051 bp->b_error = (unsigned short)error;
1052 XB_TRACE(bp, "ioerror", (unsigned long)error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
1055/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001056 * Initiate I/O on a buffer, based on the flags supplied.
1057 * The b_iodone routine in the buffer supplied will only be called
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 * when all of the subsidiary I/O requests, if any, have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 */
1060int
Nathan Scottce8e9222006-01-11 15:39:08 +11001061xfs_buf_iostart(
1062 xfs_buf_t *bp,
1063 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
1065 int status = 0;
1066
Nathan Scottce8e9222006-01-11 15:39:08 +11001067 XB_TRACE(bp, "iostart", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Nathan Scottce8e9222006-01-11 15:39:08 +11001069 if (flags & XBF_DELWRI) {
1070 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC);
1071 bp->b_flags |= flags & (XBF_DELWRI | XBF_ASYNC);
1072 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return status;
1074 }
1075
Nathan Scottce8e9222006-01-11 15:39:08 +11001076 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
1077 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
1078 bp->b_flags |= flags & (XBF_READ | XBF_WRITE | XBF_ASYNC | \
1079 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Nathan Scottce8e9222006-01-11 15:39:08 +11001081 BUG_ON(bp->b_bn == XFS_BUF_DADDR_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 /* For writes allow an alternate strategy routine to precede
1084 * the actual I/O request (which may not be issued at all in
1085 * a shutdown situation, for example).
1086 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001087 status = (flags & XBF_WRITE) ?
1088 xfs_buf_iostrategy(bp) : xfs_buf_iorequest(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 /* Wait for I/O if we are not an async request.
1091 * Note: async I/O request completion will release the buffer,
1092 * and that can already be done by this point. So using the
1093 * buffer pointer from here on, after async I/O, is invalid.
1094 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001095 if (!status && !(flags & XBF_ASYNC))
1096 status = xfs_buf_iowait(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 return status;
1099}
1100
David Chinner7989cb82007-02-10 18:34:56 +11001101STATIC_INLINE int
Nathan Scottce8e9222006-01-11 15:39:08 +11001102_xfs_buf_iolocked(
1103 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
Nathan Scottce8e9222006-01-11 15:39:08 +11001105 ASSERT(bp->b_flags & (XBF_READ | XBF_WRITE));
1106 if (bp->b_flags & XBF_READ)
1107 return bp->b_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 return 0;
1109}
1110
David Chinner7989cb82007-02-10 18:34:56 +11001111STATIC_INLINE void
Nathan Scottce8e9222006-01-11 15:39:08 +11001112_xfs_buf_ioend(
1113 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 int schedule)
1115{
Nathan Scottce8e9222006-01-11 15:39:08 +11001116 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1117 bp->b_locked = 0;
1118 xfs_buf_ioend(bp, schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
1120}
1121
Al Viro782e3b32007-10-12 07:17:47 +01001122STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001123xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 int error)
1126{
Nathan Scottce8e9222006-01-11 15:39:08 +11001127 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1128 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001129 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
Nathan Scottce8e9222006-01-11 15:39:08 +11001132 bp->b_error = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Nathan Scotteedb5532005-09-02 16:39:56 +10001134 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 struct page *page = bvec->bv_page;
1136
Nathan Scott948ecdb2006-09-28 11:03:13 +10001137 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001138 if (unlikely(bp->b_error)) {
1139 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001140 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001141 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 SetPageUptodate(page);
1143 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001144 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1146 }
1147
Nathan Scotteedb5532005-09-02 16:39:56 +10001148 if (--bvec >= bio->bi_io_vec)
1149 prefetchw(&bvec->bv_page->flags);
1150
Nathan Scottce8e9222006-01-11 15:39:08 +11001151 if (_xfs_buf_iolocked(bp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 unlock_page(page);
1153 }
Nathan Scotteedb5532005-09-02 16:39:56 +10001154 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Nathan Scottce8e9222006-01-11 15:39:08 +11001156 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
1159
1160STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001161_xfs_buf_ioapply(
1162 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
1164 int i, rw, map_i, total_nr_pages, nr_pages;
1165 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001166 int offset = bp->b_offset;
1167 int size = bp->b_count_desired;
1168 sector_t sector = bp->b_bn;
1169 unsigned int blocksize = bp->b_target->bt_bsize;
1170 int locking = _xfs_buf_iolocked(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Nathan Scottce8e9222006-01-11 15:39:08 +11001172 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 map_i = 0;
1174
Nathan Scottce8e9222006-01-11 15:39:08 +11001175 if (bp->b_flags & XBF_ORDERED) {
1176 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001177 rw = WRITE_BARRIER;
Nathan Scott51bdd702006-09-28 11:01:57 +10001178 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1179 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1180 bp->b_flags &= ~_XBF_RUN_QUEUES;
1181 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
1182 } else {
1183 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1184 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001185 }
1186
Nathan Scottce8e9222006-01-11 15:39:08 +11001187 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 * we populate up the whole page, and hence the other metadata
1189 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001190 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001192 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
1193 (bp->b_flags & XBF_READ) && locking &&
1194 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 bio = bio_alloc(GFP_NOIO, 1);
1196
Nathan Scottce8e9222006-01-11 15:39:08 +11001197 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001199 bio->bi_end_io = xfs_buf_bio_end_io;
1200 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Nathan Scottce8e9222006-01-11 15:39:08 +11001202 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 size = 0;
1204
Nathan Scottce8e9222006-01-11 15:39:08 +11001205 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 goto submit_io;
1208 }
1209
1210 /* Lock down the pages which we need to for the request */
Nathan Scottce8e9222006-01-11 15:39:08 +11001211 if (locking && (bp->b_flags & XBF_WRITE) && (bp->b_locked == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 for (i = 0; size; i++) {
1213 int nbytes = PAGE_CACHE_SIZE - offset;
Nathan Scottce8e9222006-01-11 15:39:08 +11001214 struct page *page = bp->b_pages[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 if (nbytes > size)
1217 nbytes = size;
1218
1219 lock_page(page);
1220
1221 size -= nbytes;
1222 offset = 0;
1223 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001224 offset = bp->b_offset;
1225 size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 }
1227
1228next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001229 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1231 if (nr_pages > total_nr_pages)
1232 nr_pages = total_nr_pages;
1233
1234 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001235 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001237 bio->bi_end_io = xfs_buf_bio_end_io;
1238 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
1240 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001241 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
1243 if (nbytes > size)
1244 nbytes = size;
1245
Nathan Scottce8e9222006-01-11 15:39:08 +11001246 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1247 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 break;
1249
1250 offset = 0;
1251 sector += nbytes >> BBSHIFT;
1252 size -= nbytes;
1253 total_nr_pages--;
1254 }
1255
1256submit_io:
1257 if (likely(bio->bi_size)) {
1258 submit_bio(rw, bio);
1259 if (size)
1260 goto next_chunk;
1261 } else {
1262 bio_put(bio);
Nathan Scottce8e9222006-01-11 15:39:08 +11001263 xfs_buf_ioerror(bp, EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 }
1265}
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267int
Nathan Scottce8e9222006-01-11 15:39:08 +11001268xfs_buf_iorequest(
1269 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Nathan Scottce8e9222006-01-11 15:39:08 +11001271 XB_TRACE(bp, "iorequest", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Nathan Scottce8e9222006-01-11 15:39:08 +11001273 if (bp->b_flags & XBF_DELWRI) {
1274 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return 0;
1276 }
1277
Nathan Scottce8e9222006-01-11 15:39:08 +11001278 if (bp->b_flags & XBF_WRITE) {
1279 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
1281
Nathan Scottce8e9222006-01-11 15:39:08 +11001282 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 /* Set the count to 1 initially, this will stop an I/O
1285 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001286 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001288 atomic_set(&bp->b_io_remaining, 1);
1289 _xfs_buf_ioapply(bp);
1290 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Nathan Scottce8e9222006-01-11 15:39:08 +11001292 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return 0;
1294}
1295
1296/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001297 * Waits for I/O to complete on the buffer supplied.
1298 * It returns immediately if no I/O is pending.
1299 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 */
1301int
Nathan Scottce8e9222006-01-11 15:39:08 +11001302xfs_buf_iowait(
1303 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
Nathan Scottce8e9222006-01-11 15:39:08 +11001305 XB_TRACE(bp, "iowait", 0);
1306 if (atomic_read(&bp->b_io_remaining))
1307 blk_run_address_space(bp->b_target->bt_mapping);
1308 down(&bp->b_iodonesema);
1309 XB_TRACE(bp, "iowaited", (long)bp->b_error);
1310 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
Nathan Scottce8e9222006-01-11 15:39:08 +11001313xfs_caddr_t
1314xfs_buf_offset(
1315 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 size_t offset)
1317{
1318 struct page *page;
1319
Nathan Scottce8e9222006-01-11 15:39:08 +11001320 if (bp->b_flags & XBF_MAPPED)
1321 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Nathan Scottce8e9222006-01-11 15:39:08 +11001323 offset += bp->b_offset;
1324 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1325 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
1327
1328/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 * Move data into or out of a buffer.
1330 */
1331void
Nathan Scottce8e9222006-01-11 15:39:08 +11001332xfs_buf_iomove(
1333 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 size_t boff, /* starting buffer offset */
1335 size_t bsize, /* length to copy */
1336 caddr_t data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001337 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
1339 size_t bend, cpoff, csize;
1340 struct page *page;
1341
1342 bend = boff + bsize;
1343 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001344 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1345 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001347 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1350
1351 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001352 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 memset(page_address(page) + cpoff, 0, csize);
1354 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001355 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 memcpy(data, page_address(page) + cpoff, csize);
1357 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001358 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 memcpy(page_address(page) + cpoff, data, csize);
1360 }
1361
1362 boff += csize;
1363 data += csize;
1364 }
1365}
1366
1367/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001368 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 */
1370
1371/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001372 * Wait for any bufs with callbacks that have been submitted but
1373 * have not yet returned... walk the hash list for the target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 */
1375void
1376xfs_wait_buftarg(
1377 xfs_buftarg_t *btp)
1378{
1379 xfs_buf_t *bp, *n;
1380 xfs_bufhash_t *hash;
1381 uint i;
1382
1383 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1384 hash = &btp->bt_hash[i];
1385again:
1386 spin_lock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001387 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
1388 ASSERT(btp == bp->b_target);
1389 if (!(bp->b_flags & XBF_FS_MANAGED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 spin_unlock(&hash->bh_lock);
David Chinner2f926582005-09-05 08:33:35 +10001391 /*
1392 * Catch superblock reference count leaks
1393 * immediately
1394 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001395 BUG_ON(bp->b_bn == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 delay(100);
1397 goto again;
1398 }
1399 }
1400 spin_unlock(&hash->bh_lock);
1401 }
1402}
1403
1404/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001405 * Allocate buffer hash table for a given target.
1406 * For devices containing metadata (i.e. not the log/realtime devices)
1407 * we need to allocate a much larger hash table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 */
1409STATIC void
1410xfs_alloc_bufhash(
1411 xfs_buftarg_t *btp,
1412 int external)
1413{
1414 unsigned int i;
1415
1416 btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */
1417 btp->bt_hashmask = (1 << btp->bt_hashshift) - 1;
1418 btp->bt_hash = kmem_zalloc((1 << btp->bt_hashshift) *
Vlad Apostolov93c189c2006-11-11 18:03:49 +11001419 sizeof(xfs_bufhash_t), KM_SLEEP | KM_LARGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1421 spin_lock_init(&btp->bt_hash[i].bh_lock);
1422 INIT_LIST_HEAD(&btp->bt_hash[i].bh_list);
1423 }
1424}
1425
1426STATIC void
1427xfs_free_bufhash(
1428 xfs_buftarg_t *btp)
1429{
Nathan Scottce8e9222006-01-11 15:39:08 +11001430 kmem_free(btp->bt_hash, (1<<btp->bt_hashshift) * sizeof(xfs_bufhash_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 btp->bt_hash = NULL;
1432}
1433
David Chinnera6867a62006-01-11 15:37:58 +11001434/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001435 * buftarg list for delwrite queue processing
David Chinnera6867a62006-01-11 15:37:58 +11001436 */
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001437static LIST_HEAD(xfs_buftarg_list);
David Chinner7989cb82007-02-10 18:34:56 +11001438static DEFINE_SPINLOCK(xfs_buftarg_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001439
1440STATIC void
1441xfs_register_buftarg(
1442 xfs_buftarg_t *btp)
1443{
1444 spin_lock(&xfs_buftarg_lock);
1445 list_add(&btp->bt_list, &xfs_buftarg_list);
1446 spin_unlock(&xfs_buftarg_lock);
1447}
1448
1449STATIC void
1450xfs_unregister_buftarg(
1451 xfs_buftarg_t *btp)
1452{
1453 spin_lock(&xfs_buftarg_lock);
1454 list_del(&btp->bt_list);
1455 spin_unlock(&xfs_buftarg_lock);
1456}
1457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458void
1459xfs_free_buftarg(
1460 xfs_buftarg_t *btp,
1461 int external)
1462{
1463 xfs_flush_buftarg(btp, 1);
David Chinnerf4a9f282007-06-05 16:24:27 +10001464 xfs_blkdev_issue_flush(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 if (external)
Nathan Scottce8e9222006-01-11 15:39:08 +11001466 xfs_blkdev_put(btp->bt_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 xfs_free_bufhash(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001468 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001469
Nathan Scottce8e9222006-01-11 15:39:08 +11001470 /* Unregister the buftarg first so that we don't get a
1471 * wakeup finding a non-existent task
1472 */
David Chinnera6867a62006-01-11 15:37:58 +11001473 xfs_unregister_buftarg(btp);
1474 kthread_stop(btp->bt_task);
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 kmem_free(btp, sizeof(*btp));
1477}
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479STATIC int
1480xfs_setsize_buftarg_flags(
1481 xfs_buftarg_t *btp,
1482 unsigned int blocksize,
1483 unsigned int sectorsize,
1484 int verbose)
1485{
Nathan Scottce8e9222006-01-11 15:39:08 +11001486 btp->bt_bsize = blocksize;
1487 btp->bt_sshift = ffs(sectorsize) - 1;
1488 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Nathan Scottce8e9222006-01-11 15:39:08 +11001490 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 printk(KERN_WARNING
1492 "XFS: Cannot set_blocksize to %u on device %s\n",
1493 sectorsize, XFS_BUFTARG_NAME(btp));
1494 return EINVAL;
1495 }
1496
1497 if (verbose &&
1498 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1499 printk(KERN_WARNING
1500 "XFS: %u byte sectors in use on device %s. "
1501 "This is suboptimal; %u or greater is ideal.\n",
1502 sectorsize, XFS_BUFTARG_NAME(btp),
1503 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1504 }
1505
1506 return 0;
1507}
1508
1509/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001510 * When allocating the initial buffer target we have not yet
1511 * read in the superblock, so don't know what sized sectors
1512 * are being used is at this early stage. Play safe.
1513 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514STATIC int
1515xfs_setsize_buftarg_early(
1516 xfs_buftarg_t *btp,
1517 struct block_device *bdev)
1518{
1519 return xfs_setsize_buftarg_flags(btp,
1520 PAGE_CACHE_SIZE, bdev_hardsect_size(bdev), 0);
1521}
1522
1523int
1524xfs_setsize_buftarg(
1525 xfs_buftarg_t *btp,
1526 unsigned int blocksize,
1527 unsigned int sectorsize)
1528{
1529 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1530}
1531
1532STATIC int
1533xfs_mapping_buftarg(
1534 xfs_buftarg_t *btp,
1535 struct block_device *bdev)
1536{
1537 struct backing_dev_info *bdi;
1538 struct inode *inode;
1539 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001540 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001542 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 };
1544
1545 inode = new_inode(bdev->bd_inode->i_sb);
1546 if (!inode) {
1547 printk(KERN_WARNING
1548 "XFS: Cannot allocate mapping inode for device %s\n",
1549 XFS_BUFTARG_NAME(btp));
1550 return ENOMEM;
1551 }
1552 inode->i_mode = S_IFBLK;
1553 inode->i_bdev = bdev;
1554 inode->i_rdev = bdev->bd_dev;
1555 bdi = blk_get_backing_dev_info(bdev);
1556 if (!bdi)
1557 bdi = &default_backing_dev_info;
1558 mapping = &inode->i_data;
1559 mapping->a_ops = &mapping_aops;
1560 mapping->backing_dev_info = bdi;
1561 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001562 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 return 0;
1564}
1565
David Chinnera6867a62006-01-11 15:37:58 +11001566STATIC int
1567xfs_alloc_delwrite_queue(
1568 xfs_buftarg_t *btp)
1569{
1570 int error = 0;
1571
1572 INIT_LIST_HEAD(&btp->bt_list);
1573 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
1574 spinlock_init(&btp->bt_delwrite_lock, "delwri_lock");
1575 btp->bt_flags = 0;
1576 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd");
1577 if (IS_ERR(btp->bt_task)) {
1578 error = PTR_ERR(btp->bt_task);
1579 goto out_error;
1580 }
1581 xfs_register_buftarg(btp);
1582out_error:
1583 return error;
1584}
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586xfs_buftarg_t *
1587xfs_alloc_buftarg(
1588 struct block_device *bdev,
1589 int external)
1590{
1591 xfs_buftarg_t *btp;
1592
1593 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1594
Nathan Scottce8e9222006-01-11 15:39:08 +11001595 btp->bt_dev = bdev->bd_dev;
1596 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 if (xfs_setsize_buftarg_early(btp, bdev))
1598 goto error;
1599 if (xfs_mapping_buftarg(btp, bdev))
1600 goto error;
David Chinnera6867a62006-01-11 15:37:58 +11001601 if (xfs_alloc_delwrite_queue(btp))
1602 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 xfs_alloc_bufhash(btp, external);
1604 return btp;
1605
1606error:
1607 kmem_free(btp, sizeof(*btp));
1608 return NULL;
1609}
1610
1611
1612/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001613 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001616xfs_buf_delwri_queue(
1617 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 int unlock)
1619{
Nathan Scottce8e9222006-01-11 15:39:08 +11001620 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1621 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001622
Nathan Scottce8e9222006-01-11 15:39:08 +11001623 XB_TRACE(bp, "delwri_q", (long)unlock);
1624 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
David Chinnera6867a62006-01-11 15:37:58 +11001626 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001628 if (!list_empty(&bp->b_list)) {
1629 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1630 if (unlock)
1631 atomic_dec(&bp->b_hold);
1632 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 }
1634
Nathan Scottce8e9222006-01-11 15:39:08 +11001635 bp->b_flags |= _XBF_DELWRI_Q;
1636 list_add_tail(&bp->b_list, dwq);
1637 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001638 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
1640 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001641 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
1644void
Nathan Scottce8e9222006-01-11 15:39:08 +11001645xfs_buf_delwri_dequeue(
1646 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Nathan Scottce8e9222006-01-11 15:39:08 +11001648 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 int dequeued = 0;
1650
David Chinnera6867a62006-01-11 15:37:58 +11001651 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001652 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1653 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1654 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 dequeued = 1;
1656 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001657 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001658 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001661 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Nathan Scottce8e9222006-01-11 15:39:08 +11001663 XB_TRACE(bp, "delwri_dq", (long)dequeued);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664}
1665
1666STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001667xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 struct workqueue_struct *queue)
1669{
1670 flush_workqueue(queue);
1671}
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001674xfsbufd_wakeup(
Nathan Scott15c84a42005-11-04 10:51:01 +11001675 int priority,
1676 gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001678 xfs_buftarg_t *btp;
David Chinnera6867a62006-01-11 15:37:58 +11001679
1680 spin_lock(&xfs_buftarg_lock);
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001681 list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001682 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
David Chinnera6867a62006-01-11 15:37:58 +11001683 continue;
Nathan Scottce8e9222006-01-11 15:39:08 +11001684 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
David Chinnera6867a62006-01-11 15:37:58 +11001685 wake_up_process(btp->bt_task);
1686 }
1687 spin_unlock(&xfs_buftarg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 return 0;
1689}
1690
David Chinner585e6d82007-02-10 18:32:29 +11001691/*
1692 * Move as many buffers as specified to the supplied list
1693 * idicating if we skipped any buffers to prevent deadlocks.
1694 */
1695STATIC int
1696xfs_buf_delwri_split(
1697 xfs_buftarg_t *target,
1698 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001699 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001700{
1701 xfs_buf_t *bp, *n;
1702 struct list_head *dwq = &target->bt_delwrite_queue;
1703 spinlock_t *dwlk = &target->bt_delwrite_lock;
1704 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001705 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001706
David Chinner5e6a07d2007-02-10 18:34:49 +11001707 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001708 INIT_LIST_HEAD(list);
1709 spin_lock(dwlk);
1710 list_for_each_entry_safe(bp, n, dwq, b_list) {
1711 XB_TRACE(bp, "walkq1", (long)xfs_buf_ispin(bp));
1712 ASSERT(bp->b_flags & XBF_DELWRI);
1713
1714 if (!xfs_buf_ispin(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001715 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001716 time_before(jiffies, bp->b_queuetime + age)) {
1717 xfs_buf_unlock(bp);
1718 break;
1719 }
1720
1721 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1722 _XBF_RUN_QUEUES);
1723 bp->b_flags |= XBF_WRITE;
1724 list_move_tail(&bp->b_list, list);
1725 } else
1726 skipped++;
1727 }
1728 spin_unlock(dwlk);
1729
1730 return skipped;
1731
1732}
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001735xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001736 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
David Chinner585e6d82007-02-10 18:32:29 +11001738 struct list_head tmp;
1739 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
1740 int count;
1741 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 current->flags |= PF_MEMALLOC;
1744
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001745 set_freezable();
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 do {
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001748 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001749 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001750 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001751 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001752 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Nathan Scott15c84a42005-11-04 10:51:01 +11001755 schedule_timeout_interruptible(
1756 xfs_buf_timer_centisecs * msecs_to_jiffies(10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
David Chinner585e6d82007-02-10 18:32:29 +11001758 xfs_buf_delwri_split(target, &tmp,
David Chinner5e6a07d2007-02-10 18:34:49 +11001759 xfs_buf_age_centisecs * msecs_to_jiffies(10));
David Chinner585e6d82007-02-10 18:32:29 +11001760
Nathan Scottf07c2252006-09-28 10:52:15 +10001761 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001763 bp = list_entry(tmp.next, xfs_buf_t, b_list);
1764 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Nathan Scottce8e9222006-01-11 15:39:08 +11001766 list_del_init(&bp->b_list);
1767 xfs_buf_iostrategy(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001768 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 }
1770
1771 if (as_list_len > 0)
1772 purge_addresses();
Nathan Scottf07c2252006-09-28 10:52:15 +10001773 if (count)
1774 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001776 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001778 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779}
1780
1781/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001782 * Go through all incore buffers, and release buffers if they belong to
1783 * the given device. This is used in filesystem error handling to
1784 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 */
1786int
1787xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001788 xfs_buftarg_t *target,
1789 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790{
David Chinner585e6d82007-02-10 18:32:29 +11001791 struct list_head tmp;
1792 xfs_buf_t *bp, *n;
1793 int pincount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Nathan Scottce8e9222006-01-11 15:39:08 +11001795 xfs_buf_runall_queues(xfsdatad_workqueue);
1796 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
David Chinner5e6a07d2007-02-10 18:34:49 +11001798 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
1799 pincount = xfs_buf_delwri_split(target, &tmp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
1801 /*
1802 * Dropped the delayed write list lock, now walk the temporary list
1803 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001804 list_for_each_entry_safe(bp, n, &tmp, b_list) {
David Chinner585e6d82007-02-10 18:32:29 +11001805 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 if (wait)
Nathan Scottce8e9222006-01-11 15:39:08 +11001807 bp->b_flags &= ~XBF_ASYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 else
Nathan Scottce8e9222006-01-11 15:39:08 +11001809 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Nathan Scottce8e9222006-01-11 15:39:08 +11001811 xfs_buf_iostrategy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 }
1813
Nathan Scottf07c2252006-09-28 10:52:15 +10001814 if (wait)
1815 blk_run_address_space(target->bt_mapping);
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 /*
1818 * Remaining list items must be flushed before returning
1819 */
1820 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001821 bp = list_entry(tmp.next, xfs_buf_t, b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Nathan Scottce8e9222006-01-11 15:39:08 +11001823 list_del_init(&bp->b_list);
1824 xfs_iowait(bp);
1825 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 }
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return pincount;
1829}
1830
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001831int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001832xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
Nathan Scottce8e9222006-01-11 15:39:08 +11001834#ifdef XFS_BUF_TRACE
1835 xfs_buf_trace_buf = ktrace_alloc(XFS_BUF_TRACE_SIZE, KM_SLEEP);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001836#endif
1837
Nathan Scott87582802006-03-14 13:18:19 +11001838 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1839 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001840 if (!xfs_buf_zone)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001841 goto out_free_trace_buf;
1842
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001843 xfslogd_workqueue = create_workqueue("xfslogd");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001844 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001845 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001847 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001848 if (!xfsdatad_workqueue)
1849 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Rusty Russell8e1f9362007-07-17 04:03:17 -07001851 register_shrinker(&xfs_buf_shake);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001852 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001854 out_destroy_xfslogd_workqueue:
1855 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001856 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001857 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001858 out_free_trace_buf:
Nathan Scottce8e9222006-01-11 15:39:08 +11001859#ifdef XFS_BUF_TRACE
1860 ktrace_free(xfs_buf_trace_buf);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001861#endif
Nathan Scott87582802006-03-14 13:18:19 +11001862 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863}
1864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865void
Nathan Scottce8e9222006-01-11 15:39:08 +11001866xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
Rusty Russell8e1f9362007-07-17 04:03:17 -07001868 unregister_shrinker(&xfs_buf_shake);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001869 destroy_workqueue(xfsdatad_workqueue);
1870 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001871 kmem_zone_destroy(xfs_buf_zone);
1872#ifdef XFS_BUF_TRACE
1873 ktrace_free(xfs_buf_trace_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001876
1877#ifdef CONFIG_KDB_MODULES
1878struct list_head *
1879xfs_get_buftarg_list(void)
1880{
1881 return &xfs_buftarg_list;
1882}
1883#endif