blob: 9bbadafdcb00285a8644a350a0ef033c7889f139 [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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/stddef.h>
19#include <linux/errno.h>
20#include <linux/slab.h>
21#include <linux/pagemap.h>
22#include <linux/init.h>
23#include <linux/vmalloc.h>
24#include <linux/bio.h>
25#include <linux/sysctl.h>
26#include <linux/proc_fs.h>
27#include <linux/workqueue.h>
28#include <linux/percpu.h>
29#include <linux/blkdev.h>
30#include <linux/hash.h>
Christoph Hellwig4df08c52005-09-05 08:34:18 +100031#include <linux/kthread.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080032#include <linux/migrate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_linux.h"
34
Nathan Scottce8e9222006-01-11 15:39:08 +110035STATIC kmem_zone_t *xfs_buf_zone;
36STATIC kmem_shaker_t xfs_buf_shake;
David Chinnera6867a62006-01-11 15:37:58 +110037STATIC int xfsbufd(void *);
Al Viro27496a82005-10-21 03:20:48 -040038STATIC int xfsbufd_wakeup(int, gfp_t);
Nathan Scottce8e9222006-01-11 15:39:08 +110039STATIC void xfs_buf_delwri_queue(xfs_buf_t *, int);
Christoph Hellwig23ea4032005-06-21 15:14:01 +100040
41STATIC struct workqueue_struct *xfslogd_workqueue;
Christoph Hellwig0829c362005-09-02 16:58:49 +100042struct workqueue_struct *xfsdatad_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Nathan Scottce8e9222006-01-11 15:39:08 +110044#ifdef XFS_BUF_TRACE
Linus Torvalds1da177e2005-04-16 15:20:36 -070045void
Nathan Scottce8e9222006-01-11 15:39:08 +110046xfs_buf_trace(
47 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 char *id,
49 void *data,
50 void *ra)
51{
Nathan Scottce8e9222006-01-11 15:39:08 +110052 ktrace_enter(xfs_buf_trace_buf,
53 bp, id,
54 (void *)(unsigned long)bp->b_flags,
55 (void *)(unsigned long)bp->b_hold.counter,
56 (void *)(unsigned long)bp->b_sema.count.counter,
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 (void *)current,
58 data, ra,
Nathan Scottce8e9222006-01-11 15:39:08 +110059 (void *)(unsigned long)((bp->b_file_offset>>32) & 0xffffffff),
60 (void *)(unsigned long)(bp->b_file_offset & 0xffffffff),
61 (void *)(unsigned long)bp->b_buffer_length,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 NULL, NULL, NULL, NULL, NULL);
63}
Nathan Scottce8e9222006-01-11 15:39:08 +110064ktrace_t *xfs_buf_trace_buf;
65#define XFS_BUF_TRACE_SIZE 4096
66#define XB_TRACE(bp, id, data) \
67 xfs_buf_trace(bp, id, (void *)data, (void *)__builtin_return_address(0))
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#else
Nathan Scottce8e9222006-01-11 15:39:08 +110069#define XB_TRACE(bp, id, data) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#endif
71
Nathan Scottce8e9222006-01-11 15:39:08 +110072#ifdef XFS_BUF_LOCK_TRACKING
73# define XB_SET_OWNER(bp) ((bp)->b_last_holder = current->pid)
74# define XB_CLEAR_OWNER(bp) ((bp)->b_last_holder = -1)
75# define XB_GET_OWNER(bp) ((bp)->b_last_holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#else
Nathan Scottce8e9222006-01-11 15:39:08 +110077# define XB_SET_OWNER(bp) do { } while (0)
78# define XB_CLEAR_OWNER(bp) do { } while (0)
79# define XB_GET_OWNER(bp) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#endif
81
Nathan Scottce8e9222006-01-11 15:39:08 +110082#define xb_to_gfp(flags) \
83 ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : \
84 ((flags) & XBF_DONT_BLOCK) ? GFP_NOFS : GFP_KERNEL) | __GFP_NOWARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Nathan Scottce8e9222006-01-11 15:39:08 +110086#define xb_to_km(flags) \
87 (((flags) & XBF_DONT_BLOCK) ? KM_NOFS : KM_SLEEP)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Nathan Scottce8e9222006-01-11 15:39:08 +110089#define xfs_buf_allocate(flags) \
90 kmem_zone_alloc(xfs_buf_zone, xb_to_km(flags))
91#define xfs_buf_deallocate(bp) \
92 kmem_zone_free(xfs_buf_zone, (bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94/*
Nathan Scottce8e9222006-01-11 15:39:08 +110095 * Page Region interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 *
Nathan Scottce8e9222006-01-11 15:39:08 +110097 * For pages in filesystems where the blocksize is smaller than the
98 * pagesize, we use the page->private field (long) to hold a bitmap
99 * of uptodate regions within the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 *
Nathan Scottce8e9222006-01-11 15:39:08 +1100101 * Each such region is "bytes per page / bits per long" bytes long.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
Nathan Scottce8e9222006-01-11 15:39:08 +1100103 * NBPPR == number-of-bytes-per-page-region
104 * BTOPR == bytes-to-page-region (rounded up)
105 * BTOPRT == bytes-to-page-region-truncated (rounded down)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 */
107#if (BITS_PER_LONG == 32)
108#define PRSHIFT (PAGE_CACHE_SHIFT - 5) /* (32 == 1<<5) */
109#elif (BITS_PER_LONG == 64)
110#define PRSHIFT (PAGE_CACHE_SHIFT - 6) /* (64 == 1<<6) */
111#else
112#error BITS_PER_LONG must be 32 or 64
113#endif
114#define NBPPR (PAGE_CACHE_SIZE/BITS_PER_LONG)
115#define BTOPR(b) (((unsigned int)(b) + (NBPPR - 1)) >> PRSHIFT)
116#define BTOPRT(b) (((unsigned int)(b) >> PRSHIFT))
117
118STATIC unsigned long
119page_region_mask(
120 size_t offset,
121 size_t length)
122{
123 unsigned long mask;
124 int first, final;
125
126 first = BTOPR(offset);
127 final = BTOPRT(offset + length - 1);
128 first = min(first, final);
129
130 mask = ~0UL;
131 mask <<= BITS_PER_LONG - (final - first);
132 mask >>= BITS_PER_LONG - (final);
133
134 ASSERT(offset + length <= PAGE_CACHE_SIZE);
135 ASSERT((final - first) < BITS_PER_LONG && (final - first) >= 0);
136
137 return mask;
138}
139
140STATIC inline void
141set_page_region(
142 struct page *page,
143 size_t offset,
144 size_t length)
145{
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700146 set_page_private(page,
147 page_private(page) | page_region_mask(offset, length));
148 if (page_private(page) == ~0UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 SetPageUptodate(page);
150}
151
152STATIC inline int
153test_page_region(
154 struct page *page,
155 size_t offset,
156 size_t length)
157{
158 unsigned long mask = page_region_mask(offset, length);
159
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700160 return (mask && (page_private(page) & mask) == mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
163/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100164 * Mapping of multi-page buffers into contiguous virtual space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 */
166
167typedef struct a_list {
168 void *vm_addr;
169 struct a_list *next;
170} a_list_t;
171
172STATIC a_list_t *as_free_head;
173STATIC int as_list_len;
174STATIC DEFINE_SPINLOCK(as_lock);
175
176/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100177 * Try to batch vunmaps because they are costly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 */
179STATIC void
180free_address(
181 void *addr)
182{
183 a_list_t *aentry;
184
Jeff Dike7b04d712006-04-10 22:53:27 -0700185 aentry = kmalloc(sizeof(a_list_t), GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (likely(aentry)) {
187 spin_lock(&as_lock);
188 aentry->next = as_free_head;
189 aentry->vm_addr = addr;
190 as_free_head = aentry;
191 as_list_len++;
192 spin_unlock(&as_lock);
193 } else {
194 vunmap(addr);
195 }
196}
197
198STATIC void
199purge_addresses(void)
200{
201 a_list_t *aentry, *old;
202
203 if (as_free_head == NULL)
204 return;
205
206 spin_lock(&as_lock);
207 aentry = as_free_head;
208 as_free_head = NULL;
209 as_list_len = 0;
210 spin_unlock(&as_lock);
211
212 while ((old = aentry) != NULL) {
213 vunmap(aentry->vm_addr);
214 aentry = aentry->next;
215 kfree(old);
216 }
217}
218
219/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100220 * Internal xfs_buf_t object manipulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 */
222
223STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100224_xfs_buf_initialize(
225 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100227 xfs_off_t range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 size_t range_length,
Nathan Scottce8e9222006-01-11 15:39:08 +1100229 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100232 * We don't want certain flags to appear in b_flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100234 flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Nathan Scottce8e9222006-01-11 15:39:08 +1100236 memset(bp, 0, sizeof(xfs_buf_t));
237 atomic_set(&bp->b_hold, 1);
238 init_MUTEX_LOCKED(&bp->b_iodonesema);
239 INIT_LIST_HEAD(&bp->b_list);
240 INIT_LIST_HEAD(&bp->b_hash_list);
241 init_MUTEX_LOCKED(&bp->b_sema); /* held, no waiters */
242 XB_SET_OWNER(bp);
243 bp->b_target = target;
244 bp->b_file_offset = range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /*
246 * Set buffer_length and count_desired to the same value initially.
247 * I/O routines should use count_desired, which will be the same in
248 * most cases but may be reset (e.g. XFS recovery).
249 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100250 bp->b_buffer_length = bp->b_count_desired = range_length;
251 bp->b_flags = flags;
252 bp->b_bn = XFS_BUF_DADDR_NULL;
253 atomic_set(&bp->b_pin_count, 0);
254 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Nathan Scottce8e9222006-01-11 15:39:08 +1100256 XFS_STATS_INC(xb_create);
257 XB_TRACE(bp, "initialize", target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
260/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100261 * Allocate a page array capable of holding a specified number
262 * of pages, and point the page buf at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 */
264STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100265_xfs_buf_get_pages(
266 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 int page_count,
Nathan Scottce8e9222006-01-11 15:39:08 +1100268 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 /* Make sure that we have a page list */
Nathan Scottce8e9222006-01-11 15:39:08 +1100271 if (bp->b_pages == NULL) {
272 bp->b_offset = xfs_buf_poff(bp->b_file_offset);
273 bp->b_page_count = page_count;
274 if (page_count <= XB_PAGES) {
275 bp->b_pages = bp->b_page_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100277 bp->b_pages = kmem_alloc(sizeof(struct page *) *
278 page_count, xb_to_km(flags));
279 if (bp->b_pages == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return -ENOMEM;
281 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100282 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284 return 0;
285}
286
287/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100288 * Frees b_pages if it was allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 */
290STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100291_xfs_buf_free_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 xfs_buf_t *bp)
293{
Nathan Scottce8e9222006-01-11 15:39:08 +1100294 if (bp->b_pages != bp->b_page_array) {
295 kmem_free(bp->b_pages,
296 bp->b_page_count * sizeof(struct page *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298}
299
300/*
301 * Releases the specified buffer.
302 *
303 * The modification state of any associated pages is left unchanged.
Nathan Scottce8e9222006-01-11 15:39:08 +1100304 * The buffer most not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 * hashed and refcounted buffers
306 */
307void
Nathan Scottce8e9222006-01-11 15:39:08 +1100308xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 xfs_buf_t *bp)
310{
Nathan Scottce8e9222006-01-11 15:39:08 +1100311 XB_TRACE(bp, "free", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Nathan Scottce8e9222006-01-11 15:39:08 +1100313 ASSERT(list_empty(&bp->b_hash_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Nathan Scottce8e9222006-01-11 15:39:08 +1100315 if (bp->b_flags & _XBF_PAGE_CACHE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 uint i;
317
Nathan Scottce8e9222006-01-11 15:39:08 +1100318 if ((bp->b_flags & XBF_MAPPED) && (bp->b_page_count > 1))
319 free_address(bp->b_addr - bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Nathan Scott948ecdb2006-09-28 11:03:13 +1000321 for (i = 0; i < bp->b_page_count; i++) {
322 struct page *page = bp->b_pages[i];
323
324 ASSERT(!PagePrivate(page));
325 page_cache_release(page);
326 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100327 _xfs_buf_free_pages(bp);
328 } else if (bp->b_flags & _XBF_KMEM_ALLOC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100330 * XXX(hch): bp->b_count_desired might be incorrect (see
331 * xfs_buf_associate_memory for details), but fortunately
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 * the Linux version of kmem_free ignores the len argument..
333 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100334 kmem_free(bp->b_addr, bp->b_count_desired);
335 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337
Nathan Scottce8e9222006-01-11 15:39:08 +1100338 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
341/*
342 * Finds all pages for buffer in question and builds it's page list.
343 */
344STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100345_xfs_buf_lookup_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 xfs_buf_t *bp,
347 uint flags)
348{
Nathan Scottce8e9222006-01-11 15:39:08 +1100349 struct address_space *mapping = bp->b_target->bt_mapping;
350 size_t blocksize = bp->b_target->bt_bsize;
351 size_t size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100353 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 unsigned short page_count, i;
355 pgoff_t first;
Nathan Scott204ab252006-01-11 20:50:22 +1100356 xfs_off_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 int error;
358
Nathan Scottce8e9222006-01-11 15:39:08 +1100359 end = bp->b_file_offset + bp->b_buffer_length;
360 page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Nathan Scottce8e9222006-01-11 15:39:08 +1100362 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (unlikely(error))
364 return error;
Nathan Scottce8e9222006-01-11 15:39:08 +1100365 bp->b_flags |= _XBF_PAGE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Nathan Scottce8e9222006-01-11 15:39:08 +1100367 offset = bp->b_offset;
368 first = bp->b_file_offset >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Nathan Scottce8e9222006-01-11 15:39:08 +1100370 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 struct page *page;
372 uint retries = 0;
373
374 retry:
375 page = find_or_create_page(mapping, first + i, gfp_mask);
376 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100377 if (flags & XBF_READ_AHEAD) {
378 bp->b_page_count = i;
379 for (i = 0; i < bp->b_page_count; i++)
380 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return -ENOMEM;
382 }
383
384 /*
385 * This could deadlock.
386 *
387 * But until all the XFS lowlevel code is revamped to
388 * handle buffer allocation failures we can't do much.
389 */
390 if (!(++retries % 100))
391 printk(KERN_ERR
392 "XFS: possible memory allocation "
393 "deadlock in %s (mode:0x%x)\n",
394 __FUNCTION__, gfp_mask);
395
Nathan Scottce8e9222006-01-11 15:39:08 +1100396 XFS_STATS_INC(xb_page_retries);
Christoph Hellwig23ea4032005-06-21 15:14:01 +1000397 xfsbufd_wakeup(0, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 blk_congestion_wait(WRITE, HZ/50);
399 goto retry;
400 }
401
Nathan Scottce8e9222006-01-11 15:39:08 +1100402 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset);
405 size -= nbytes;
406
Nathan Scott948ecdb2006-09-28 11:03:13 +1000407 ASSERT(!PagePrivate(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (!PageUptodate(page)) {
409 page_count--;
410 if (blocksize >= PAGE_CACHE_SIZE) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100411 if (flags & XBF_READ)
412 bp->b_locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 } else if (!PagePrivate(page)) {
414 if (test_page_region(page, offset, nbytes))
415 page_count++;
416 }
417 }
418
Nathan Scottce8e9222006-01-11 15:39:08 +1100419 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 offset = 0;
421 }
422
Nathan Scottce8e9222006-01-11 15:39:08 +1100423 if (!bp->b_locked) {
424 for (i = 0; i < bp->b_page_count; i++)
425 unlock_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427
Nathan Scottce8e9222006-01-11 15:39:08 +1100428 if (page_count == bp->b_page_count)
429 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Nathan Scottce8e9222006-01-11 15:39:08 +1100431 XB_TRACE(bp, "lookup_pages", (long)page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return error;
433}
434
435/*
436 * Map buffer into kernel address-space if nessecary.
437 */
438STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100439_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 xfs_buf_t *bp,
441 uint flags)
442{
443 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100444 if (bp->b_page_count == 1) {
445 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
446 bp->b_flags |= XBF_MAPPED;
447 } else if (flags & XBF_MAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (as_list_len > 64)
449 purge_addresses();
Nathan Scottce8e9222006-01-11 15:39:08 +1100450 bp->b_addr = vmap(bp->b_pages, bp->b_page_count,
451 VM_MAP, PAGE_KERNEL);
452 if (unlikely(bp->b_addr == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100454 bp->b_addr += bp->b_offset;
455 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457
458 return 0;
459}
460
461/*
462 * Finding and Reading Buffers
463 */
464
465/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100466 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * a given range of an inode. The buffer is returned
468 * locked. If other overlapping buffers exist, they are
469 * released before the new buffer is created and locked,
470 * which may imply that this call will block until those buffers
471 * are unlocked. No I/O is implied by this call.
472 */
473xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100474_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab252006-01-11 20:50:22 +1100476 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100478 xfs_buf_flags_t flags,
479 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Nathan Scott204ab252006-01-11 20:50:22 +1100481 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 size_t range_length;
483 xfs_bufhash_t *hash;
Nathan Scottce8e9222006-01-11 15:39:08 +1100484 xfs_buf_t *bp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 range_base = (ioff << BBSHIFT);
487 range_length = (isize << BBSHIFT);
488
489 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100490 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab252006-01-11 20:50:22 +1100491 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)];
494
495 spin_lock(&hash->bh_lock);
496
Nathan Scottce8e9222006-01-11 15:39:08 +1100497 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
498 ASSERT(btp == bp->b_target);
499 if (bp->b_file_offset == range_base &&
500 bp->b_buffer_length == range_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100502 * If we look at something, bring it to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 * front of the list for next time.
504 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100505 atomic_inc(&bp->b_hold);
506 list_move(&bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 goto found;
508 }
509 }
510
511 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100512 if (new_bp) {
513 _xfs_buf_initialize(new_bp, btp, range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 range_length, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100515 new_bp->b_hash = hash;
516 list_add(&new_bp->b_hash_list, &hash->bh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100518 XFS_STATS_INC(xb_miss_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520
521 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100522 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524found:
525 spin_unlock(&hash->bh_lock);
526
527 /* Attempt to get the semaphore without sleeping,
528 * if this does not work then we need to drop the
529 * spinlock and do a hard attempt on the semaphore.
530 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100531 if (down_trylock(&bp->b_sema)) {
532 if (!(flags & XBF_TRYLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 /* wait for buffer ownership */
Nathan Scottce8e9222006-01-11 15:39:08 +1100534 XB_TRACE(bp, "get_lock", 0);
535 xfs_buf_lock(bp);
536 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 } else {
538 /* We asked for a trylock and failed, no need
539 * to look at file offset and length here, we
Nathan Scottce8e9222006-01-11 15:39:08 +1100540 * know that this buffer at least overlaps our
541 * buffer and is locked, therefore our buffer
542 * either does not exist, or is this buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100544 xfs_buf_rele(bp);
545 XFS_STATS_INC(xb_busy_locked);
546 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
548 } else {
549 /* trylock worked */
Nathan Scottce8e9222006-01-11 15:39:08 +1100550 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
552
Nathan Scottce8e9222006-01-11 15:39:08 +1100553 if (bp->b_flags & XBF_STALE) {
554 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
555 bp->b_flags &= XBF_MAPPED;
David Chinner2f926582005-09-05 08:33:35 +1000556 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100557 XB_TRACE(bp, "got_lock", 0);
558 XFS_STATS_INC(xb_get_locked);
559 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100563 * Assembles a buffer covering the specified range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 * Storage in memory for all portions of the buffer will be allocated,
565 * although backing storage may not be.
566 */
567xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100568xfs_buf_get_flags(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100570 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100572 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Nathan Scottce8e9222006-01-11 15:39:08 +1100574 xfs_buf_t *bp, *new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 int error = 0, i;
576
Nathan Scottce8e9222006-01-11 15:39:08 +1100577 new_bp = xfs_buf_allocate(flags);
578 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return NULL;
580
Nathan Scottce8e9222006-01-11 15:39:08 +1100581 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
582 if (bp == new_bp) {
583 error = _xfs_buf_lookup_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (error)
585 goto no_buffer;
586 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100587 xfs_buf_deallocate(new_bp);
588 if (unlikely(bp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return NULL;
590 }
591
Nathan Scottce8e9222006-01-11 15:39:08 +1100592 for (i = 0; i < bp->b_page_count; i++)
593 mark_page_accessed(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Nathan Scottce8e9222006-01-11 15:39:08 +1100595 if (!(bp->b_flags & XBF_MAPPED)) {
596 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (unlikely(error)) {
598 printk(KERN_WARNING "%s: failed to map pages\n",
599 __FUNCTION__);
600 goto no_buffer;
601 }
602 }
603
Nathan Scottce8e9222006-01-11 15:39:08 +1100604 XFS_STATS_INC(xb_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 /*
607 * Always fill in the block number now, the mapped cases can do
608 * their own overlay of this later.
609 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100610 bp->b_bn = ioff;
611 bp->b_count_desired = bp->b_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Nathan Scottce8e9222006-01-11 15:39:08 +1100613 XB_TRACE(bp, "get", (unsigned long)flags);
614 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100617 if (flags & (XBF_LOCK | XBF_TRYLOCK))
618 xfs_buf_unlock(bp);
619 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return NULL;
621}
622
623xfs_buf_t *
624xfs_buf_read_flags(
625 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100626 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100628 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Nathan Scottce8e9222006-01-11 15:39:08 +1100630 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Nathan Scottce8e9222006-01-11 15:39:08 +1100632 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Nathan Scottce8e9222006-01-11 15:39:08 +1100634 bp = xfs_buf_get_flags(target, ioff, isize, flags);
635 if (bp) {
636 if (!XFS_BUF_ISDONE(bp)) {
637 XB_TRACE(bp, "read", (unsigned long)flags);
638 XFS_STATS_INC(xb_get_read);
639 xfs_buf_iostart(bp, flags);
640 } else if (flags & XBF_ASYNC) {
641 XB_TRACE(bp, "read_async", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /*
643 * Read ahead call which is already satisfied,
644 * drop the buffer
645 */
646 goto no_buffer;
647 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100648 XB_TRACE(bp, "read_done", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100650 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652 }
653
Nathan Scottce8e9222006-01-11 15:39:08 +1100654 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100657 if (flags & (XBF_LOCK | XBF_TRYLOCK))
658 xfs_buf_unlock(bp);
659 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return NULL;
661}
662
663/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100664 * If we are not low on memory then do the readahead in a deadlock
665 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 */
667void
Nathan Scottce8e9222006-01-11 15:39:08 +1100668xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100670 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100672 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 struct backing_dev_info *bdi;
675
Nathan Scottce8e9222006-01-11 15:39:08 +1100676 bdi = target->bt_mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (bdi_read_congested(bdi))
678 return;
679
Nathan Scottce8e9222006-01-11 15:39:08 +1100680 flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 xfs_buf_read_flags(target, ioff, isize, flags);
682}
683
684xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100685xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 size_t len,
687 xfs_buftarg_t *target)
688{
Nathan Scottce8e9222006-01-11 15:39:08 +1100689 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Nathan Scottce8e9222006-01-11 15:39:08 +1100691 bp = xfs_buf_allocate(0);
692 if (bp)
693 _xfs_buf_initialize(bp, target, 0, len, 0);
694 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
697static inline struct page *
698mem_to_page(
699 void *addr)
700{
701 if (((unsigned long)addr < VMALLOC_START) ||
702 ((unsigned long)addr >= VMALLOC_END)) {
703 return virt_to_page(addr);
704 } else {
705 return vmalloc_to_page(addr);
706 }
707}
708
709int
Nathan Scottce8e9222006-01-11 15:39:08 +1100710xfs_buf_associate_memory(
711 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 void *mem,
713 size_t len)
714{
715 int rval;
716 int i = 0;
717 size_t ptr;
718 size_t end, end_cur;
719 off_t offset;
720 int page_count;
721
722 page_count = PAGE_CACHE_ALIGN(len) >> PAGE_CACHE_SHIFT;
723 offset = (off_t) mem - ((off_t)mem & PAGE_CACHE_MASK);
724 if (offset && (len > PAGE_CACHE_SIZE))
725 page_count++;
726
727 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100728 if (bp->b_pages)
729 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Nathan Scottce8e9222006-01-11 15:39:08 +1100731 bp->b_pages = NULL;
732 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Nathan Scottce8e9222006-01-11 15:39:08 +1100734 rval = _xfs_buf_get_pages(bp, page_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (rval)
736 return rval;
737
Nathan Scottce8e9222006-01-11 15:39:08 +1100738 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 ptr = (size_t) mem & PAGE_CACHE_MASK;
740 end = PAGE_CACHE_ALIGN((size_t) mem + len);
741 end_cur = end;
742 /* set up first page */
Nathan Scottce8e9222006-01-11 15:39:08 +1100743 bp->b_pages[0] = mem_to_page(mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 ptr += PAGE_CACHE_SIZE;
Nathan Scottce8e9222006-01-11 15:39:08 +1100746 bp->b_page_count = ++i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 while (ptr < end) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100748 bp->b_pages[i] = mem_to_page((void *)ptr);
749 bp->b_page_count = ++i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 ptr += PAGE_CACHE_SIZE;
751 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100752 bp->b_locked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Nathan Scottce8e9222006-01-11 15:39:08 +1100754 bp->b_count_desired = bp->b_buffer_length = len;
755 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 return 0;
758}
759
760xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100761xfs_buf_get_noaddr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 size_t len,
763 xfs_buftarg_t *target)
764{
765 size_t malloc_len = len;
766 xfs_buf_t *bp;
767 void *data;
768 int error;
769
Nathan Scottce8e9222006-01-11 15:39:08 +1100770 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (unlikely(bp == NULL))
772 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100773 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 try_again:
Nathan Scottefb8ad72006-09-28 11:03:05 +1000776 data = kmem_alloc(malloc_len, KM_SLEEP | KM_MAYFAIL | KM_LARGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (unlikely(data == NULL))
778 goto fail_free_buf;
779
780 /* check whether alignment matches.. */
781 if ((__psunsigned_t)data !=
Nathan Scottce8e9222006-01-11 15:39:08 +1100782 ((__psunsigned_t)data & ~target->bt_smask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /* .. else double the size and try again */
784 kmem_free(data, malloc_len);
785 malloc_len <<= 1;
786 goto try_again;
787 }
788
Nathan Scottce8e9222006-01-11 15:39:08 +1100789 error = xfs_buf_associate_memory(bp, data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (error)
791 goto fail_free_mem;
Nathan Scottce8e9222006-01-11 15:39:08 +1100792 bp->b_flags |= _XBF_KMEM_ALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Nathan Scottce8e9222006-01-11 15:39:08 +1100794 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Nathan Scottce8e9222006-01-11 15:39:08 +1100796 XB_TRACE(bp, "no_daddr", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return bp;
798 fail_free_mem:
799 kmem_free(data, malloc_len);
800 fail_free_buf:
Nathan Scottce8e9222006-01-11 15:39:08 +1100801 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 fail:
803 return NULL;
804}
805
806/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 * Increment reference count on buffer, to hold the buffer concurrently
808 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 * Must hold the buffer already to call this function.
810 */
811void
Nathan Scottce8e9222006-01-11 15:39:08 +1100812xfs_buf_hold(
813 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Nathan Scottce8e9222006-01-11 15:39:08 +1100815 atomic_inc(&bp->b_hold);
816 XB_TRACE(bp, "hold", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
819/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100820 * Releases a hold on the specified buffer. If the
821 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 */
823void
Nathan Scottce8e9222006-01-11 15:39:08 +1100824xfs_buf_rele(
825 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Nathan Scottce8e9222006-01-11 15:39:08 +1100827 xfs_bufhash_t *hash = bp->b_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Nathan Scottce8e9222006-01-11 15:39:08 +1100829 XB_TRACE(bp, "rele", bp->b_relse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Nathan Scottfad3aa12006-02-01 12:14:52 +1100831 if (unlikely(!hash)) {
832 ASSERT(!bp->b_relse);
833 if (atomic_dec_and_test(&bp->b_hold))
834 xfs_buf_free(bp);
835 return;
836 }
837
Nathan Scottce8e9222006-01-11 15:39:08 +1100838 if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) {
839 if (bp->b_relse) {
840 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100842 (*(bp->b_relse)) (bp);
843 } else if (bp->b_flags & XBF_FS_MANAGED) {
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100844 spin_unlock(&hash->bh_lock);
845 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100846 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
847 list_del_init(&bp->b_hash_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 spin_unlock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100849 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
David Chinner2f926582005-09-05 08:33:35 +1000851 } else {
852 /*
853 * Catch reference count leaks
854 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100855 ASSERT(atomic_read(&bp->b_hold) >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857}
858
859
860/*
861 * Mutual exclusion on buffers. Locking model:
862 *
863 * Buffers associated with inodes for which buffer locking
864 * is not enabled are not protected by semaphores, and are
865 * assumed to be exclusively owned by the caller. There is a
866 * spinlock in the buffer, used by the caller when concurrent
867 * access is possible.
868 */
869
870/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100871 * Locks a buffer object, if it is not already locked.
872 * Note that this in no way locks the underlying pages, so it is only
873 * useful for synchronizing concurrent use of buffer objects, not for
874 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 */
876int
Nathan Scottce8e9222006-01-11 15:39:08 +1100877xfs_buf_cond_lock(
878 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
880 int locked;
881
Nathan Scottce8e9222006-01-11 15:39:08 +1100882 locked = down_trylock(&bp->b_sema) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (locked) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100884 XB_SET_OWNER(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100886 XB_TRACE(bp, "cond_lock", (long)locked);
887 return locked ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
890#if defined(DEBUG) || defined(XFS_BLI_TRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891int
Nathan Scottce8e9222006-01-11 15:39:08 +1100892xfs_buf_lock_value(
893 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Nathan Scottce8e9222006-01-11 15:39:08 +1100895 return atomic_read(&bp->b_sema.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897#endif
898
899/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100900 * Locks a buffer object.
901 * Note that this in no way locks the underlying pages, so it is only
902 * useful for synchronizing concurrent use of buffer objects, not for
903 * synchronizing independent access to the underlying pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100905void
906xfs_buf_lock(
907 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Nathan Scottce8e9222006-01-11 15:39:08 +1100909 XB_TRACE(bp, "lock", 0);
910 if (atomic_read(&bp->b_io_remaining))
911 blk_run_address_space(bp->b_target->bt_mapping);
912 down(&bp->b_sema);
913 XB_SET_OWNER(bp);
914 XB_TRACE(bp, "locked", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
916
917/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100918 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000919 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100920 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000921 * take a reference for the delwri queue because the unlocker is going to
922 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 */
924void
Nathan Scottce8e9222006-01-11 15:39:08 +1100925xfs_buf_unlock(
926 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Nathan Scottce8e9222006-01-11 15:39:08 +1100928 if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) {
929 atomic_inc(&bp->b_hold);
930 bp->b_flags |= XBF_ASYNC;
931 xfs_buf_delwri_queue(bp, 0);
David Chinner2f926582005-09-05 08:33:35 +1000932 }
933
Nathan Scottce8e9222006-01-11 15:39:08 +1100934 XB_CLEAR_OWNER(bp);
935 up(&bp->b_sema);
936 XB_TRACE(bp, "unlock", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
939
940/*
941 * Pinning Buffer Storage in Memory
Nathan Scottce8e9222006-01-11 15:39:08 +1100942 * Ensure that no attempt to force a buffer to disk will succeed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 */
944void
Nathan Scottce8e9222006-01-11 15:39:08 +1100945xfs_buf_pin(
946 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
Nathan Scottce8e9222006-01-11 15:39:08 +1100948 atomic_inc(&bp->b_pin_count);
949 XB_TRACE(bp, "pin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952void
Nathan Scottce8e9222006-01-11 15:39:08 +1100953xfs_buf_unpin(
954 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Nathan Scottce8e9222006-01-11 15:39:08 +1100956 if (atomic_dec_and_test(&bp->b_pin_count))
957 wake_up_all(&bp->b_waiters);
958 XB_TRACE(bp, "unpin", (long)bp->b_pin_count.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
961int
Nathan Scottce8e9222006-01-11 15:39:08 +1100962xfs_buf_ispin(
963 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Nathan Scottce8e9222006-01-11 15:39:08 +1100965 return atomic_read(&bp->b_pin_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
Nathan Scottce8e9222006-01-11 15:39:08 +1100968STATIC void
969xfs_buf_wait_unpin(
970 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 DECLARE_WAITQUEUE (wait, current);
973
Nathan Scottce8e9222006-01-11 15:39:08 +1100974 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return;
976
Nathan Scottce8e9222006-01-11 15:39:08 +1100977 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 for (;;) {
979 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100980 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 break;
Nathan Scottce8e9222006-01-11 15:39:08 +1100982 if (atomic_read(&bp->b_io_remaining))
983 blk_run_address_space(bp->b_target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 schedule();
985 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100986 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 set_current_state(TASK_RUNNING);
988}
989
990/*
991 * Buffer Utility Routines
992 */
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100995xfs_buf_iodone_work(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 void *v)
997{
998 xfs_buf_t *bp = (xfs_buf_t *)v;
999
Nathan Scottce8e9222006-01-11 15:39:08 +11001000 if (bp->b_iodone)
1001 (*(bp->b_iodone))(bp);
1002 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 xfs_buf_relse(bp);
1004}
1005
1006void
Nathan Scottce8e9222006-01-11 15:39:08 +11001007xfs_buf_ioend(
1008 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 int schedule)
1010{
Nathan Scottce8e9222006-01-11 15:39:08 +11001011 bp->b_flags &= ~(XBF_READ | XBF_WRITE);
1012 if (bp->b_error == 0)
1013 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Nathan Scottce8e9222006-01-11 15:39:08 +11001015 XB_TRACE(bp, "iodone", bp->b_iodone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Nathan Scottce8e9222006-01-11 15:39:08 +11001017 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (schedule) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001019 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work, bp);
1020 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001022 xfs_buf_iodone_work(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
1024 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001025 up(&bp->b_iodonesema);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027}
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029void
Nathan Scottce8e9222006-01-11 15:39:08 +11001030xfs_buf_ioerror(
1031 xfs_buf_t *bp,
1032 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
1034 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001035 bp->b_error = (unsigned short)error;
1036 XB_TRACE(bp, "ioerror", (unsigned long)error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038
1039/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001040 * Initiate I/O on a buffer, based on the flags supplied.
1041 * The b_iodone routine in the buffer supplied will only be called
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 * when all of the subsidiary I/O requests, if any, have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 */
1044int
Nathan Scottce8e9222006-01-11 15:39:08 +11001045xfs_buf_iostart(
1046 xfs_buf_t *bp,
1047 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 int status = 0;
1050
Nathan Scottce8e9222006-01-11 15:39:08 +11001051 XB_TRACE(bp, "iostart", (unsigned long)flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Nathan Scottce8e9222006-01-11 15:39:08 +11001053 if (flags & XBF_DELWRI) {
1054 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC);
1055 bp->b_flags |= flags & (XBF_DELWRI | XBF_ASYNC);
1056 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return status;
1058 }
1059
Nathan Scottce8e9222006-01-11 15:39:08 +11001060 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
1061 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
1062 bp->b_flags |= flags & (XBF_READ | XBF_WRITE | XBF_ASYNC | \
1063 XBF_READ_AHEAD | _XBF_RUN_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Nathan Scottce8e9222006-01-11 15:39:08 +11001065 BUG_ON(bp->b_bn == XFS_BUF_DADDR_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 /* For writes allow an alternate strategy routine to precede
1068 * the actual I/O request (which may not be issued at all in
1069 * a shutdown situation, for example).
1070 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001071 status = (flags & XBF_WRITE) ?
1072 xfs_buf_iostrategy(bp) : xfs_buf_iorequest(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 /* Wait for I/O if we are not an async request.
1075 * Note: async I/O request completion will release the buffer,
1076 * and that can already be done by this point. So using the
1077 * buffer pointer from here on, after async I/O, is invalid.
1078 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001079 if (!status && !(flags & XBF_ASYNC))
1080 status = xfs_buf_iowait(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 return status;
1083}
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085STATIC __inline__ int
Nathan Scottce8e9222006-01-11 15:39:08 +11001086_xfs_buf_iolocked(
1087 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Nathan Scottce8e9222006-01-11 15:39:08 +11001089 ASSERT(bp->b_flags & (XBF_READ | XBF_WRITE));
1090 if (bp->b_flags & XBF_READ)
1091 return bp->b_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 return 0;
1093}
1094
1095STATIC __inline__ void
Nathan Scottce8e9222006-01-11 15:39:08 +11001096_xfs_buf_ioend(
1097 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 int schedule)
1099{
Nathan Scottce8e9222006-01-11 15:39:08 +11001100 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1101 bp->b_locked = 0;
1102 xfs_buf_ioend(bp, schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
1104}
1105
1106STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +11001107xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 struct bio *bio,
1109 unsigned int bytes_done,
1110 int error)
1111{
Nathan Scottce8e9222006-01-11 15:39:08 +11001112 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
1113 unsigned int blocksize = bp->b_target->bt_bsize;
Nathan Scotteedb5532005-09-02 16:39:56 +10001114 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 if (bio->bi_size)
1117 return 1;
1118
1119 if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
Nathan Scottce8e9222006-01-11 15:39:08 +11001120 bp->b_error = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Nathan Scotteedb5532005-09-02 16:39:56 +10001122 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 struct page *page = bvec->bv_page;
1124
Nathan Scott948ecdb2006-09-28 11:03:13 +10001125 ASSERT(!PagePrivate(page));
Nathan Scottce8e9222006-01-11 15:39:08 +11001126 if (unlikely(bp->b_error)) {
1127 if (bp->b_flags & XBF_READ)
Nathan Scotteedb5532005-09-02 16:39:56 +10001128 ClearPageUptodate(page);
Nathan Scottce8e9222006-01-11 15:39:08 +11001129 } else if (blocksize >= PAGE_CACHE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 SetPageUptodate(page);
1131 } else if (!PagePrivate(page) &&
Nathan Scottce8e9222006-01-11 15:39:08 +11001132 (bp->b_flags & _XBF_PAGE_CACHE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 set_page_region(page, bvec->bv_offset, bvec->bv_len);
1134 }
1135
Nathan Scotteedb5532005-09-02 16:39:56 +10001136 if (--bvec >= bio->bi_io_vec)
1137 prefetchw(&bvec->bv_page->flags);
1138
Nathan Scottce8e9222006-01-11 15:39:08 +11001139 if (_xfs_buf_iolocked(bp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 unlock_page(page);
1141 }
Nathan Scotteedb5532005-09-02 16:39:56 +10001142 } while (bvec >= bio->bi_io_vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Nathan Scottce8e9222006-01-11 15:39:08 +11001144 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 bio_put(bio);
1146 return 0;
1147}
1148
1149STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001150_xfs_buf_ioapply(
1151 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
1153 int i, rw, map_i, total_nr_pages, nr_pages;
1154 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001155 int offset = bp->b_offset;
1156 int size = bp->b_count_desired;
1157 sector_t sector = bp->b_bn;
1158 unsigned int blocksize = bp->b_target->bt_bsize;
1159 int locking = _xfs_buf_iolocked(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Nathan Scottce8e9222006-01-11 15:39:08 +11001161 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 map_i = 0;
1163
Nathan Scottce8e9222006-01-11 15:39:08 +11001164 if (bp->b_flags & XBF_ORDERED) {
1165 ASSERT(!(bp->b_flags & XBF_READ));
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001166 rw = WRITE_BARRIER;
Nathan Scott51bdd702006-09-28 11:01:57 +10001167 } else if (bp->b_flags & _XBF_RUN_QUEUES) {
1168 ASSERT(!(bp->b_flags & XBF_READ_AHEAD));
1169 bp->b_flags &= ~_XBF_RUN_QUEUES;
1170 rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
1171 } else {
1172 rw = (bp->b_flags & XBF_WRITE) ? WRITE :
1173 (bp->b_flags & XBF_READ_AHEAD) ? READA : READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001174 }
1175
Nathan Scottce8e9222006-01-11 15:39:08 +11001176 /* Special code path for reading a sub page size buffer in --
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 * we populate up the whole page, and hence the other metadata
1178 * in the same page. This optimization is only valid when the
Nathan Scottce8e9222006-01-11 15:39:08 +11001179 * filesystem block size is not smaller than the page size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001181 if ((bp->b_buffer_length < PAGE_CACHE_SIZE) &&
1182 (bp->b_flags & XBF_READ) && locking &&
1183 (blocksize >= PAGE_CACHE_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 bio = bio_alloc(GFP_NOIO, 1);
1185
Nathan Scottce8e9222006-01-11 15:39:08 +11001186 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 bio->bi_sector = sector - (offset >> BBSHIFT);
Nathan Scottce8e9222006-01-11 15:39:08 +11001188 bio->bi_end_io = xfs_buf_bio_end_io;
1189 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Nathan Scottce8e9222006-01-11 15:39:08 +11001191 bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 size = 0;
1193
Nathan Scottce8e9222006-01-11 15:39:08 +11001194 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 goto submit_io;
1197 }
1198
1199 /* Lock down the pages which we need to for the request */
Nathan Scottce8e9222006-01-11 15:39:08 +11001200 if (locking && (bp->b_flags & XBF_WRITE) && (bp->b_locked == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 for (i = 0; size; i++) {
1202 int nbytes = PAGE_CACHE_SIZE - offset;
Nathan Scottce8e9222006-01-11 15:39:08 +11001203 struct page *page = bp->b_pages[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 if (nbytes > size)
1206 nbytes = size;
1207
1208 lock_page(page);
1209
1210 size -= nbytes;
1211 offset = 0;
1212 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001213 offset = bp->b_offset;
1214 size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216
1217next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001218 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1220 if (nr_pages > total_nr_pages)
1221 nr_pages = total_nr_pages;
1222
1223 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001224 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001226 bio->bi_end_io = xfs_buf_bio_end_io;
1227 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 for (; size && nr_pages; nr_pages--, map_i++) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001230 int rbytes, nbytes = PAGE_CACHE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 if (nbytes > size)
1233 nbytes = size;
1234
Nathan Scottce8e9222006-01-11 15:39:08 +11001235 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1236 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 break;
1238
1239 offset = 0;
1240 sector += nbytes >> BBSHIFT;
1241 size -= nbytes;
1242 total_nr_pages--;
1243 }
1244
1245submit_io:
1246 if (likely(bio->bi_size)) {
1247 submit_bio(rw, bio);
1248 if (size)
1249 goto next_chunk;
1250 } else {
1251 bio_put(bio);
Nathan Scottce8e9222006-01-11 15:39:08 +11001252 xfs_buf_ioerror(bp, EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
1254}
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256int
Nathan Scottce8e9222006-01-11 15:39:08 +11001257xfs_buf_iorequest(
1258 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Nathan Scottce8e9222006-01-11 15:39:08 +11001260 XB_TRACE(bp, "iorequest", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Nathan Scottce8e9222006-01-11 15:39:08 +11001262 if (bp->b_flags & XBF_DELWRI) {
1263 xfs_buf_delwri_queue(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 return 0;
1265 }
1266
Nathan Scottce8e9222006-01-11 15:39:08 +11001267 if (bp->b_flags & XBF_WRITE) {
1268 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
1270
Nathan Scottce8e9222006-01-11 15:39:08 +11001271 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 /* Set the count to 1 initially, this will stop an I/O
1274 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001275 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001277 atomic_set(&bp->b_io_remaining, 1);
1278 _xfs_buf_ioapply(bp);
1279 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Nathan Scottce8e9222006-01-11 15:39:08 +11001281 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 return 0;
1283}
1284
1285/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001286 * Waits for I/O to complete on the buffer supplied.
1287 * It returns immediately if no I/O is pending.
1288 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 */
1290int
Nathan Scottce8e9222006-01-11 15:39:08 +11001291xfs_buf_iowait(
1292 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293{
Nathan Scottce8e9222006-01-11 15:39:08 +11001294 XB_TRACE(bp, "iowait", 0);
1295 if (atomic_read(&bp->b_io_remaining))
1296 blk_run_address_space(bp->b_target->bt_mapping);
1297 down(&bp->b_iodonesema);
1298 XB_TRACE(bp, "iowaited", (long)bp->b_error);
1299 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
Nathan Scottce8e9222006-01-11 15:39:08 +11001302xfs_caddr_t
1303xfs_buf_offset(
1304 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 size_t offset)
1306{
1307 struct page *page;
1308
Nathan Scottce8e9222006-01-11 15:39:08 +11001309 if (bp->b_flags & XBF_MAPPED)
1310 return XFS_BUF_PTR(bp) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Nathan Scottce8e9222006-01-11 15:39:08 +11001312 offset += bp->b_offset;
1313 page = bp->b_pages[offset >> PAGE_CACHE_SHIFT];
1314 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
1317/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 * Move data into or out of a buffer.
1319 */
1320void
Nathan Scottce8e9222006-01-11 15:39:08 +11001321xfs_buf_iomove(
1322 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 size_t boff, /* starting buffer offset */
1324 size_t bsize, /* length to copy */
1325 caddr_t data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001326 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
1328 size_t bend, cpoff, csize;
1329 struct page *page;
1330
1331 bend = boff + bsize;
1332 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001333 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1334 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 csize = min_t(size_t,
Nathan Scottce8e9222006-01-11 15:39:08 +11001336 PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338 ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE));
1339
1340 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001341 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 memset(page_address(page) + cpoff, 0, csize);
1343 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001344 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 memcpy(data, page_address(page) + cpoff, csize);
1346 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001347 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 memcpy(page_address(page) + cpoff, data, csize);
1349 }
1350
1351 boff += csize;
1352 data += csize;
1353 }
1354}
1355
1356/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001357 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 */
1359
1360/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001361 * Wait for any bufs with callbacks that have been submitted but
1362 * have not yet returned... walk the hash list for the target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 */
1364void
1365xfs_wait_buftarg(
1366 xfs_buftarg_t *btp)
1367{
1368 xfs_buf_t *bp, *n;
1369 xfs_bufhash_t *hash;
1370 uint i;
1371
1372 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1373 hash = &btp->bt_hash[i];
1374again:
1375 spin_lock(&hash->bh_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001376 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
1377 ASSERT(btp == bp->b_target);
1378 if (!(bp->b_flags & XBF_FS_MANAGED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 spin_unlock(&hash->bh_lock);
David Chinner2f926582005-09-05 08:33:35 +10001380 /*
1381 * Catch superblock reference count leaks
1382 * immediately
1383 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001384 BUG_ON(bp->b_bn == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 delay(100);
1386 goto again;
1387 }
1388 }
1389 spin_unlock(&hash->bh_lock);
1390 }
1391}
1392
1393/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001394 * Allocate buffer hash table for a given target.
1395 * For devices containing metadata (i.e. not the log/realtime devices)
1396 * we need to allocate a much larger hash table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 */
1398STATIC void
1399xfs_alloc_bufhash(
1400 xfs_buftarg_t *btp,
1401 int external)
1402{
1403 unsigned int i;
1404
1405 btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */
1406 btp->bt_hashmask = (1 << btp->bt_hashshift) - 1;
1407 btp->bt_hash = kmem_zalloc((1 << btp->bt_hashshift) *
1408 sizeof(xfs_bufhash_t), KM_SLEEP);
1409 for (i = 0; i < (1 << btp->bt_hashshift); i++) {
1410 spin_lock_init(&btp->bt_hash[i].bh_lock);
1411 INIT_LIST_HEAD(&btp->bt_hash[i].bh_list);
1412 }
1413}
1414
1415STATIC void
1416xfs_free_bufhash(
1417 xfs_buftarg_t *btp)
1418{
Nathan Scottce8e9222006-01-11 15:39:08 +11001419 kmem_free(btp->bt_hash, (1<<btp->bt_hashshift) * sizeof(xfs_bufhash_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 btp->bt_hash = NULL;
1421}
1422
David Chinnera6867a62006-01-11 15:37:58 +11001423/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001424 * buftarg list for delwrite queue processing
David Chinnera6867a62006-01-11 15:37:58 +11001425 */
1426STATIC LIST_HEAD(xfs_buftarg_list);
1427STATIC DEFINE_SPINLOCK(xfs_buftarg_lock);
1428
1429STATIC void
1430xfs_register_buftarg(
1431 xfs_buftarg_t *btp)
1432{
1433 spin_lock(&xfs_buftarg_lock);
1434 list_add(&btp->bt_list, &xfs_buftarg_list);
1435 spin_unlock(&xfs_buftarg_lock);
1436}
1437
1438STATIC void
1439xfs_unregister_buftarg(
1440 xfs_buftarg_t *btp)
1441{
1442 spin_lock(&xfs_buftarg_lock);
1443 list_del(&btp->bt_list);
1444 spin_unlock(&xfs_buftarg_lock);
1445}
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447void
1448xfs_free_buftarg(
1449 xfs_buftarg_t *btp,
1450 int external)
1451{
1452 xfs_flush_buftarg(btp, 1);
1453 if (external)
Nathan Scottce8e9222006-01-11 15:39:08 +11001454 xfs_blkdev_put(btp->bt_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 xfs_free_bufhash(btp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001456 iput(btp->bt_mapping->host);
David Chinnera6867a62006-01-11 15:37:58 +11001457
Nathan Scottce8e9222006-01-11 15:39:08 +11001458 /* Unregister the buftarg first so that we don't get a
1459 * wakeup finding a non-existent task
1460 */
David Chinnera6867a62006-01-11 15:37:58 +11001461 xfs_unregister_buftarg(btp);
1462 kthread_stop(btp->bt_task);
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 kmem_free(btp, sizeof(*btp));
1465}
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467STATIC int
1468xfs_setsize_buftarg_flags(
1469 xfs_buftarg_t *btp,
1470 unsigned int blocksize,
1471 unsigned int sectorsize,
1472 int verbose)
1473{
Nathan Scottce8e9222006-01-11 15:39:08 +11001474 btp->bt_bsize = blocksize;
1475 btp->bt_sshift = ffs(sectorsize) - 1;
1476 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Nathan Scottce8e9222006-01-11 15:39:08 +11001478 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 printk(KERN_WARNING
1480 "XFS: Cannot set_blocksize to %u on device %s\n",
1481 sectorsize, XFS_BUFTARG_NAME(btp));
1482 return EINVAL;
1483 }
1484
1485 if (verbose &&
1486 (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) {
1487 printk(KERN_WARNING
1488 "XFS: %u byte sectors in use on device %s. "
1489 "This is suboptimal; %u or greater is ideal.\n",
1490 sectorsize, XFS_BUFTARG_NAME(btp),
1491 (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG);
1492 }
1493
1494 return 0;
1495}
1496
1497/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001498 * When allocating the initial buffer target we have not yet
1499 * read in the superblock, so don't know what sized sectors
1500 * are being used is at this early stage. Play safe.
1501 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502STATIC int
1503xfs_setsize_buftarg_early(
1504 xfs_buftarg_t *btp,
1505 struct block_device *bdev)
1506{
1507 return xfs_setsize_buftarg_flags(btp,
1508 PAGE_CACHE_SIZE, bdev_hardsect_size(bdev), 0);
1509}
1510
1511int
1512xfs_setsize_buftarg(
1513 xfs_buftarg_t *btp,
1514 unsigned int blocksize,
1515 unsigned int sectorsize)
1516{
1517 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1518}
1519
1520STATIC int
1521xfs_mapping_buftarg(
1522 xfs_buftarg_t *btp,
1523 struct block_device *bdev)
1524{
1525 struct backing_dev_info *bdi;
1526 struct inode *inode;
1527 struct address_space *mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001528 static const struct address_space_operations mapping_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 .sync_page = block_sync_page,
Christoph Lametere965f962006-02-01 03:05:41 -08001530 .migratepage = fail_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 };
1532
1533 inode = new_inode(bdev->bd_inode->i_sb);
1534 if (!inode) {
1535 printk(KERN_WARNING
1536 "XFS: Cannot allocate mapping inode for device %s\n",
1537 XFS_BUFTARG_NAME(btp));
1538 return ENOMEM;
1539 }
1540 inode->i_mode = S_IFBLK;
1541 inode->i_bdev = bdev;
1542 inode->i_rdev = bdev->bd_dev;
1543 bdi = blk_get_backing_dev_info(bdev);
1544 if (!bdi)
1545 bdi = &default_backing_dev_info;
1546 mapping = &inode->i_data;
1547 mapping->a_ops = &mapping_aops;
1548 mapping->backing_dev_info = bdi;
1549 mapping_set_gfp_mask(mapping, GFP_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +11001550 btp->bt_mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 return 0;
1552}
1553
David Chinnera6867a62006-01-11 15:37:58 +11001554STATIC int
1555xfs_alloc_delwrite_queue(
1556 xfs_buftarg_t *btp)
1557{
1558 int error = 0;
1559
1560 INIT_LIST_HEAD(&btp->bt_list);
1561 INIT_LIST_HEAD(&btp->bt_delwrite_queue);
1562 spinlock_init(&btp->bt_delwrite_lock, "delwri_lock");
1563 btp->bt_flags = 0;
1564 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd");
1565 if (IS_ERR(btp->bt_task)) {
1566 error = PTR_ERR(btp->bt_task);
1567 goto out_error;
1568 }
1569 xfs_register_buftarg(btp);
1570out_error:
1571 return error;
1572}
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574xfs_buftarg_t *
1575xfs_alloc_buftarg(
1576 struct block_device *bdev,
1577 int external)
1578{
1579 xfs_buftarg_t *btp;
1580
1581 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1582
Nathan Scottce8e9222006-01-11 15:39:08 +11001583 btp->bt_dev = bdev->bd_dev;
1584 btp->bt_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if (xfs_setsize_buftarg_early(btp, bdev))
1586 goto error;
1587 if (xfs_mapping_buftarg(btp, bdev))
1588 goto error;
David Chinnera6867a62006-01-11 15:37:58 +11001589 if (xfs_alloc_delwrite_queue(btp))
1590 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 xfs_alloc_bufhash(btp, external);
1592 return btp;
1593
1594error:
1595 kmem_free(btp, sizeof(*btp));
1596 return NULL;
1597}
1598
1599
1600/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001601 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001604xfs_buf_delwri_queue(
1605 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 int unlock)
1607{
Nathan Scottce8e9222006-01-11 15:39:08 +11001608 struct list_head *dwq = &bp->b_target->bt_delwrite_queue;
1609 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
David Chinnera6867a62006-01-11 15:37:58 +11001610
Nathan Scottce8e9222006-01-11 15:39:08 +11001611 XB_TRACE(bp, "delwri_q", (long)unlock);
1612 ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
David Chinnera6867a62006-01-11 15:37:58 +11001614 spin_lock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 /* If already in the queue, dequeue and place at tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001616 if (!list_empty(&bp->b_list)) {
1617 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1618 if (unlock)
1619 atomic_dec(&bp->b_hold);
1620 list_del(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 }
1622
Nathan Scottce8e9222006-01-11 15:39:08 +11001623 bp->b_flags |= _XBF_DELWRI_Q;
1624 list_add_tail(&bp->b_list, dwq);
1625 bp->b_queuetime = jiffies;
David Chinnera6867a62006-01-11 15:37:58 +11001626 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 if (unlock)
Nathan Scottce8e9222006-01-11 15:39:08 +11001629 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
1631
1632void
Nathan Scottce8e9222006-01-11 15:39:08 +11001633xfs_buf_delwri_dequeue(
1634 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
Nathan Scottce8e9222006-01-11 15:39:08 +11001636 spinlock_t *dwlk = &bp->b_target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 int dequeued = 0;
1638
David Chinnera6867a62006-01-11 15:37:58 +11001639 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001640 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1641 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1642 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 dequeued = 1;
1644 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001645 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
David Chinnera6867a62006-01-11 15:37:58 +11001646 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001649 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Nathan Scottce8e9222006-01-11 15:39:08 +11001651 XB_TRACE(bp, "delwri_dq", (long)dequeued);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652}
1653
1654STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001655xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 struct workqueue_struct *queue)
1657{
1658 flush_workqueue(queue);
1659}
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001662xfsbufd_wakeup(
Nathan Scott15c84a42005-11-04 10:51:01 +11001663 int priority,
1664 gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665{
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001666 xfs_buftarg_t *btp;
David Chinnera6867a62006-01-11 15:37:58 +11001667
1668 spin_lock(&xfs_buftarg_lock);
Christoph Hellwigda7f93e2006-01-11 20:49:57 +11001669 list_for_each_entry(btp, &xfs_buftarg_list, bt_list) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001670 if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags))
David Chinnera6867a62006-01-11 15:37:58 +11001671 continue;
Nathan Scottce8e9222006-01-11 15:39:08 +11001672 set_bit(XBT_FORCE_FLUSH, &btp->bt_flags);
David Chinnera6867a62006-01-11 15:37:58 +11001673 wake_up_process(btp->bt_task);
1674 }
1675 spin_unlock(&xfs_buftarg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return 0;
1677}
1678
1679STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001680xfsbufd(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 void *data)
1682{
1683 struct list_head tmp;
1684 unsigned long age;
David Chinnera6867a62006-01-11 15:37:58 +11001685 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
Nathan Scottce8e9222006-01-11 15:39:08 +11001686 xfs_buf_t *bp, *n;
David Chinnera6867a62006-01-11 15:37:58 +11001687 struct list_head *dwq = &target->bt_delwrite_queue;
1688 spinlock_t *dwlk = &target->bt_delwrite_lock;
Nathan Scottf07c2252006-09-28 10:52:15 +10001689 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 current->flags |= PF_MEMALLOC;
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 INIT_LIST_HEAD(&tmp);
1694 do {
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001695 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001696 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001697 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001698 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001699 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Nathan Scott15c84a42005-11-04 10:51:01 +11001702 schedule_timeout_interruptible(
1703 xfs_buf_timer_centisecs * msecs_to_jiffies(10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Nathan Scottf07c2252006-09-28 10:52:15 +10001705 count = 0;
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07001706 age = xfs_buf_age_centisecs * msecs_to_jiffies(10);
David Chinnera6867a62006-01-11 15:37:58 +11001707 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001708 list_for_each_entry_safe(bp, n, dwq, b_list) {
1709 XB_TRACE(bp, "walkq1", (long)xfs_buf_ispin(bp));
1710 ASSERT(bp->b_flags & XBF_DELWRI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Nathan Scottce8e9222006-01-11 15:39:08 +11001712 if (!xfs_buf_ispin(bp) && !xfs_buf_cond_lock(bp)) {
1713 if (!test_bit(XBT_FORCE_FLUSH,
David Chinnera6867a62006-01-11 15:37:58 +11001714 &target->bt_flags) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 time_before(jiffies,
Nathan Scottce8e9222006-01-11 15:39:08 +11001716 bp->b_queuetime + age)) {
1717 xfs_buf_unlock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 break;
1719 }
1720
Nathan Scottf07c2252006-09-28 10:52:15 +10001721 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|
1722 _XBF_RUN_QUEUES);
Nathan Scottce8e9222006-01-11 15:39:08 +11001723 bp->b_flags |= XBF_WRITE;
Nathan Scottf07c2252006-09-28 10:52:15 +10001724 list_move_tail(&bp->b_list, &tmp);
1725 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 }
1727 }
David Chinnera6867a62006-01-11 15:37:58 +11001728 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
1730 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001731 bp = list_entry(tmp.next, xfs_buf_t, b_list);
1732 ASSERT(target == bp->b_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Nathan Scottce8e9222006-01-11 15:39:08 +11001734 list_del_init(&bp->b_list);
1735 xfs_buf_iostrategy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
1737
1738 if (as_list_len > 0)
1739 purge_addresses();
Nathan Scottf07c2252006-09-28 10:52:15 +10001740 if (count)
1741 blk_run_address_space(target->bt_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Nathan Scottce8e9222006-01-11 15:39:08 +11001743 clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001744 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001746 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747}
1748
1749/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001750 * Go through all incore buffers, and release buffers if they belong to
1751 * the given device. This is used in filesystem error handling to
1752 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 */
1754int
1755xfs_flush_buftarg(
1756 xfs_buftarg_t *target,
1757 int wait)
1758{
1759 struct list_head tmp;
Nathan Scottce8e9222006-01-11 15:39:08 +11001760 xfs_buf_t *bp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 int pincount = 0;
David Chinnera6867a62006-01-11 15:37:58 +11001762 struct list_head *dwq = &target->bt_delwrite_queue;
1763 spinlock_t *dwlk = &target->bt_delwrite_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Nathan Scottce8e9222006-01-11 15:39:08 +11001765 xfs_buf_runall_queues(xfsdatad_workqueue);
1766 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768 INIT_LIST_HEAD(&tmp);
David Chinnera6867a62006-01-11 15:37:58 +11001769 spin_lock(dwlk);
Nathan Scottce8e9222006-01-11 15:39:08 +11001770 list_for_each_entry_safe(bp, n, dwq, b_list) {
1771 ASSERT(bp->b_target == target);
1772 ASSERT(bp->b_flags & (XBF_DELWRI | _XBF_DELWRI_Q));
1773 XB_TRACE(bp, "walkq2", (long)xfs_buf_ispin(bp));
1774 if (xfs_buf_ispin(bp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 pincount++;
1776 continue;
1777 }
1778
Nathan Scottf07c2252006-09-28 10:52:15 +10001779 list_move_tail(&bp->b_list, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 }
David Chinnera6867a62006-01-11 15:37:58 +11001781 spin_unlock(dwlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
1783 /*
1784 * Dropped the delayed write list lock, now walk the temporary list
1785 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001786 list_for_each_entry_safe(bp, n, &tmp, b_list) {
1787 xfs_buf_lock(bp);
Nathan Scottf07c2252006-09-28 10:52:15 +10001788 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q|_XBF_RUN_QUEUES);
Nathan Scottce8e9222006-01-11 15:39:08 +11001789 bp->b_flags |= XBF_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (wait)
Nathan Scottce8e9222006-01-11 15:39:08 +11001791 bp->b_flags &= ~XBF_ASYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 else
Nathan Scottce8e9222006-01-11 15:39:08 +11001793 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Nathan Scottce8e9222006-01-11 15:39:08 +11001795 xfs_buf_iostrategy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 }
1797
Nathan Scottf07c2252006-09-28 10:52:15 +10001798 if (wait)
1799 blk_run_address_space(target->bt_mapping);
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 /*
1802 * Remaining list items must be flushed before returning
1803 */
1804 while (!list_empty(&tmp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001805 bp = list_entry(tmp.next, xfs_buf_t, b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Nathan Scottce8e9222006-01-11 15:39:08 +11001807 list_del_init(&bp->b_list);
1808 xfs_iowait(bp);
1809 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
1811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 return pincount;
1813}
1814
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001815int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001816xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
Nathan Scottce8e9222006-01-11 15:39:08 +11001818#ifdef XFS_BUF_TRACE
1819 xfs_buf_trace_buf = ktrace_alloc(XFS_BUF_TRACE_SIZE, KM_SLEEP);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001820#endif
1821
Nathan Scott87582802006-03-14 13:18:19 +11001822 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1823 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001824 if (!xfs_buf_zone)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001825 goto out_free_trace_buf;
1826
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001827 xfslogd_workqueue = create_workqueue("xfslogd");
1828 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001829 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001831 xfsdatad_workqueue = create_workqueue("xfsdatad");
1832 if (!xfsdatad_workqueue)
1833 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Nathan Scottce8e9222006-01-11 15:39:08 +11001835 xfs_buf_shake = kmem_shake_register(xfsbufd_wakeup);
1836 if (!xfs_buf_shake)
David Chinnera6867a62006-01-11 15:37:58 +11001837 goto out_destroy_xfsdatad_workqueue;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001838
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001839 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001841 out_destroy_xfsdatad_workqueue:
1842 destroy_workqueue(xfsdatad_workqueue);
1843 out_destroy_xfslogd_workqueue:
1844 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001845 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001846 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001847 out_free_trace_buf:
Nathan Scottce8e9222006-01-11 15:39:08 +11001848#ifdef XFS_BUF_TRACE
1849 ktrace_free(xfs_buf_trace_buf);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001850#endif
Nathan Scott87582802006-03-14 13:18:19 +11001851 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852}
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854void
Nathan Scottce8e9222006-01-11 15:39:08 +11001855xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
Nathan Scottce8e9222006-01-11 15:39:08 +11001857 kmem_shake_deregister(xfs_buf_shake);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001858 destroy_workqueue(xfsdatad_workqueue);
1859 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001860 kmem_zone_destroy(xfs_buf_zone);
1861#ifdef XFS_BUF_TRACE
1862 ktrace_free(xfs_buf_trace_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864}