blob: b9c304a629ee130cebd9ef99259fc173682db1ec [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,
Lachlan McIlroyd63f1542008-08-13 16:28:40 +100061 (void *)(unsigned long)bp->b_sema.count,
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);
David Chinnerb4dd3302008-08-13 16:36:11 +1000256 init_completion(&bp->b_iowait);
Nathan Scottce8e9222006-01-11 15:39:08 +1100257 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) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000313 kmem_free(bp->b_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
315}
316
317/*
318 * Releases the specified buffer.
319 *
320 * The modification state of any associated pages is left unchanged.
Nathan Scottce8e9222006-01-11 15:39:08 +1100321 * The buffer most not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 * hashed and refcounted buffers
323 */
324void
Nathan Scottce8e9222006-01-11 15:39:08 +1100325xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 xfs_buf_t *bp)
327{
Nathan Scottce8e9222006-01-11 15:39:08 +1100328 XB_TRACE(bp, "free", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Nathan Scottce8e9222006-01-11 15:39:08 +1100330 ASSERT(list_empty(&bp->b_hash_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000332 if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 uint i;
334
Nathan Scottce8e9222006-01-11 15:39:08 +1100335 if ((bp->b_flags & XBF_MAPPED) && (bp->b_page_count > 1))
336 free_address(bp->b_addr - bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Nathan Scott948ecdb2006-09-28 11:03:13 +1000338 for (i = 0; i < bp->b_page_count; i++) {
339 struct page *page = bp->b_pages[i];
340
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000341 if (bp->b_flags & _XBF_PAGE_CACHE)
342 ASSERT(!PagePrivate(page));
Nathan Scott948ecdb2006-09-28 11:03:13 +1000343 page_cache_release(page);
344 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100345 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
347
Nathan Scottce8e9222006-01-11 15:39:08 +1100348 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
351/*
352 * Finds all pages for buffer in question and builds it's page list.
353 */
354STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100355_xfs_buf_lookup_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 xfs_buf_t *bp,
357 uint flags)
358{
Nathan Scottce8e9222006-01-11 15:39:08 +1100359 struct address_space *mapping = bp->b_target->bt_mapping;
360 size_t blocksize = bp->b_target->bt_bsize;
361 size_t size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100363 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 unsigned short page_count, i;
365 pgoff_t first;
Nathan Scott204ab252006-01-11 20:50:22 +1100366 xfs_off_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 int error;
368
Nathan Scottce8e9222006-01-11 15:39:08 +1100369 end = bp->b_file_offset + bp->b_buffer_length;
370 page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Nathan Scottce8e9222006-01-11 15:39:08 +1100372 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (unlikely(error))
374 return error;
Nathan Scottce8e9222006-01-11 15:39:08 +1100375 bp->b_flags |= _XBF_PAGE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Nathan Scottce8e9222006-01-11 15:39:08 +1100377 offset = bp->b_offset;
378 first = bp->b_file_offset >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Nathan Scottce8e9222006-01-11 15:39:08 +1100380 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 struct page *page;
382 uint retries = 0;
383
384 retry:
385 page = find_or_create_page(mapping, first + i, gfp_mask);
386 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100387 if (flags & XBF_READ_AHEAD) {
388 bp->b_page_count = i;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000389 for (i = 0; i < bp->b_page_count; i++)
390 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return -ENOMEM;
392 }
393
394 /*
395 * This could deadlock.
396 *
397 * But until all the XFS lowlevel code is revamped to
398 * handle buffer allocation failures we can't do much.
399 */
400 if (!(++retries % 100))
401 printk(KERN_ERR
402 "XFS: possible memory allocation "
403 "deadlock in %s (mode:0x%x)\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000404 __func__, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Nathan Scottce8e9222006-01-11 15:39:08 +1100406 XFS_STATS_INC(xb_page_retries);
Christoph Hellwig23ea4032005-06-21 15:14:01 +1000407 xfsbufd_wakeup(0, gfp_mask);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700408 congestion_wait(WRITE, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 goto retry;
410 }
411
Nathan Scottce8e9222006-01-11 15:39:08 +1100412 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
415 size -= nbytes;
416
Nathan Scott948ecdb2006-09-28 11:03:13 +1000417 ASSERT(!PagePrivate(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (!PageUptodate(page)) {
419 page_count--;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000420 if (blocksize >= PAGE_CACHE_SIZE) {
421 if (flags & XBF_READ)
422 bp->b_flags |= _XBF_PAGE_LOCKED;
423 } else if (!PagePrivate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (test_page_region(page, offset, nbytes))
425 page_count++;
426 }
427 }
428
Nathan Scottce8e9222006-01-11 15:39:08 +1100429 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 offset = 0;
431 }
432
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000433 if (!(bp->b_flags & _XBF_PAGE_LOCKED)) {
434 for (i = 0; i < bp->b_page_count; i++)
435 unlock_page(bp->b_pages[i]);
436 }
437
Nathan Scottce8e9222006-01-11 15:39:08 +1100438 if (page_count == bp->b_page_count)
439 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Nathan Scottce8e9222006-01-11 15:39:08 +1100441 XB_TRACE(bp, "lookup_pages", (long)page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return error;
443}
444
445/*
446 * Map buffer into kernel address-space if nessecary.
447 */
448STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100449_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 xfs_buf_t *bp,
451 uint flags)
452{
453 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100454 if (bp->b_page_count == 1) {
455 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
456 bp->b_flags |= XBF_MAPPED;
457 } else if (flags & XBF_MAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (as_list_len > 64)
459 purge_addresses();
Nathan Scottce8e9222006-01-11 15:39:08 +1100460 bp->b_addr = vmap(bp->b_pages, bp->b_page_count,
461 VM_MAP, PAGE_KERNEL);
462 if (unlikely(bp->b_addr == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100464 bp->b_addr += bp->b_offset;
465 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
467
468 return 0;
469}
470
471/*
472 * Finding and Reading Buffers
473 */
474
475/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100476 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 * a given range of an inode. The buffer is returned
478 * locked. If other overlapping buffers exist, they are
479 * released before the new buffer is created and locked,
480 * which may imply that this call will block until those buffers
481 * are unlocked. No I/O is implied by this call.
482 */
483xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100484_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab252006-01-11 20:50:22 +1100486 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100488 xfs_buf_flags_t flags,
489 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Nathan Scott204ab252006-01-11 20:50:22 +1100491 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 size_t range_length;
493 xfs_bufhash_t *hash;
Nathan Scottce8e9222006-01-11 15:39:08 +1100494 xfs_buf_t *bp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 range_base = (ioff << BBSHIFT);
497 range_length = (isize << BBSHIFT);
498
499 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100500 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab252006-01-11 20:50:22 +1100501 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)];
504
505 spin_lock(&hash->bh_lock);
506
Nathan Scottce8e9222006-01-11 15:39:08 +1100507 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
508 ASSERT(btp == bp->b_target);
509 if (bp->b_file_offset == range_base &&
510 bp->b_buffer_length == range_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100512 * If we look at something, bring it to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 * front of the list for next time.
514 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100515 atomic_inc(&bp->b_hold);
516 list_move(&bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 goto found;
518 }
519 }
520
521 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100522 if (new_bp) {
523 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 range_length, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100525 new_bp->b_hash = hash;
526 list_add(&new_bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100528 XFS_STATS_INC(xb_miss_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530
531 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100532 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534found:
535 spin_unlock(&hash->bh_lock);
536
537 /* Attempt to get the semaphore without sleeping,
538 * if this does not work then we need to drop the
539 * spinlock and do a hard attempt on the semaphore.
540 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100541 if (down_trylock(&bp->b_sema)) {
542 if (!(flags & XBF_TRYLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 /* wait for buffer ownership */
Nathan Scottce8e9222006-01-11 15:39:08 +1100544 XB_TRACE(bp, "get_lock", 0);
545 xfs_buf_lock(bp);
546 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 } else {
548 /* We asked for a trylock and failed, no need
549 * to look at file offset and length here, we
Nathan Scottce8e9222006-01-11 15:39:08 +1100550 * know that this buffer at least overlaps our
551 * buffer and is locked, therefore our buffer
552 * either does not exist, or is this buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100554 xfs_buf_rele(bp);
555 XFS_STATS_INC(xb_busy_locked);
556 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558 } else {
559 /* trylock worked */
Nathan Scottce8e9222006-01-11 15:39:08 +1100560 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
562
Nathan Scottce8e9222006-01-11 15:39:08 +1100563 if (bp->b_flags & XBF_STALE) {
564 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
565 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000566 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100567 XB_TRACE(bp, "got_lock", 0);
568 XFS_STATS_INC(xb_get_locked);
569 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570}
571
572/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100573 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 * Storage in memory for all portions of the buffer will be allocated,
575 * although backing storage may not be.
576 */
577xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100578xfs_buf_get_flags(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100580 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100582 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Nathan Scottce8e9222006-01-11 15:39:08 +1100584 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 int error = 0, i;
586
Nathan Scottce8e9222006-01-11 15:39:08 +1100587 new_bp = xfs_buf_allocate(flags);
588 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return NULL;
590
Nathan Scottce8e9222006-01-11 15:39:08 +1100591 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
592 if (bp == new_bp) {
593 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (error)
595 goto no_buffer;
596 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100597 xfs_buf_deallocate(new_bp);
598 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return NULL;
600 }
601
Nathan Scottce8e9222006-01-11 15:39:08 +1100602 for (i = 0; i < bp->b_page_count; i++)
603 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Nathan Scottce8e9222006-01-11 15:39:08 +1100605 if (!(bp->b_flags & XBF_MAPPED)) {
606 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (unlikely(error)) {
608 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000609 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 goto no_buffer;
611 }
612 }
613
Nathan Scottce8e9222006-01-11 15:39:08 +1100614 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 /*
617 * Always fill in the block number now, the mapped cases can do
618 * their own overlay of this later.
619 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100620 bp->b_bn = ioff;
621 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Nathan Scottce8e9222006-01-11 15:39:08 +1100623 XB_TRACE(bp, "get", (unsigned long)flags);
624 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100627 if (flags & (XBF_LOCK | XBF_TRYLOCK))
628 xfs_buf_unlock(bp);
629 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return NULL;
631}
632
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100633STATIC int
634_xfs_buf_read(
635 xfs_buf_t *bp,
636 xfs_buf_flags_t flags)
637{
638 int status;
639
640 XB_TRACE(bp, "_xfs_buf_read", (unsigned long)flags);
641
642 ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE)));
643 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
644
645 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
646 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
647 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | \
648 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
649
650 status = xfs_buf_iorequest(bp);
651 if (!status && !(flags & XBF_ASYNC))
652 status = xfs_buf_iowait(bp);
653 return status;
654}
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656xfs_buf_t *
657xfs_buf_read_flags(
658 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100659 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100661 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Nathan Scottce8e9222006-01-11 15:39:08 +1100663 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Nathan Scottce8e9222006-01-11 15:39:08 +1100665 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Nathan Scottce8e9222006-01-11 15:39:08 +1100667 bp = xfs_buf_get_flags(target, ioff, isize, flags);
668 if (bp) {
669 if (!XFS_BUF_ISDONE(bp)) {
670 XB_TRACE(bp, "read", (unsigned long)flags);
671 XFS_STATS_INC(xb_get_read);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100672 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100673 } else if (flags & XBF_ASYNC) {
674 XB_TRACE(bp, "read_async", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 /*
676 * Read ahead call which is already satisfied,
677 * drop the buffer
678 */
679 goto no_buffer;
680 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100681 XB_TRACE(bp, "read_done", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100683 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685 }
686
Nathan Scottce8e9222006-01-11 15:39:08 +1100687 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100690 if (flags & (XBF_LOCK | XBF_TRYLOCK))
691 xfs_buf_unlock(bp);
692 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return NULL;
694}
695
696/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100697 * If we are not low on memory then do the readahead in a deadlock
698 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 */
700void
Nathan Scottce8e9222006-01-11 15:39:08 +1100701xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100703 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100705 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
707 struct backing_dev_info *bdi;
708
Nathan Scottce8e9222006-01-11 15:39:08 +1100709 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (bdi_read_congested(bdi))
711 return;
712
Nathan Scottce8e9222006-01-11 15:39:08 +1100713 flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 xfs_buf_read_flags(target, ioff, isize, flags);
715}
716
717xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100718xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 size_t len,
720 xfs_buftarg_t *target)
721{
Nathan Scottce8e9222006-01-11 15:39:08 +1100722 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Nathan Scottce8e9222006-01-11 15:39:08 +1100724 bp = xfs_buf_allocate(0);
725 if (bp)
726 _xfs_buf_initialize(bp, target, 0, len, 0);
727 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
730static inline struct page *
731mem_to_page(
732 void *addr)
733{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800734 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return virt_to_page(addr);
736 } else {
737 return vmalloc_to_page(addr);
738 }
739}
740
741int
Nathan Scottce8e9222006-01-11 15:39:08 +1100742xfs_buf_associate_memory(
743 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 void *mem,
745 size_t len)
746{
747 int rval;
748 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100749 unsigned long pageaddr;
750 unsigned long offset;
751 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 int page_count;
753
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100754 pageaddr = (unsigned long)mem & PAGE_CACHE_MASK;
755 offset = (unsigned long)mem - pageaddr;
756 buflen = PAGE_CACHE_ALIGN(len + offset);
757 page_count = buflen >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100760 if (bp->b_pages)
761 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Nathan Scottce8e9222006-01-11 15:39:08 +1100763 bp->b_pages = NULL;
764 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Nathan Scottce8e9222006-01-11 15:39:08 +1100766 rval = _xfs_buf_get_pages(bp, page_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (rval)
768 return rval;
769
Nathan Scottce8e9222006-01-11 15:39:08 +1100770 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100772 for (i = 0; i < bp->b_page_count; i++) {
773 bp->b_pages[i] = mem_to_page((void *)pageaddr);
774 pageaddr += PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100777 bp->b_count_desired = len;
778 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100779 bp->b_flags |= XBF_MAPPED;
Christoph Hellwig6ab455e2008-05-19 16:34:42 +1000780 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 return 0;
783}
784
785xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100786xfs_buf_get_noaddr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 size_t len,
788 xfs_buftarg_t *target)
789{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000790 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
791 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Nathan Scottce8e9222006-01-11 15:39:08 +1100794 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (unlikely(bp == NULL))
796 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100797 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000799 error = _xfs_buf_get_pages(bp, page_count, 0);
800 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 goto fail_free_buf;
802
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000803 for (i = 0; i < page_count; i++) {
804 bp->b_pages[i] = alloc_page(GFP_KERNEL);
805 if (!bp->b_pages[i])
806 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000808 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000810 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
811 if (unlikely(error)) {
812 printk(KERN_WARNING "%s: failed to map pages\n",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000813 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Nathan Scottce8e9222006-01-11 15:39:08 +1100817 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000819 XB_TRACE(bp, "no_daddr", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000823 while (--i >= 0)
824 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000825 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000827 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 fail:
829 return NULL;
830}
831
832/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 * Increment reference count on buffer, to hold the buffer concurrently
834 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 * Must hold the buffer already to call this function.
836 */
837void
Nathan Scottce8e9222006-01-11 15:39:08 +1100838xfs_buf_hold(
839 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Nathan Scottce8e9222006-01-11 15:39:08 +1100841 atomic_inc(&bp->b_hold);
842 XB_TRACE(bp, "hold", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
845/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100846 * Releases a hold on the specified buffer. If the
847 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 */
849void
Nathan Scottce8e9222006-01-11 15:39:08 +1100850xfs_buf_rele(
851 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Nathan Scottce8e9222006-01-11 15:39:08 +1100853 xfs_bufhash_t *hash = bp->b_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Nathan Scottce8e9222006-01-11 15:39:08 +1100855 XB_TRACE(bp, "rele", bp->b_relse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Nathan Scottfad3aa12006-02-01 12:14:52 +1100857 if (unlikely(!hash)) {
858 ASSERT(!bp->b_relse);
859 if (atomic_dec_and_test(&bp->b_hold))
860 xfs_buf_free(bp);
861 return;
862 }
863
Lachlan McIlroy37906892008-08-13 15:42:10 +1000864 ASSERT(atomic_read(&bp->b_hold) > 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100865 if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) {
866 if (bp->b_relse) {
867 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100869 (*(bp->b_relse)) (bp);
870 } else if (bp->b_flags & XBF_FS_MANAGED) {
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100871 spin_unlock(&hash->bh_lock);
872 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100873 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
874 list_del_init(&bp->b_hash_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100876 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878 }
879}
880
881
882/*
883 * Mutual exclusion on buffers. Locking model:
884 *
885 * Buffers associated with inodes for which buffer locking
886 * is not enabled are not protected by semaphores, and are
887 * assumed to be exclusively owned by the caller. There is a
888 * spinlock in the buffer, used by the caller when concurrent
889 * access is possible.
890 */
891
892/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100893 * Locks a buffer object, if it is not already locked.
894 * Note that this in no way locks the underlying pages, so it is only
895 * useful for synchronizing concurrent use of buffer objects, not for
896 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 */
898int
Nathan Scottce8e9222006-01-11 15:39:08 +1100899xfs_buf_cond_lock(
900 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 int locked;
903
Nathan Scottce8e9222006-01-11 15:39:08 +1100904 locked = down_trylock(&bp->b_sema) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (locked) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100906 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100908 XB_TRACE(bp, "cond_lock", (long)locked);
909 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
912#if defined(DEBUG) || defined(XFS_BLI_TRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913int
Nathan Scottce8e9222006-01-11 15:39:08 +1100914xfs_buf_lock_value(
915 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Stephen Rothwelladaa6932008-04-22 15:26:13 +1000917 return bp->b_sema.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919#endif
920
921/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100922 * Locks a buffer object.
923 * Note that this in no way locks the underlying pages, so it is only
924 * useful for synchronizing concurrent use of buffer objects, not for
925 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100927void
928xfs_buf_lock(
929 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Nathan Scottce8e9222006-01-11 15:39:08 +1100931 XB_TRACE(bp, "lock", 0);
932 if (atomic_read(&bp->b_io_remaining))
933 blk_run_address_space(bp->b_target->bt_mapping);
934 down(&bp->b_sema);
935 XB_SET_OWNER(bp);
936 XB_TRACE(bp, "locked", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
939/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100940 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000941 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100942 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000943 * take a reference for the delwri queue because the unlocker is going to
944 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 */
946void
Nathan Scottce8e9222006-01-11 15:39:08 +1100947xfs_buf_unlock(
948 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
Nathan Scottce8e9222006-01-11 15:39:08 +1100950 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
951 atomic_inc(&bp->b_hold);
952 bp->b_flags |= XBF_ASYNC;
953 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000954 }
955
Nathan Scottce8e9222006-01-11 15:39:08 +1100956 XB_CLEAR_OWNER(bp);
957 up(&bp->b_sema);
958 XB_TRACE(bp, "unlock", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
961
962/*
963 * Pinning Buffer Storage in Memory
Nathan Scottce8e9222006-01-11 15:39:08 +1100964 * Ensure that no attempt to force a buffer to disk will succeed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 */
966void
Nathan Scottce8e9222006-01-11 15:39:08 +1100967xfs_buf_pin(
968 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Nathan Scottce8e9222006-01-11 15:39:08 +1100970 atomic_inc(&bp->b_pin_count);
971 XB_TRACE(bp, "pin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972}
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974void
Nathan Scottce8e9222006-01-11 15:39:08 +1100975xfs_buf_unpin(
976 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Nathan Scottce8e9222006-01-11 15:39:08 +1100978 if (atomic_dec_and_test(&bp->b_pin_count))
979 wake_up_all(&bp->b_waiters);
980 XB_TRACE(bp, "unpin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
982
983int
Nathan Scottce8e9222006-01-11 15:39:08 +1100984xfs_buf_ispin(
985 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
Nathan Scottce8e9222006-01-11 15:39:08 +1100987 return atomic_read(&bp->b_pin_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
Nathan Scottce8e9222006-01-11 15:39:08 +1100990STATIC void
991xfs_buf_wait_unpin(
992 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
994 DECLARE_WAITQUEUE (wait, current);
995
Nathan Scottce8e9222006-01-11 15:39:08 +1100996 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return;
998
Nathan Scottce8e9222006-01-11 15:39:08 +1100999 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 for (;;) {
1001 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +11001002 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001004 if (atomic_read(&bp->b_io_remaining))
1005 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 schedule();
1007 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001008 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 set_current_state(TASK_RUNNING);
1010}
1011
1012/*
1013 * Buffer Utility Routines
1014 */
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001017xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +00001018 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
David Howellsc4028952006-11-22 14:57:56 +00001020 xfs_buf_t *bp =
1021 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
David Chinner0bfefc42007-05-14 18:24:23 +10001023 /*
1024 * We can get an EOPNOTSUPP to ordered writes. Here we clear the
1025 * ordered flag and reissue them. Because we can't tell the higher
1026 * layers directly that they should not issue ordered I/O anymore, they
Christoph Hellwig73f6aa42008-10-10 17:28:29 +11001027 * need to check if the _XFS_BARRIER_FAILED flag was set during I/O completion.
David Chinner0bfefc42007-05-14 18:24:23 +10001028 */
1029 if ((bp->b_error == EOPNOTSUPP) &&
1030 (bp->b_flags & (XBF_ORDERED|XBF_ASYNC)) == (XBF_ORDERED|XBF_ASYNC)) {
1031 XB_TRACE(bp, "ordered_retry", bp->b_iodone);
1032 bp->b_flags &= ~XBF_ORDERED;
Christoph Hellwig73f6aa42008-10-10 17:28:29 +11001033 bp->b_flags |= _XFS_BARRIER_FAILED;
David Chinner0bfefc42007-05-14 18:24:23 +10001034 xfs_buf_iorequest(bp);
1035 } else if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +11001036 (*(bp->b_iodone))(bp);
1037 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 xfs_buf_relse(bp);
1039}
1040
1041void
Nathan Scottce8e9222006-01-11 15:39:08 +11001042xfs_buf_ioend(
1043 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 int schedule)
1045{
Lachlan McIlroy77be55a2007-11-23 16:31:00 +11001046 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +11001047 if (bp->b_error == 0)
1048 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Nathan Scottce8e9222006-01-11 15:39:08 +11001050 XB_TRACE(bp, "iodone", bp->b_iodone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Nathan Scottce8e9222006-01-11 15:39:08 +11001052 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001054 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001055 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 } else {
David Howellsc4028952006-11-22 14:57:56 +00001057 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 }
1059 } else {
David Chinnerb4dd3302008-08-13 16:36:11 +10001060 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
1062}
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064void
Nathan Scottce8e9222006-01-11 15:39:08 +11001065xfs_buf_ioerror(
1066 xfs_buf_t *bp,
1067 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
1069 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001070 bp->b_error = (unsigned short)error;
1071 XB_TRACE(bp, "ioerror", (unsigned long)error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072}
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074int
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001075xfs_bawrite(
1076 void *mp,
1077 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001079 XB_TRACE(bp, "bawrite", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001081 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001083 xfs_buf_delwri_dequeue(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001085 bp->b_flags &= ~(XBF_READ | XBF_DELWRI | XBF_READ_AHEAD);
1086 bp->b_flags |= (XBF_WRITE | XBF_ASYNC | _XBF_RUN_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Christoph Hellwig15ac08a2008-12-09 04:47:30 -05001088 bp->b_mount = mp;
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001089 bp->b_strat = xfs_bdstrat_cb;
1090 return xfs_bdstrat_cb(bp);
1091}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001093void
1094xfs_bdwrite(
1095 void *mp,
1096 struct xfs_buf *bp)
1097{
1098 XB_TRACE(bp, "bdwrite", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001100 bp->b_strat = xfs_bdstrat_cb;
Christoph Hellwig15ac08a2008-12-09 04:47:30 -05001101 bp->b_mount = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001103 bp->b_flags &= ~XBF_READ;
1104 bp->b_flags |= (XBF_DELWRI | XBF_ASYNC);
1105
1106 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108
David Chinner7989cb82007-02-10 18:34:56 +11001109STATIC_INLINE void
Nathan Scottce8e9222006-01-11 15:39:08 +11001110_xfs_buf_ioend(
1111 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 int schedule)
1113{
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001114 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1115 bp->b_flags &= ~_XBF_PAGE_LOCKED;
Nathan Scottce8e9222006-01-11 15:39:08 +11001116 xfs_buf_ioend(bp, schedule);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118}
1119
Al Viro782e3b32007-10-12 07:17:47 +01001120STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001121xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 int error)
1124{
Nathan Scottce8e9222006-01-11 15:39:08 +11001125 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1126 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001127 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
Nathan Scottce8e9222006-01-11 15:39:08 +11001130 bp->b_error = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Nathan Scotteedb5532005-09-02 16:39:56 +10001132 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 struct page *page = bvec->bv_page;
1134
Nathan Scott948ecdb2006-09-28 11:03:13 +10001135 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001136 if (unlikely(bp->b_error)) {
1137 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001138 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001139 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 SetPageUptodate(page);
1141 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001142 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1144 }
1145
Nathan Scotteedb5532005-09-02 16:39:56 +10001146 if (--bvec >= bio->bi_io_vec)
1147 prefetchw(&bvec->bv_page->flags);
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001148
1149 if (bp->b_flags & _XBF_PAGE_LOCKED)
1150 unlock_page(page);
Nathan Scotteedb5532005-09-02 16:39:56 +10001151 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Nathan Scottce8e9222006-01-11 15:39:08 +11001153 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
1157STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001158_xfs_buf_ioapply(
1159 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
Christoph Hellwiga9759f22007-12-07 14:07:08 +11001161 int rw, map_i, total_nr_pages, nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001163 int offset = bp->b_offset;
1164 int size = bp->b_count_desired;
1165 sector_t sector = bp->b_bn;
1166 unsigned int blocksize = bp->b_target->bt_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Nathan Scottce8e9222006-01-11 15:39:08 +11001168 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 map_i = 0;
1170
Nathan Scottce8e9222006-01-11 15:39:08 +11001171 if (bp->b_flags & XBF_ORDERED) {
1172 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001173 rw = WRITE_BARRIER;
Nathan Scott51bdd702006-09-28 11:01:57 +10001174 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1175 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1176 bp->b_flags &= ~_XBF_RUN_QUEUES;
1177 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
1178 } else {
1179 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1180 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001181 }
1182
Nathan Scottce8e9222006-01-11 15:39:08 +11001183 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 * we populate up the whole page, and hence the other metadata
1185 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001186 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001188 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
Christoph Hellwig6ab455e2008-05-19 16:34:42 +10001189 ((bp->b_flags & (XBF_READ|_XBF_PAGE_LOCKED)) ==
1190 (XBF_READ|_XBF_PAGE_LOCKED)) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001191 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 bio = bio_alloc(GFP_NOIO, 1);
1193
Nathan Scottce8e9222006-01-11 15:39:08 +11001194 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001196 bio->bi_end_io = xfs_buf_bio_end_io;
1197 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Nathan Scottce8e9222006-01-11 15:39:08 +11001199 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 size = 0;
1201
Nathan Scottce8e9222006-01-11 15:39:08 +11001202 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 goto submit_io;
1205 }
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001208 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1210 if (nr_pages > total_nr_pages)
1211 nr_pages = total_nr_pages;
1212
1213 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001214 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001216 bio->bi_end_io = xfs_buf_bio_end_io;
1217 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001220 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 if (nbytes > size)
1223 nbytes = size;
1224
Nathan Scottce8e9222006-01-11 15:39:08 +11001225 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1226 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 break;
1228
1229 offset = 0;
1230 sector += nbytes >> BBSHIFT;
1231 size -= nbytes;
1232 total_nr_pages--;
1233 }
1234
1235submit_io:
1236 if (likely(bio->bi_size)) {
1237 submit_bio(rw, bio);
1238 if (size)
1239 goto next_chunk;
1240 } else {
1241 bio_put(bio);
Nathan Scottce8e9222006-01-11 15:39:08 +11001242 xfs_buf_ioerror(bp, EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
1244}
1245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246int
Nathan Scottce8e9222006-01-11 15:39:08 +11001247xfs_buf_iorequest(
1248 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
Nathan Scottce8e9222006-01-11 15:39:08 +11001250 XB_TRACE(bp, "iorequest", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Nathan Scottce8e9222006-01-11 15:39:08 +11001252 if (bp->b_flags & XBF_DELWRI) {
1253 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 return 0;
1255 }
1256
Nathan Scottce8e9222006-01-11 15:39:08 +11001257 if (bp->b_flags & XBF_WRITE) {
1258 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260
Nathan Scottce8e9222006-01-11 15:39:08 +11001261 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 /* Set the count to 1 initially, this will stop an I/O
1264 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001265 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001267 atomic_set(&bp->b_io_remaining, 1);
1268 _xfs_buf_ioapply(bp);
1269 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Nathan Scottce8e9222006-01-11 15:39:08 +11001271 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 return 0;
1273}
1274
1275/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001276 * Waits for I/O to complete on the buffer supplied.
1277 * It returns immediately if no I/O is pending.
1278 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 */
1280int
Nathan Scottce8e9222006-01-11 15:39:08 +11001281xfs_buf_iowait(
1282 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
Nathan Scottce8e9222006-01-11 15:39:08 +11001284 XB_TRACE(bp, "iowait", 0);
1285 if (atomic_read(&bp->b_io_remaining))
1286 blk_run_address_space(bp->b_target->bt_mapping);
David Chinnerb4dd3302008-08-13 16:36:11 +10001287 wait_for_completion(&bp->b_iowait);
Nathan Scottce8e9222006-01-11 15:39:08 +11001288 XB_TRACE(bp, "iowaited", (long)bp->b_error);
1289 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
Nathan Scottce8e9222006-01-11 15:39:08 +11001292xfs_caddr_t
1293xfs_buf_offset(
1294 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 size_t offset)
1296{
1297 struct page *page;
1298
Nathan Scottce8e9222006-01-11 15:39:08 +11001299 if (bp->b_flags & XBF_MAPPED)
1300 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Nathan Scottce8e9222006-01-11 15:39:08 +11001302 offset += bp->b_offset;
1303 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1304 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305}
1306
1307/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 * Move data into or out of a buffer.
1309 */
1310void
Nathan Scottce8e9222006-01-11 15:39:08 +11001311xfs_buf_iomove(
1312 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 size_t boff, /* starting buffer offset */
1314 size_t bsize, /* length to copy */
1315 caddr_t data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001316 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
1318 size_t bend, cpoff, csize;
1319 struct page *page;
1320
1321 bend = boff + bsize;
1322 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001323 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1324 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001326 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1329
1330 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001331 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 memset(page_address(page) + cpoff, 0, csize);
1333 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001334 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 memcpy(data, page_address(page) + cpoff, csize);
1336 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001337 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 memcpy(page_address(page) + cpoff, data, csize);
1339 }
1340
1341 boff += csize;
1342 data += csize;
1343 }
1344}
1345
1346/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001347 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 */
1349
1350/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001351 * Wait for any bufs with callbacks that have been submitted but
1352 * have not yet returned... walk the hash list for the target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 */
1354void
1355xfs_wait_buftarg(
1356 xfs_buftarg_t *btp)
1357{
1358 xfs_buf_t *bp, *n;
1359 xfs_bufhash_t *hash;
1360 uint i;
1361
1362 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1363 hash = &btp->bt_hash[i];
1364again:
1365 spin_lock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001366 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
1367 ASSERT(btp == bp->b_target);
1368 if (!(bp->b_flags & XBF_FS_MANAGED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 spin_unlock(&hash->bh_lock);
David Chinner2f926582005-09-05 08:33:35 +10001370 /*
1371 * Catch superblock reference count leaks
1372 * immediately
1373 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001374 BUG_ON(bp->b_bn == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 delay(100);
1376 goto again;
1377 }
1378 }
1379 spin_unlock(&hash->bh_lock);
1380 }
1381}
1382
1383/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001384 * Allocate buffer hash table for a given target.
1385 * For devices containing metadata (i.e. not the log/realtime devices)
1386 * we need to allocate a much larger hash table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 */
1388STATIC void
1389xfs_alloc_bufhash(
1390 xfs_buftarg_t *btp,
1391 int external)
1392{
1393 unsigned int i;
1394
1395 btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */
1396 btp->bt_hashmask = (1 << btp->bt_hashshift) - 1;
1397 btp->bt_hash = kmem_zalloc((1 << btp->bt_hashshift) *
Vlad Apostolov93c189c2006-11-11 18:03:49 +11001398 sizeof(xfs_bufhash_t), KM_SLEEP | KM_LARGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1400 spin_lock_init(&btp->bt_hash[i].bh_lock);
1401 INIT_LIST_HEAD(&btp->bt_hash[i].bh_list);
1402 }
1403}
1404
1405STATIC void
1406xfs_free_bufhash(
1407 xfs_buftarg_t *btp)
1408{
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001409 kmem_free(btp->bt_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 btp->bt_hash = NULL;
1411}
1412
David Chinnera6867a62006-01-11 15:37:58 +11001413/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001414 * buftarg list for delwrite queue processing
David Chinnera6867a62006-01-11 15:37:58 +11001415 */
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001416static LIST_HEAD(xfs_buftarg_list);
David Chinner7989cb82007-02-10 18:34:56 +11001417static DEFINE_SPINLOCK(xfs_buftarg_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001418
1419STATIC void
1420xfs_register_buftarg(
1421 xfs_buftarg_t *btp)
1422{
1423 spin_lock(&xfs_buftarg_lock);
1424 list_add(&btp->bt_list, &xfs_buftarg_list);
1425 spin_unlock(&xfs_buftarg_lock);
1426}
1427
1428STATIC void
1429xfs_unregister_buftarg(
1430 xfs_buftarg_t *btp)
1431{
1432 spin_lock(&xfs_buftarg_lock);
1433 list_del(&btp->bt_list);
1434 spin_unlock(&xfs_buftarg_lock);
1435}
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437void
1438xfs_free_buftarg(
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001439 xfs_buftarg_t *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440{
1441 xfs_flush_buftarg(btp, 1);
David Chinnerf4a9f282007-06-05 16:24:27 +10001442 xfs_blkdev_issue_flush(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 xfs_free_bufhash(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001444 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001445
Nathan Scottce8e9222006-01-11 15:39:08 +11001446 /* Unregister the buftarg first so that we don't get a
1447 * wakeup finding a non-existent task
1448 */
David Chinnera6867a62006-01-11 15:37:58 +11001449 xfs_unregister_buftarg(btp);
1450 kthread_stop(btp->bt_task);
1451
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001452 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455STATIC int
1456xfs_setsize_buftarg_flags(
1457 xfs_buftarg_t *btp,
1458 unsigned int blocksize,
1459 unsigned int sectorsize,
1460 int verbose)
1461{
Nathan Scottce8e9222006-01-11 15:39:08 +11001462 btp->bt_bsize = blocksize;
1463 btp->bt_sshift = ffs(sectorsize) - 1;
1464 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Nathan Scottce8e9222006-01-11 15:39:08 +11001466 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 printk(KERN_WARNING
1468 "XFS: Cannot set_blocksize to %u on device %s\n",
1469 sectorsize, XFS_BUFTARG_NAME(btp));
1470 return EINVAL;
1471 }
1472
1473 if (verbose &&
1474 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1475 printk(KERN_WARNING
1476 "XFS: %u byte sectors in use on device %s. "
1477 "This is suboptimal; %u or greater is ideal.\n",
1478 sectorsize, XFS_BUFTARG_NAME(btp),
1479 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1480 }
1481
1482 return 0;
1483}
1484
1485/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001486 * When allocating the initial buffer target we have not yet
1487 * read in the superblock, so don't know what sized sectors
1488 * are being used is at this early stage. Play safe.
1489 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490STATIC int
1491xfs_setsize_buftarg_early(
1492 xfs_buftarg_t *btp,
1493 struct block_device *bdev)
1494{
1495 return xfs_setsize_buftarg_flags(btp,
1496 PAGE_CACHE_SIZE, bdev_hardsect_size(bdev), 0);
1497}
1498
1499int
1500xfs_setsize_buftarg(
1501 xfs_buftarg_t *btp,
1502 unsigned int blocksize,
1503 unsigned int sectorsize)
1504{
1505 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1506}
1507
1508STATIC int
1509xfs_mapping_buftarg(
1510 xfs_buftarg_t *btp,
1511 struct block_device *bdev)
1512{
1513 struct backing_dev_info *bdi;
1514 struct inode *inode;
1515 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001516 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001518 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 };
1520
1521 inode = new_inode(bdev->bd_inode->i_sb);
1522 if (!inode) {
1523 printk(KERN_WARNING
1524 "XFS: Cannot allocate mapping inode for device %s\n",
1525 XFS_BUFTARG_NAME(btp));
1526 return ENOMEM;
1527 }
1528 inode->i_mode = S_IFBLK;
1529 inode->i_bdev = bdev;
1530 inode->i_rdev = bdev->bd_dev;
1531 bdi = blk_get_backing_dev_info(bdev);
1532 if (!bdi)
1533 bdi = &default_backing_dev_info;
1534 mapping = &inode->i_data;
1535 mapping->a_ops = &mapping_aops;
1536 mapping->backing_dev_info = bdi;
1537 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001538 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return 0;
1540}
1541
David Chinnera6867a62006-01-11 15:37:58 +11001542STATIC int
1543xfs_alloc_delwrite_queue(
1544 xfs_buftarg_t *btp)
1545{
1546 int error = 0;
1547
1548 INIT_LIST_HEAD(&btp->bt_list);
1549 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
Eric Sandeen007c61c2007-10-11 17:43:56 +10001550 spin_lock_init(&btp->bt_delwrite_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001551 btp->bt_flags = 0;
1552 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd");
1553 if (IS_ERR(btp->bt_task)) {
1554 error = PTR_ERR(btp->bt_task);
1555 goto out_error;
1556 }
1557 xfs_register_buftarg(btp);
1558out_error:
1559 return error;
1560}
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562xfs_buftarg_t *
1563xfs_alloc_buftarg(
1564 struct block_device *bdev,
1565 int external)
1566{
1567 xfs_buftarg_t *btp;
1568
1569 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1570
Nathan Scottce8e9222006-01-11 15:39:08 +11001571 btp->bt_dev = bdev->bd_dev;
1572 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 if (xfs_setsize_buftarg_early(btp, bdev))
1574 goto error;
1575 if (xfs_mapping_buftarg(btp, bdev))
1576 goto error;
David Chinnera6867a62006-01-11 15:37:58 +11001577 if (xfs_alloc_delwrite_queue(btp))
1578 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 xfs_alloc_bufhash(btp, external);
1580 return btp;
1581
1582error:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001583 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 return NULL;
1585}
1586
1587
1588/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001589 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001592xfs_buf_delwri_queue(
1593 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 int unlock)
1595{
Nathan Scottce8e9222006-01-11 15:39:08 +11001596 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1597 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001598
Nathan Scottce8e9222006-01-11 15:39:08 +11001599 XB_TRACE(bp, "delwri_q", (long)unlock);
1600 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
David Chinnera6867a62006-01-11 15:37:58 +11001602 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001604 if (!list_empty(&bp->b_list)) {
1605 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1606 if (unlock)
1607 atomic_dec(&bp->b_hold);
1608 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 }
1610
Nathan Scottce8e9222006-01-11 15:39:08 +11001611 bp->b_flags |= _XBF_DELWRI_Q;
1612 list_add_tail(&bp->b_list, dwq);
1613 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001614 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
1616 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001617 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618}
1619
1620void
Nathan Scottce8e9222006-01-11 15:39:08 +11001621xfs_buf_delwri_dequeue(
1622 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
Nathan Scottce8e9222006-01-11 15:39:08 +11001624 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 int dequeued = 0;
1626
David Chinnera6867a62006-01-11 15:37:58 +11001627 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001628 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1629 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1630 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 dequeued = 1;
1632 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001633 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001634 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001637 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Nathan Scottce8e9222006-01-11 15:39:08 +11001639 XB_TRACE(bp, "delwri_dq", (long)dequeued);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
1641
1642STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001643xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 struct workqueue_struct *queue)
1645{
1646 flush_workqueue(queue);
1647}
1648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001650xfsbufd_wakeup(
Nathan Scott15c84a42005-11-04 10:51:01 +11001651 int priority,
1652 gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001654 xfs_buftarg_t *btp;
David Chinnera6867a62006-01-11 15:37:58 +11001655
1656 spin_lock(&xfs_buftarg_lock);
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001657 list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001658 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
David Chinnera6867a62006-01-11 15:37:58 +11001659 continue;
Nathan Scottce8e9222006-01-11 15:39:08 +11001660 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
David Chinnera6867a62006-01-11 15:37:58 +11001661 wake_up_process(btp->bt_task);
1662 }
1663 spin_unlock(&xfs_buftarg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 return 0;
1665}
1666
David Chinner585e6d82007-02-10 18:32:29 +11001667/*
1668 * Move as many buffers as specified to the supplied list
1669 * idicating if we skipped any buffers to prevent deadlocks.
1670 */
1671STATIC int
1672xfs_buf_delwri_split(
1673 xfs_buftarg_t *target,
1674 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001675 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001676{
1677 xfs_buf_t *bp, *n;
1678 struct list_head *dwq = &target->bt_delwrite_queue;
1679 spinlock_t *dwlk = &target->bt_delwrite_lock;
1680 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001681 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001682
David Chinner5e6a07d2007-02-10 18:34:49 +11001683 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001684 INIT_LIST_HEAD(list);
1685 spin_lock(dwlk);
1686 list_for_each_entry_safe(bp, n, dwq, b_list) {
1687 XB_TRACE(bp, "walkq1", (long)xfs_buf_ispin(bp));
1688 ASSERT(bp->b_flags & XBF_DELWRI);
1689
1690 if (!xfs_buf_ispin(bp) && !xfs_buf_cond_lock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001691 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001692 time_before(jiffies, bp->b_queuetime + age)) {
1693 xfs_buf_unlock(bp);
1694 break;
1695 }
1696
1697 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1698 _XBF_RUN_QUEUES);
1699 bp->b_flags |= XBF_WRITE;
1700 list_move_tail(&bp->b_list, list);
1701 } else
1702 skipped++;
1703 }
1704 spin_unlock(dwlk);
1705
1706 return skipped;
1707
1708}
1709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001711xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001712 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
David Chinner585e6d82007-02-10 18:32:29 +11001714 struct list_head tmp;
1715 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
1716 int count;
1717 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 current->flags |= PF_MEMALLOC;
1720
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001721 set_freezable();
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 do {
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001724 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001725 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001726 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001727 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001728 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Nathan Scott15c84a42005-11-04 10:51:01 +11001731 schedule_timeout_interruptible(
1732 xfs_buf_timer_centisecs * msecs_to_jiffies(10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
David Chinner585e6d82007-02-10 18:32:29 +11001734 xfs_buf_delwri_split(target, &tmp,
David Chinner5e6a07d2007-02-10 18:34:49 +11001735 xfs_buf_age_centisecs * msecs_to_jiffies(10));
David Chinner585e6d82007-02-10 18:32:29 +11001736
Nathan Scottf07c2252006-09-28 10:52:15 +10001737 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001739 bp = list_entry(tmp.next, xfs_buf_t, b_list);
1740 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Nathan Scottce8e9222006-01-11 15:39:08 +11001742 list_del_init(&bp->b_list);
1743 xfs_buf_iostrategy(bp);
David Chinner585e6d82007-02-10 18:32:29 +11001744 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 }
1746
1747 if (as_list_len > 0)
1748 purge_addresses();
Nathan Scottf07c2252006-09-28 10:52:15 +10001749 if (count)
1750 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001752 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001754 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755}
1756
1757/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001758 * Go through all incore buffers, and release buffers if they belong to
1759 * the given device. This is used in filesystem error handling to
1760 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 */
1762int
1763xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001764 xfs_buftarg_t *target,
1765 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
David Chinner585e6d82007-02-10 18:32:29 +11001767 struct list_head tmp;
1768 xfs_buf_t *bp, *n;
1769 int pincount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Nathan Scottce8e9222006-01-11 15:39:08 +11001771 xfs_buf_runall_queues(xfsdatad_workqueue);
1772 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
David Chinner5e6a07d2007-02-10 18:34:49 +11001774 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
1775 pincount = xfs_buf_delwri_split(target, &tmp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 /*
1778 * Dropped the delayed write list lock, now walk the temporary list
1779 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001780 list_for_each_entry_safe(bp, n, &tmp, b_list) {
David Chinner585e6d82007-02-10 18:32:29 +11001781 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 if (wait)
Nathan Scottce8e9222006-01-11 15:39:08 +11001783 bp->b_flags &= ~XBF_ASYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 else
Nathan Scottce8e9222006-01-11 15:39:08 +11001785 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Nathan Scottce8e9222006-01-11 15:39:08 +11001787 xfs_buf_iostrategy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
1789
Nathan Scottf07c2252006-09-28 10:52:15 +10001790 if (wait)
1791 blk_run_address_space(target->bt_mapping);
1792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 /*
1794 * Remaining list items must be flushed before returning
1795 */
1796 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001797 bp = list_entry(tmp.next, xfs_buf_t, b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Nathan Scottce8e9222006-01-11 15:39:08 +11001799 list_del_init(&bp->b_list);
1800 xfs_iowait(bp);
1801 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return pincount;
1805}
1806
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001807int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001808xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
Nathan Scottce8e9222006-01-11 15:39:08 +11001810#ifdef XFS_BUF_TRACE
Lachlan McIlroy5695ef462008-08-13 16:51:57 +10001811 xfs_buf_trace_buf = ktrace_alloc(XFS_BUF_TRACE_SIZE, KM_NOFS);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001812#endif
1813
Nathan Scott87582802006-03-14 13:18:19 +11001814 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1815 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001816 if (!xfs_buf_zone)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001817 goto out_free_trace_buf;
1818
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001819 xfslogd_workqueue = create_workqueue("xfslogd");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001820 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001821 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Rafael J. Wysockib4337692007-03-22 00:11:27 -08001823 xfsdatad_workqueue = create_workqueue("xfsdatad");
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001824 if (!xfsdatad_workqueue)
1825 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Rusty Russell8e1f9362007-07-17 04:03:17 -07001827 register_shrinker(&xfs_buf_shake);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001828 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001830 out_destroy_xfslogd_workqueue:
1831 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001832 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001833 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001834 out_free_trace_buf:
Nathan Scottce8e9222006-01-11 15:39:08 +11001835#ifdef XFS_BUF_TRACE
1836 ktrace_free(xfs_buf_trace_buf);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001837#endif
Nathan Scott87582802006-03-14 13:18:19 +11001838 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841void
Nathan Scottce8e9222006-01-11 15:39:08 +11001842xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Rusty Russell8e1f9362007-07-17 04:03:17 -07001844 unregister_shrinker(&xfs_buf_shake);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001845 destroy_workqueue(xfsdatad_workqueue);
1846 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001847 kmem_zone_destroy(xfs_buf_zone);
1848#ifdef XFS_BUF_TRACE
1849 ktrace_free(xfs_buf_trace_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851}
Tim Shimmine6a0e9c2007-05-08 13:49:59 +10001852
1853#ifdef CONFIG_KDB_MODULES
1854struct list_head *
1855xfs_get_buftarg_list(void)
1856{
1857 return &xfs_buftarg_list;
1858}
1859#endif