blob: bb76128b5f47ad0b26fc39f7f199a988526f1a9d [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#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
Christoph Hellwigb7963132009-03-03 14:48:37 -050037#include "xfs_sb.h"
38#include "xfs_inum.h"
Dave Chinnered3b4d62010-05-21 12:07:08 +100039#include "xfs_log.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050040#include "xfs_ag.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050041#include "xfs_mount.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000042#include "xfs_trace.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050043
David Chinner7989cb82007-02-10 18:34:56 +110044static kmem_zone_t *xfs_buf_zone;
David Chinnera6867a62006-01-11 15:37:58 +110045STATIC int xfsbufd(void *);
Christoph Hellwig23ea4032005-06-21 15:14:01 +100046
David Chinner7989cb82007-02-10 18:34:56 +110047static struct workqueue_struct *xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Nathan Scottce8e9222006-01-11 15:39:08 +110049#ifdef XFS_BUF_LOCK_TRACKING
50# define XB_SET_OWNER(bp) ((bp)->b_last_holder = current->pid)
51# define XB_CLEAR_OWNER(bp) ((bp)->b_last_holder = -1)
52# define XB_GET_OWNER(bp) ((bp)->b_last_holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#else
Nathan Scottce8e9222006-01-11 15:39:08 +110054# define XB_SET_OWNER(bp) do { } while (0)
55# define XB_CLEAR_OWNER(bp) do { } while (0)
56# define XB_GET_OWNER(bp) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#endif
58
Nathan Scottce8e9222006-01-11 15:39:08 +110059#define xb_to_gfp(flags) \
60 ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : \
61 ((flags) & XBF_DONT_BLOCK) ? GFP_NOFS : GFP_KERNEL) | __GFP_NOWARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Nathan Scottce8e9222006-01-11 15:39:08 +110063#define xb_to_km(flags) \
64 (((flags) & XBF_DONT_BLOCK) ? KM_NOFS : KM_SLEEP)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
James Bottomley73c77e22010-01-25 11:42:24 -060067static inline int
68xfs_buf_is_vmapped(
69 struct xfs_buf *bp)
70{
71 /*
72 * Return true if the buffer is vmapped.
73 *
74 * The XBF_MAPPED flag is set if the buffer should be mapped, but the
75 * code is clever enough to know it doesn't have to map a single page,
76 * so the check has to be both for XBF_MAPPED and bp->b_page_count > 1.
77 */
78 return (bp->b_flags & XBF_MAPPED) && bp->b_page_count > 1;
79}
80
81static inline int
82xfs_buf_vmap_len(
83 struct xfs_buf *bp)
84{
85 return (bp->b_page_count * PAGE_SIZE) - bp->b_offset;
86}
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/*
Dave Chinner430cbeb2010-12-02 16:30:55 +110089 * xfs_buf_lru_add - add a buffer to the LRU.
90 *
91 * The LRU takes a new reference to the buffer so that it will only be freed
92 * once the shrinker takes the buffer off the LRU.
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 */
Dave Chinner430cbeb2010-12-02 16:30:55 +110094STATIC void
95xfs_buf_lru_add(
96 struct xfs_buf *bp)
97{
98 struct xfs_buftarg *btp = bp->b_target;
99
100 spin_lock(&btp->bt_lru_lock);
101 if (list_empty(&bp->b_lru)) {
102 atomic_inc(&bp->b_hold);
103 list_add_tail(&bp->b_lru, &btp->bt_lru);
104 btp->bt_lru_nr++;
105 }
106 spin_unlock(&btp->bt_lru_lock);
107}
108
109/*
110 * xfs_buf_lru_del - remove a buffer from the LRU
111 *
112 * The unlocked check is safe here because it only occurs when there are not
113 * b_lru_ref counts left on the inode under the pag->pag_buf_lock. it is there
114 * to optimise the shrinker removing the buffer from the LRU and calling
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300115 * xfs_buf_free(). i.e. it removes an unnecessary round trip on the
Dave Chinner430cbeb2010-12-02 16:30:55 +1100116 * bt_lru_lock.
117 */
118STATIC void
119xfs_buf_lru_del(
120 struct xfs_buf *bp)
121{
122 struct xfs_buftarg *btp = bp->b_target;
123
124 if (list_empty(&bp->b_lru))
125 return;
126
127 spin_lock(&btp->bt_lru_lock);
128 if (!list_empty(&bp->b_lru)) {
129 list_del_init(&bp->b_lru);
130 btp->bt_lru_nr--;
131 }
132 spin_unlock(&btp->bt_lru_lock);
133}
134
135/*
136 * When we mark a buffer stale, we remove the buffer from the LRU and clear the
137 * b_lru_ref count so that the buffer is freed immediately when the buffer
138 * reference count falls to zero. If the buffer is already on the LRU, we need
139 * to remove the reference that LRU holds on the buffer.
140 *
141 * This prevents build-up of stale buffers on the LRU.
142 */
143void
144xfs_buf_stale(
145 struct xfs_buf *bp)
146{
147 bp->b_flags |= XBF_STALE;
Christoph Hellwigaf5c4be2011-10-10 16:52:47 +0000148 xfs_buf_delwri_dequeue(bp);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100149 atomic_set(&(bp)->b_lru_ref, 0);
150 if (!list_empty(&bp->b_lru)) {
151 struct xfs_buftarg *btp = bp->b_target;
152
153 spin_lock(&btp->bt_lru_lock);
154 if (!list_empty(&bp->b_lru)) {
155 list_del_init(&bp->b_lru);
156 btp->bt_lru_nr--;
157 atomic_dec(&bp->b_hold);
158 }
159 spin_unlock(&btp->bt_lru_lock);
160 }
161 ASSERT(atomic_read(&bp->b_hold) >= 1);
162}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000164struct xfs_buf *
165xfs_buf_alloc(
166 struct xfs_buftarg *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100167 xfs_off_t range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 size_t range_length,
Nathan Scottce8e9222006-01-11 15:39:08 +1100169 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000171 struct xfs_buf *bp;
172
173 bp = kmem_zone_alloc(xfs_buf_zone, xb_to_km(flags));
174 if (unlikely(!bp))
175 return NULL;
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100178 * We don't want certain flags to appear in b_flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100180 flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Nathan Scottce8e9222006-01-11 15:39:08 +1100182 memset(bp, 0, sizeof(xfs_buf_t));
183 atomic_set(&bp->b_hold, 1);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100184 atomic_set(&bp->b_lru_ref, 1);
David Chinnerb4dd3302008-08-13 16:36:11 +1000185 init_completion(&bp->b_iowait);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100186 INIT_LIST_HEAD(&bp->b_lru);
Nathan Scottce8e9222006-01-11 15:39:08 +1100187 INIT_LIST_HEAD(&bp->b_list);
Dave Chinner74f75a02010-09-24 19:59:04 +1000188 RB_CLEAR_NODE(&bp->b_rbnode);
Thomas Gleixnera731cd12010-09-07 14:33:15 +0000189 sema_init(&bp->b_sema, 0); /* held, no waiters */
Nathan Scottce8e9222006-01-11 15:39:08 +1100190 XB_SET_OWNER(bp);
191 bp->b_target = target;
192 bp->b_file_offset = range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 /*
194 * Set buffer_length and count_desired to the same value initially.
195 * I/O routines should use count_desired, which will be the same in
196 * most cases but may be reset (e.g. XFS recovery).
197 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100198 bp->b_buffer_length = bp->b_count_desired = range_length;
199 bp->b_flags = flags;
200 bp->b_bn = XFS_BUF_DADDR_NULL;
201 atomic_set(&bp->b_pin_count, 0);
202 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Nathan Scottce8e9222006-01-11 15:39:08 +1100204 XFS_STATS_INC(xb_create);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000205 trace_xfs_buf_init(bp, _RET_IP_);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000206
207 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
210/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100211 * Allocate a page array capable of holding a specified number
212 * of pages, and point the page buf at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 */
214STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100215_xfs_buf_get_pages(
216 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 int page_count,
Nathan Scottce8e9222006-01-11 15:39:08 +1100218 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 /* Make sure that we have a page list */
Nathan Scottce8e9222006-01-11 15:39:08 +1100221 if (bp->b_pages == NULL) {
222 bp->b_offset = xfs_buf_poff(bp->b_file_offset);
223 bp->b_page_count = page_count;
224 if (page_count <= XB_PAGES) {
225 bp->b_pages = bp->b_page_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100227 bp->b_pages = kmem_alloc(sizeof(struct page *) *
228 page_count, xb_to_km(flags));
229 if (bp->b_pages == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return -ENOMEM;
231 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100232 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234 return 0;
235}
236
237/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100238 * Frees b_pages if it was allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 */
240STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100241_xfs_buf_free_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 xfs_buf_t *bp)
243{
Nathan Scottce8e9222006-01-11 15:39:08 +1100244 if (bp->b_pages != bp->b_page_array) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000245 kmem_free(bp->b_pages);
Dave Chinner3fc98b12009-12-14 23:11:57 +0000246 bp->b_pages = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248}
249
250/*
251 * Releases the specified buffer.
252 *
253 * The modification state of any associated pages is left unchanged.
Nathan Scottce8e9222006-01-11 15:39:08 +1100254 * The buffer most not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 * hashed and refcounted buffers
256 */
257void
Nathan Scottce8e9222006-01-11 15:39:08 +1100258xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 xfs_buf_t *bp)
260{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000261 trace_xfs_buf_free(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Dave Chinner430cbeb2010-12-02 16:30:55 +1100263 ASSERT(list_empty(&bp->b_lru));
264
Dave Chinner0e6e8472011-03-26 09:16:45 +1100265 if (bp->b_flags & _XBF_PAGES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 uint i;
267
James Bottomley73c77e22010-01-25 11:42:24 -0600268 if (xfs_buf_is_vmapped(bp))
Alex Elder8a262e52010-03-16 18:55:56 +0000269 vm_unmap_ram(bp->b_addr - bp->b_offset,
270 bp->b_page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Nathan Scott948ecdb2006-09-28 11:03:13 +1000272 for (i = 0; i < bp->b_page_count; i++) {
273 struct page *page = bp->b_pages[i];
274
Dave Chinner0e6e8472011-03-26 09:16:45 +1100275 __free_page(page);
Nathan Scott948ecdb2006-09-28 11:03:13 +1000276 }
Dave Chinner0e6e8472011-03-26 09:16:45 +1100277 } else if (bp->b_flags & _XBF_KMEM)
278 kmem_free(bp->b_addr);
Dave Chinner3fc98b12009-12-14 23:11:57 +0000279 _xfs_buf_free_pages(bp);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000280 kmem_zone_free(xfs_buf_zone, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
283/*
Dave Chinner0e6e8472011-03-26 09:16:45 +1100284 * Allocates all the pages for buffer in question and builds it's page list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 */
286STATIC int
Dave Chinner0e6e8472011-03-26 09:16:45 +1100287xfs_buf_allocate_memory(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 xfs_buf_t *bp,
289 uint flags)
290{
Nathan Scottce8e9222006-01-11 15:39:08 +1100291 size_t size = bp->b_count_desired;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100293 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 unsigned short page_count, i;
Nathan Scott204ab252006-01-11 20:50:22 +1100295 xfs_off_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 int error;
297
Dave Chinner0e6e8472011-03-26 09:16:45 +1100298 /*
299 * for buffers that are contained within a single page, just allocate
300 * the memory from the heap - there's no need for the complexity of
301 * page arrays to keep allocation down to order 0.
302 */
303 if (bp->b_buffer_length < PAGE_SIZE) {
304 bp->b_addr = kmem_alloc(bp->b_buffer_length, xb_to_km(flags));
305 if (!bp->b_addr) {
306 /* low memory - use alloc_page loop instead */
307 goto use_alloc_page;
308 }
309
310 if (((unsigned long)(bp->b_addr + bp->b_buffer_length - 1) &
311 PAGE_MASK) !=
312 ((unsigned long)bp->b_addr & PAGE_MASK)) {
313 /* b_addr spans two pages - use alloc_page instead */
314 kmem_free(bp->b_addr);
315 bp->b_addr = NULL;
316 goto use_alloc_page;
317 }
318 bp->b_offset = offset_in_page(bp->b_addr);
319 bp->b_pages = bp->b_page_array;
320 bp->b_pages[0] = virt_to_page(bp->b_addr);
321 bp->b_page_count = 1;
322 bp->b_flags |= XBF_MAPPED | _XBF_KMEM;
323 return 0;
324 }
325
326use_alloc_page:
Nathan Scottce8e9222006-01-11 15:39:08 +1100327 end = bp->b_file_offset + bp->b_buffer_length;
328 page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset);
Nathan Scottce8e9222006-01-11 15:39:08 +1100329 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (unlikely(error))
331 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Nathan Scottce8e9222006-01-11 15:39:08 +1100333 offset = bp->b_offset;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100334 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Nathan Scottce8e9222006-01-11 15:39:08 +1100336 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 struct page *page;
338 uint retries = 0;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100339retry:
340 page = alloc_page(gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100342 if (flags & XBF_READ_AHEAD) {
343 bp->b_page_count = i;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100344 error = ENOMEM;
345 goto out_free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
347
348 /*
349 * This could deadlock.
350 *
351 * But until all the XFS lowlevel code is revamped to
352 * handle buffer allocation failures we can't do much.
353 */
354 if (!(++retries % 100))
Dave Chinner4f107002011-03-07 10:00:35 +1100355 xfs_err(NULL,
356 "possible memory allocation deadlock in %s (mode:0x%x)",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000357 __func__, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Nathan Scottce8e9222006-01-11 15:39:08 +1100359 XFS_STATS_INC(xb_page_retries);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200360 congestion_wait(BLK_RW_ASYNC, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 goto retry;
362 }
363
Nathan Scottce8e9222006-01-11 15:39:08 +1100364 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Dave Chinner0e6e8472011-03-26 09:16:45 +1100366 nbytes = min_t(size_t, size, PAGE_SIZE - offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 size -= nbytes;
Nathan Scottce8e9222006-01-11 15:39:08 +1100368 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 offset = 0;
370 }
Dave Chinner0e6e8472011-03-26 09:16:45 +1100371 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Dave Chinner0e6e8472011-03-26 09:16:45 +1100373out_free_pages:
374 for (i = 0; i < bp->b_page_count; i++)
375 __free_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return error;
377}
378
379/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300380 * Map buffer into kernel address-space if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 */
382STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100383_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 xfs_buf_t *bp,
385 uint flags)
386{
Dave Chinner0e6e8472011-03-26 09:16:45 +1100387 ASSERT(bp->b_flags & _XBF_PAGES);
Nathan Scottce8e9222006-01-11 15:39:08 +1100388 if (bp->b_page_count == 1) {
Dave Chinner0e6e8472011-03-26 09:16:45 +1100389 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100390 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
391 bp->b_flags |= XBF_MAPPED;
392 } else if (flags & XBF_MAPPED) {
Dave Chinnera19fb382011-03-26 09:13:42 +1100393 int retried = 0;
394
395 do {
396 bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
397 -1, PAGE_KERNEL);
398 if (bp->b_addr)
399 break;
400 vm_unmap_aliases();
401 } while (retried++ <= 1);
402
403 if (!bp->b_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100405 bp->b_addr += bp->b_offset;
406 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408
409 return 0;
410}
411
412/*
413 * Finding and Reading Buffers
414 */
415
416/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100417 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * a given range of an inode. The buffer is returned
Chandra Seetharamaneabbaf12011-09-08 20:18:50 +0000419 * locked. No I/O is implied by this call.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 */
421xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100422_xfs_buf_find(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 xfs_buftarg_t *btp, /* block device target */
Nathan Scott204ab252006-01-11 20:50:22 +1100424 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100426 xfs_buf_flags_t flags,
427 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Nathan Scott204ab252006-01-11 20:50:22 +1100429 xfs_off_t range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 size_t range_length;
Dave Chinner74f75a02010-09-24 19:59:04 +1000431 struct xfs_perag *pag;
432 struct rb_node **rbp;
433 struct rb_node *parent;
434 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 range_base = (ioff << BBSHIFT);
437 range_length = (isize << BBSHIFT);
438
439 /* Check for IOs smaller than the sector size / not sector aligned */
Nathan Scottce8e9222006-01-11 15:39:08 +1100440 ASSERT(!(range_length < (1 << btp->bt_sshift)));
Nathan Scott204ab252006-01-11 20:50:22 +1100441 ASSERT(!(range_base & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Dave Chinner74f75a02010-09-24 19:59:04 +1000443 /* get tree root */
444 pag = xfs_perag_get(btp->bt_mount,
445 xfs_daddr_to_agno(btp->bt_mount, ioff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Dave Chinner74f75a02010-09-24 19:59:04 +1000447 /* walk tree */
448 spin_lock(&pag->pag_buf_lock);
449 rbp = &pag->pag_buf_tree.rb_node;
450 parent = NULL;
451 bp = NULL;
452 while (*rbp) {
453 parent = *rbp;
454 bp = rb_entry(parent, struct xfs_buf, b_rbnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Dave Chinner74f75a02010-09-24 19:59:04 +1000456 if (range_base < bp->b_file_offset)
457 rbp = &(*rbp)->rb_left;
458 else if (range_base > bp->b_file_offset)
459 rbp = &(*rbp)->rb_right;
460 else {
461 /*
462 * found a block offset match. If the range doesn't
463 * match, the only way this is allowed is if the buffer
464 * in the cache is stale and the transaction that made
465 * it stale has not yet committed. i.e. we are
466 * reallocating a busy extent. Skip this buffer and
467 * continue searching to the right for an exact match.
468 */
469 if (bp->b_buffer_length != range_length) {
470 ASSERT(bp->b_flags & XBF_STALE);
471 rbp = &(*rbp)->rb_right;
472 continue;
473 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100474 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 goto found;
476 }
477 }
478
479 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100480 if (new_bp) {
Dave Chinner74f75a02010-09-24 19:59:04 +1000481 rb_link_node(&new_bp->b_rbnode, parent, rbp);
482 rb_insert_color(&new_bp->b_rbnode, &pag->pag_buf_tree);
483 /* the buffer keeps the perag reference until it is freed */
484 new_bp->b_pag = pag;
485 spin_unlock(&pag->pag_buf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100487 XFS_STATS_INC(xb_miss_locked);
Dave Chinner74f75a02010-09-24 19:59:04 +1000488 spin_unlock(&pag->pag_buf_lock);
489 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100491 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493found:
Dave Chinner74f75a02010-09-24 19:59:04 +1000494 spin_unlock(&pag->pag_buf_lock);
495 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200497 if (!xfs_buf_trylock(bp)) {
498 if (flags & XBF_TRYLOCK) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100499 xfs_buf_rele(bp);
500 XFS_STATS_INC(xb_busy_locked);
501 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200503 xfs_buf_lock(bp);
504 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
Dave Chinner0e6e8472011-03-26 09:16:45 +1100507 /*
508 * if the buffer is stale, clear all the external state associated with
509 * it. We need to keep flags such as how we allocated the buffer memory
510 * intact here.
511 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100512 if (bp->b_flags & XBF_STALE) {
513 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
Dave Chinner0e6e8472011-03-26 09:16:45 +1100514 bp->b_flags &= XBF_MAPPED | _XBF_KMEM | _XBF_PAGES;
David Chinner2f926582005-09-05 08:33:35 +1000515 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000516
517 trace_xfs_buf_find(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100518 XFS_STATS_INC(xb_get_locked);
519 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
522/*
Dave Chinner38158322011-09-30 04:45:02 +0000523 * Assembles a buffer covering the specified range. The code is optimised for
524 * cache hits, as metadata intensive workloads will see 3 orders of magnitude
525 * more hits than misses.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 */
Dave Chinner38158322011-09-30 04:45:02 +0000527struct xfs_buf *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000528xfs_buf_get(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 xfs_buftarg_t *target,/* target for buffer */
Nathan Scott204ab252006-01-11 20:50:22 +1100530 xfs_off_t ioff, /* starting offset of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 size_t isize, /* length of range */
Nathan Scottce8e9222006-01-11 15:39:08 +1100532 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Dave Chinner38158322011-09-30 04:45:02 +0000534 struct xfs_buf *bp;
535 struct xfs_buf *new_bp;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100536 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Dave Chinner38158322011-09-30 04:45:02 +0000538 bp = _xfs_buf_find(target, ioff, isize, flags, NULL);
539 if (likely(bp))
540 goto found;
541
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000542 new_bp = xfs_buf_alloc(target, ioff << BBSHIFT, isize << BBSHIFT,
543 flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100544 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return NULL;
546
Nathan Scottce8e9222006-01-11 15:39:08 +1100547 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
Dave Chinner38158322011-09-30 04:45:02 +0000548 if (!bp) {
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000549 kmem_zone_free(xfs_buf_zone, new_bp);
Dave Chinner38158322011-09-30 04:45:02 +0000550 return NULL;
551 }
552
Nathan Scottce8e9222006-01-11 15:39:08 +1100553 if (bp == new_bp) {
Dave Chinner0e6e8472011-03-26 09:16:45 +1100554 error = xfs_buf_allocate_memory(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 if (error)
556 goto no_buffer;
Dave Chinner38158322011-09-30 04:45:02 +0000557 } else
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000558 kmem_zone_free(xfs_buf_zone, new_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Dave Chinner38158322011-09-30 04:45:02 +0000560 /*
561 * Now we have a workable buffer, fill in the block number so
562 * that we can do IO on it.
563 */
564 bp->b_bn = ioff;
565 bp->b_count_desired = bp->b_buffer_length;
566
567found:
Nathan Scottce8e9222006-01-11 15:39:08 +1100568 if (!(bp->b_flags & XBF_MAPPED)) {
569 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100571 xfs_warn(target->bt_mount,
572 "%s: failed to map pages\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 goto no_buffer;
574 }
575 }
576
Nathan Scottce8e9222006-01-11 15:39:08 +1100577 XFS_STATS_INC(xb_get);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000578 trace_xfs_buf_get(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100579 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Dave Chinner38158322011-09-30 04:45:02 +0000581no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100582 if (flags & (XBF_LOCK | XBF_TRYLOCK))
583 xfs_buf_unlock(bp);
584 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return NULL;
586}
587
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100588STATIC int
589_xfs_buf_read(
590 xfs_buf_t *bp,
591 xfs_buf_flags_t flags)
592{
593 int status;
594
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100595 ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE)));
596 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
597
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +0200598 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | XBF_READ_AHEAD);
599 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | XBF_READ_AHEAD);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100600
601 status = xfs_buf_iorequest(bp);
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +0000602 if (status || bp->b_error || (flags & XBF_ASYNC))
Dave Chinnerec53d1d2010-07-20 17:52:59 +1000603 return status;
604 return xfs_buf_iowait(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100605}
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000608xfs_buf_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100610 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100612 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Nathan Scottce8e9222006-01-11 15:39:08 +1100614 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Nathan Scottce8e9222006-01-11 15:39:08 +1100616 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000618 bp = xfs_buf_get(target, ioff, isize, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100619 if (bp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000620 trace_xfs_buf_read(bp, flags, _RET_IP_);
621
Nathan Scottce8e9222006-01-11 15:39:08 +1100622 if (!XFS_BUF_ISDONE(bp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100623 XFS_STATS_INC(xb_get_read);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100624 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100625 } else if (flags & XBF_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 /*
627 * Read ahead call which is already satisfied,
628 * drop the buffer
629 */
630 goto no_buffer;
631 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100633 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635 }
636
Nathan Scottce8e9222006-01-11 15:39:08 +1100637 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100640 if (flags & (XBF_LOCK | XBF_TRYLOCK))
641 xfs_buf_unlock(bp);
642 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return NULL;
644}
645
646/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100647 * If we are not low on memory then do the readahead in a deadlock
648 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 */
650void
Nathan Scottce8e9222006-01-11 15:39:08 +1100651xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100653 xfs_off_t ioff,
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000654 size_t isize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Dave Chinner0e6e8472011-03-26 09:16:45 +1100656 if (bdi_read_congested(target->bt_bdi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return;
658
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000659 xfs_buf_read(target, ioff, isize,
660 XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD|XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
Dave Chinner5adc94c2010-09-24 21:58:31 +1000663/*
664 * Read an uncached buffer from disk. Allocates and returns a locked
665 * buffer containing the disk contents or nothing.
666 */
667struct xfs_buf *
668xfs_buf_read_uncached(
669 struct xfs_mount *mp,
670 struct xfs_buftarg *target,
671 xfs_daddr_t daddr,
672 size_t length,
673 int flags)
674{
675 xfs_buf_t *bp;
676 int error;
677
678 bp = xfs_buf_get_uncached(target, length, flags);
679 if (!bp)
680 return NULL;
681
682 /* set up the buffer for a read IO */
Dave Chinner5adc94c2010-09-24 21:58:31 +1000683 XFS_BUF_SET_ADDR(bp, daddr);
684 XFS_BUF_READ(bp);
Dave Chinner5adc94c2010-09-24 21:58:31 +1000685
686 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000687 error = xfs_buf_iowait(bp);
Dave Chinner5adc94c2010-09-24 21:58:31 +1000688 if (error || bp->b_error) {
689 xfs_buf_relse(bp);
690 return NULL;
691 }
692 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
Dave Chinner44396472011-04-21 09:34:27 +0000695/*
696 * Return a buffer allocated as an empty buffer and associated to external
697 * memory via xfs_buf_associate_memory() back to it's empty state.
698 */
699void
700xfs_buf_set_empty(
701 struct xfs_buf *bp,
702 size_t len)
703{
704 if (bp->b_pages)
705 _xfs_buf_free_pages(bp);
706
707 bp->b_pages = NULL;
708 bp->b_page_count = 0;
709 bp->b_addr = NULL;
710 bp->b_file_offset = 0;
711 bp->b_buffer_length = bp->b_count_desired = len;
712 bp->b_bn = XFS_BUF_DADDR_NULL;
713 bp->b_flags &= ~XBF_MAPPED;
714}
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716static inline struct page *
717mem_to_page(
718 void *addr)
719{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800720 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return virt_to_page(addr);
722 } else {
723 return vmalloc_to_page(addr);
724 }
725}
726
727int
Nathan Scottce8e9222006-01-11 15:39:08 +1100728xfs_buf_associate_memory(
729 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 void *mem,
731 size_t len)
732{
733 int rval;
734 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100735 unsigned long pageaddr;
736 unsigned long offset;
737 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 int page_count;
739
Dave Chinner0e6e8472011-03-26 09:16:45 +1100740 pageaddr = (unsigned long)mem & PAGE_MASK;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100741 offset = (unsigned long)mem - pageaddr;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100742 buflen = PAGE_ALIGN(len + offset);
743 page_count = buflen >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100746 if (bp->b_pages)
747 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Nathan Scottce8e9222006-01-11 15:39:08 +1100749 bp->b_pages = NULL;
750 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Christoph Hellwig36fae172009-07-18 18:14:58 -0400752 rval = _xfs_buf_get_pages(bp, page_count, XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (rval)
754 return rval;
755
Nathan Scottce8e9222006-01-11 15:39:08 +1100756 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100758 for (i = 0; i < bp->b_page_count; i++) {
759 bp->b_pages[i] = mem_to_page((void *)pageaddr);
Dave Chinner0e6e8472011-03-26 09:16:45 +1100760 pageaddr += PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100763 bp->b_count_desired = len;
764 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100765 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 return 0;
768}
769
770xfs_buf_t *
Dave Chinner686865f2010-09-24 20:07:47 +1000771xfs_buf_get_uncached(
772 struct xfs_buftarg *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 size_t len,
Dave Chinner686865f2010-09-24 20:07:47 +1000774 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000776 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
777 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000780 bp = xfs_buf_alloc(target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (unlikely(bp == NULL))
782 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000784 error = _xfs_buf_get_pages(bp, page_count, 0);
785 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 goto fail_free_buf;
787
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000788 for (i = 0; i < page_count; i++) {
Dave Chinner686865f2010-09-24 20:07:47 +1000789 bp->b_pages[i] = alloc_page(xb_to_gfp(flags));
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000790 if (!bp->b_pages[i])
791 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000793 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000795 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
796 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100797 xfs_warn(target->bt_mount,
798 "%s: failed to map pages\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Dave Chinner686865f2010-09-24 20:07:47 +1000802 trace_xfs_buf_get_uncached(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000806 while (--i >= 0)
807 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000808 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 fail_free_buf:
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000810 kmem_zone_free(xfs_buf_zone, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 fail:
812 return NULL;
813}
814
815/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 * Increment reference count on buffer, to hold the buffer concurrently
817 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 * Must hold the buffer already to call this function.
819 */
820void
Nathan Scottce8e9222006-01-11 15:39:08 +1100821xfs_buf_hold(
822 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000824 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100825 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
828/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100829 * Releases a hold on the specified buffer. If the
830 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 */
832void
Nathan Scottce8e9222006-01-11 15:39:08 +1100833xfs_buf_rele(
834 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Dave Chinner74f75a02010-09-24 19:59:04 +1000836 struct xfs_perag *pag = bp->b_pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000838 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Dave Chinner74f75a02010-09-24 19:59:04 +1000840 if (!pag) {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100841 ASSERT(list_empty(&bp->b_lru));
Dave Chinner74f75a02010-09-24 19:59:04 +1000842 ASSERT(RB_EMPTY_NODE(&bp->b_rbnode));
Nathan Scottfad3aa12006-02-01 12:14:52 +1100843 if (atomic_dec_and_test(&bp->b_hold))
844 xfs_buf_free(bp);
845 return;
846 }
847
Dave Chinner74f75a02010-09-24 19:59:04 +1000848 ASSERT(!RB_EMPTY_NODE(&bp->b_rbnode));
Dave Chinner430cbeb2010-12-02 16:30:55 +1100849
Lachlan McIlroy37906892008-08-13 15:42:10 +1000850 ASSERT(atomic_read(&bp->b_hold) > 0);
Dave Chinner74f75a02010-09-24 19:59:04 +1000851 if (atomic_dec_and_lock(&bp->b_hold, &pag->pag_buf_lock)) {
Christoph Hellwigbfc60172011-01-07 13:02:23 +0000852 if (!(bp->b_flags & XBF_STALE) &&
Dave Chinner430cbeb2010-12-02 16:30:55 +1100853 atomic_read(&bp->b_lru_ref)) {
854 xfs_buf_lru_add(bp);
855 spin_unlock(&pag->pag_buf_lock);
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100856 } else {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100857 xfs_buf_lru_del(bp);
Nathan Scottce8e9222006-01-11 15:39:08 +1100858 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
Dave Chinner74f75a02010-09-24 19:59:04 +1000859 rb_erase(&bp->b_rbnode, &pag->pag_buf_tree);
860 spin_unlock(&pag->pag_buf_lock);
861 xfs_perag_put(pag);
Nathan Scottce8e9222006-01-11 15:39:08 +1100862 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
864 }
865}
866
867
868/*
Dave Chinner0e6e8472011-03-26 09:16:45 +1100869 * Lock a buffer object, if it is not already locked.
Dave Chinner90810b92010-11-30 15:16:16 +1100870 *
871 * If we come across a stale, pinned, locked buffer, we know that we are
872 * being asked to lock a buffer that has been reallocated. Because it is
873 * pinned, we know that the log has not been pushed to disk and hence it
874 * will still be locked. Rather than continuing to have trylock attempts
875 * fail until someone else pushes the log, push it ourselves before
876 * returning. This means that the xfsaild will not get stuck trying
877 * to push on stale inode buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 */
879int
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200880xfs_buf_trylock(
881 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
883 int locked;
884
Nathan Scottce8e9222006-01-11 15:39:08 +1100885 locked = down_trylock(&bp->b_sema) == 0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000886 if (locked)
Nathan Scottce8e9222006-01-11 15:39:08 +1100887 XB_SET_OWNER(bp);
Dave Chinner90810b92010-11-30 15:16:16 +1100888 else if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
889 xfs_log_force(bp->b_target->bt_mount, 0);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000890
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200891 trace_xfs_buf_trylock(bp, _RET_IP_);
892 return locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895/*
Dave Chinner0e6e8472011-03-26 09:16:45 +1100896 * Lock a buffer object.
Dave Chinnered3b4d62010-05-21 12:07:08 +1000897 *
898 * If we come across a stale, pinned, locked buffer, we know that we
899 * are being asked to lock a buffer that has been reallocated. Because
900 * it is pinned, we know that the log has not been pushed to disk and
901 * hence it will still be locked. Rather than sleeping until someone
902 * else pushes the log, push it ourselves before trying to get the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100904void
905xfs_buf_lock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200906 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000908 trace_xfs_buf_lock(bp, _RET_IP_);
909
Dave Chinnered3b4d62010-05-21 12:07:08 +1000910 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
Dave Chinnerebad8612010-09-22 10:47:20 +1000911 xfs_log_force(bp->b_target->bt_mount, 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100912 down(&bp->b_sema);
913 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000914
915 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
918/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100919 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000920 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100921 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000922 * take a reference for the delwri queue because the unlocker is going to
923 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 */
925void
Nathan Scottce8e9222006-01-11 15:39:08 +1100926xfs_buf_unlock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200927 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Nathan Scottce8e9222006-01-11 15:39:08 +1100929 XB_CLEAR_OWNER(bp);
930 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000931
932 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
Nathan Scottce8e9222006-01-11 15:39:08 +1100935STATIC void
936xfs_buf_wait_unpin(
937 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
939 DECLARE_WAITQUEUE (wait, current);
940
Nathan Scottce8e9222006-01-11 15:39:08 +1100941 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 return;
943
Nathan Scottce8e9222006-01-11 15:39:08 +1100944 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 for (;;) {
946 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100947 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 break;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100949 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100951 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 set_current_state(TASK_RUNNING);
953}
954
955/*
956 * Buffer Utility Routines
957 */
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100960xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +0000961 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
David Howellsc4028952006-11-22 14:57:56 +0000963 xfs_buf_t *bp =
964 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Christoph Hellwig80f6c292010-08-18 05:29:11 -0400966 if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +1100967 (*(bp->b_iodone))(bp);
968 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 xfs_buf_relse(bp);
970}
971
972void
Nathan Scottce8e9222006-01-11 15:39:08 +1100973xfs_buf_ioend(
974 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 int schedule)
976{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000977 trace_xfs_buf_iodone(bp, _RET_IP_);
978
Lachlan McIlroy77be55a2007-11-23 16:31:00 +1100979 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +1100980 if (bp->b_error == 0)
981 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Nathan Scottce8e9222006-01-11 15:39:08 +1100983 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +0000985 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +1100986 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 } else {
David Howellsc4028952006-11-22 14:57:56 +0000988 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
990 } else {
David Chinnerb4dd3302008-08-13 16:36:11 +1000991 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
993}
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995void
Nathan Scottce8e9222006-01-11 15:39:08 +1100996xfs_buf_ioerror(
997 xfs_buf_t *bp,
998 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
1000 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001001 bp->b_error = (unsigned short)error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001002 trace_xfs_buf_ioerror(bp, error, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
Christoph Hellwig901796a2011-10-10 16:52:49 +00001005void
1006xfs_buf_ioerror_alert(
1007 struct xfs_buf *bp,
1008 const char *func)
1009{
1010 xfs_alert(bp->b_target->bt_mount,
1011"metadata I/O error: block 0x%llx (\"%s\") error %d buf count %zd",
1012 (__uint64_t)XFS_BUF_ADDR(bp), func,
1013 bp->b_error, XFS_BUF_COUNT(bp));
1014}
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016int
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001017xfs_bwrite(
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001018 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Christoph Hellwig8c383662010-03-12 10:59:40 +00001020 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001022 bp->b_flags |= XBF_WRITE;
Christoph Hellwig8c383662010-03-12 10:59:40 +00001023 bp->b_flags &= ~(XBF_ASYNC | XBF_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001025 xfs_buf_delwri_dequeue(bp);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001026 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Christoph Hellwig8c383662010-03-12 10:59:40 +00001028 error = xfs_buf_iowait(bp);
Christoph Hellwigc2b006c2011-08-23 08:28:07 +00001029 if (error) {
1030 xfs_force_shutdown(bp->b_target->bt_mount,
1031 SHUTDOWN_META_IO_ERROR);
1032 }
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001033 return error;
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001034}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Christoph Hellwig4e234712010-01-13 22:17:56 +00001036/*
1037 * Called when we want to stop a buffer from getting written or read.
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001038 * We attach the EIO error, muck with its flags, and call xfs_buf_ioend
Christoph Hellwig4e234712010-01-13 22:17:56 +00001039 * so that the proper iodone callbacks get called.
1040 */
1041STATIC int
1042xfs_bioerror(
1043 xfs_buf_t *bp)
1044{
1045#ifdef XFSERRORDEBUG
1046 ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
1047#endif
1048
1049 /*
1050 * No need to wait until the buffer is unpinned, we aren't flushing it.
1051 */
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00001052 xfs_buf_ioerror(bp, EIO);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001053
1054 /*
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001055 * We're calling xfs_buf_ioend, so delete XBF_DONE flag.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001056 */
1057 XFS_BUF_UNREAD(bp);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001058 XFS_BUF_UNDONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00001059 xfs_buf_stale(bp);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001060
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001061 xfs_buf_ioend(bp, 0);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001062
1063 return EIO;
1064}
1065
1066/*
1067 * Same as xfs_bioerror, except that we are releasing the buffer
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001068 * here ourselves, and avoiding the xfs_buf_ioend call.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001069 * This is meant for userdata errors; metadata bufs come with
1070 * iodone functions attached, so that we can track down errors.
1071 */
1072STATIC int
1073xfs_bioerror_relse(
1074 struct xfs_buf *bp)
1075{
Chandra Seetharamaned432332011-07-22 23:39:39 +00001076 int64_t fl = bp->b_flags;
Christoph Hellwig4e234712010-01-13 22:17:56 +00001077 /*
1078 * No need to wait until the buffer is unpinned.
1079 * We aren't flushing it.
1080 *
1081 * chunkhold expects B_DONE to be set, whether
1082 * we actually finish the I/O or not. We don't want to
1083 * change that interface.
1084 */
1085 XFS_BUF_UNREAD(bp);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001086 XFS_BUF_DONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00001087 xfs_buf_stale(bp);
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02001088 bp->b_iodone = NULL;
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001089 if (!(fl & XBF_ASYNC)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001090 /*
1091 * Mark b_error and B_ERROR _both_.
1092 * Lot's of chunkcache code assumes that.
1093 * There's no reason to mark error for
1094 * ASYNC buffers.
1095 */
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00001096 xfs_buf_ioerror(bp, EIO);
Christoph Hellwig5fde0322011-10-10 16:52:44 +00001097 complete(&bp->b_iowait);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001098 } else {
1099 xfs_buf_relse(bp);
1100 }
1101
1102 return EIO;
1103}
1104
1105
1106/*
1107 * All xfs metadata buffers except log state machine buffers
1108 * get this attached as their b_bdstrat callback function.
1109 * This is so that we can catch a buffer
1110 * after prematurely unpinning it to forcibly shutdown the filesystem.
1111 */
1112int
1113xfs_bdstrat_cb(
1114 struct xfs_buf *bp)
1115{
Dave Chinnerebad8612010-09-22 10:47:20 +10001116 if (XFS_FORCED_SHUTDOWN(bp->b_target->bt_mount)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001117 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1118 /*
1119 * Metadata write that didn't get logged but
1120 * written delayed anyway. These aren't associated
1121 * with a transaction, and can be ignored.
1122 */
1123 if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
1124 return xfs_bioerror_relse(bp);
1125 else
1126 return xfs_bioerror(bp);
1127 }
1128
1129 xfs_buf_iorequest(bp);
1130 return 0;
1131}
1132
1133/*
1134 * Wrapper around bdstrat so that we can stop data from going to disk in case
1135 * we are shutting down the filesystem. Typically user data goes thru this
1136 * path; one of the exceptions is the superblock.
1137 */
1138void
1139xfsbdstrat(
1140 struct xfs_mount *mp,
1141 struct xfs_buf *bp)
1142{
1143 if (XFS_FORCED_SHUTDOWN(mp)) {
1144 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1145 xfs_bioerror_relse(bp);
1146 return;
1147 }
1148
1149 xfs_buf_iorequest(bp);
1150}
1151
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001152STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001153_xfs_buf_ioend(
1154 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 int schedule)
1156{
Dave Chinner0e6e8472011-03-26 09:16:45 +11001157 if (atomic_dec_and_test(&bp->b_io_remaining) == 1)
Nathan Scottce8e9222006-01-11 15:39:08 +11001158 xfs_buf_ioend(bp, schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
Al Viro782e3b32007-10-12 07:17:47 +01001161STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001162xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 int error)
1165{
Nathan Scottce8e9222006-01-11 15:39:08 +11001166 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Dave Chinner8c72c622012-11-12 22:09:46 +11001168 /*
1169 * don't overwrite existing errors - otherwise we can lose errors on
1170 * buffers that require multiple bios to complete.
1171 */
1172 if (!bp->b_error)
1173 xfs_buf_ioerror(bp, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Dave Chinner8c72c622012-11-12 22:09:46 +11001175 if (!bp->b_error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
James Bottomley73c77e22010-01-25 11:42:24 -06001176 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1177
Nathan Scottce8e9222006-01-11 15:39:08 +11001178 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
1182STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001183_xfs_buf_ioapply(
1184 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Christoph Hellwiga9759f22007-12-07 14:07:08 +11001186 int rw, map_i, total_nr_pages, nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 struct bio *bio;
Nathan Scottce8e9222006-01-11 15:39:08 +11001188 int offset = bp->b_offset;
1189 int size = bp->b_count_desired;
1190 sector_t sector = bp->b_bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Nathan Scottce8e9222006-01-11 15:39:08 +11001192 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 map_i = 0;
1194
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +02001195 if (bp->b_flags & XBF_WRITE) {
1196 if (bp->b_flags & XBF_SYNCIO)
1197 rw = WRITE_SYNC;
1198 else
1199 rw = WRITE;
1200 if (bp->b_flags & XBF_FUA)
1201 rw |= REQ_FUA;
1202 if (bp->b_flags & XBF_FLUSH)
1203 rw |= REQ_FLUSH;
1204 } else if (bp->b_flags & XBF_READ_AHEAD) {
1205 rw = READA;
Nathan Scott51bdd702006-09-28 11:01:57 +10001206 } else {
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +02001207 rw = READ;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001208 }
1209
Christoph Hellwig34951f52011-07-26 15:06:44 +00001210 /* we only use the buffer cache for meta-data */
1211 rw |= REQ_META;
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001214 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1216 if (nr_pages > total_nr_pages)
1217 nr_pages = total_nr_pages;
1218
1219 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001220 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001222 bio->bi_end_io = xfs_buf_bio_end_io;
1223 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Dave Chinner0e6e8472011-03-26 09:16:45 +11001225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 for (; size && nr_pages; nr_pages--, map_i++) {
Dave Chinner0e6e8472011-03-26 09:16:45 +11001227 int rbytes, nbytes = PAGE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 if (nbytes > size)
1230 nbytes = size;
1231
Nathan Scottce8e9222006-01-11 15:39:08 +11001232 rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset);
1233 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 break;
1235
1236 offset = 0;
1237 sector += nbytes >> BBSHIFT;
1238 size -= nbytes;
1239 total_nr_pages--;
1240 }
1241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 if (likely(bio->bi_size)) {
James Bottomley73c77e22010-01-25 11:42:24 -06001243 if (xfs_buf_is_vmapped(bp)) {
1244 flush_kernel_vmap_range(bp->b_addr,
1245 xfs_buf_vmap_len(bp));
1246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 submit_bio(rw, bio);
1248 if (size)
1249 goto next_chunk;
1250 } else {
Dave Chinner8c72c622012-11-12 22:09:46 +11001251 /*
1252 * This is guaranteed not to be the last io reference count
1253 * because the caller (xfs_buf_iorequest) holds a count itself.
1254 */
1255 atomic_dec(&bp->b_io_remaining);
Nathan Scottce8e9222006-01-11 15:39:08 +11001256 xfs_buf_ioerror(bp, EIO);
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001257 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
1259}
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261int
Nathan Scottce8e9222006-01-11 15:39:08 +11001262xfs_buf_iorequest(
1263 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001265 trace_xfs_buf_iorequest(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Christoph Hellwig375ec692011-08-23 08:28:03 +00001267 ASSERT(!(bp->b_flags & XBF_DELWRI));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Christoph Hellwig375ec692011-08-23 08:28:03 +00001269 if (bp->b_flags & XBF_WRITE)
Nathan Scottce8e9222006-01-11 15:39:08 +11001270 xfs_buf_wait_unpin(bp);
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{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001294 trace_xfs_buf_iowait(bp, _RET_IP_);
1295
David Chinnerb4dd3302008-08-13 16:36:11 +10001296 wait_for_completion(&bp->b_iowait);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001297
1298 trace_xfs_buf_iowait_done(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +11001299 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)
Chandra Seetharaman62926042011-07-22 23:40:15 +00001310 return bp->b_addr + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Nathan Scottce8e9222006-01-11 15:39:08 +11001312 offset += bp->b_offset;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001313 page = bp->b_pages[offset >> PAGE_SHIFT];
1314 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_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 */
Dave Chinnerb9c48642010-01-20 10:47:39 +11001325 void *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,
Dave Chinner0e6e8472011-03-26 09:16:45 +11001336 PAGE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Dave Chinner0e6e8472011-03-26 09:16:45 +11001338 ASSERT(((csize + cpoff) <= PAGE_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
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/*
Dave Chinner430cbeb2010-12-02 16:30:55 +11001361 * Wait for any bufs with callbacks that have been submitted but have not yet
1362 * returned. These buffers will have an elevated hold count, so wait on those
1363 * while freeing all the buffers only held by the LRU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 */
1365void
1366xfs_wait_buftarg(
Dave Chinner74f75a02010-09-24 19:59:04 +10001367 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Dave Chinner430cbeb2010-12-02 16:30:55 +11001369 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Dave Chinner430cbeb2010-12-02 16:30:55 +11001371restart:
1372 spin_lock(&btp->bt_lru_lock);
1373 while (!list_empty(&btp->bt_lru)) {
1374 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1375 if (atomic_read(&bp->b_hold) > 1) {
1376 spin_unlock(&btp->bt_lru_lock);
Dave Chinner26af6552010-09-22 10:47:20 +10001377 delay(100);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001378 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001380 /*
Paul Bolle90802ed2011-12-05 13:00:34 +01001381 * clear the LRU reference count so the buffer doesn't get
Dave Chinner430cbeb2010-12-02 16:30:55 +11001382 * ignored in xfs_buf_rele().
1383 */
1384 atomic_set(&bp->b_lru_ref, 0);
1385 spin_unlock(&btp->bt_lru_lock);
1386 xfs_buf_rele(bp);
1387 spin_lock(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001389 spin_unlock(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
Dave Chinnerff57ab22010-11-30 17:27:57 +11001392int
1393xfs_buftarg_shrink(
1394 struct shrinker *shrink,
Ying Han1495f232011-05-24 17:12:27 -07001395 struct shrink_control *sc)
David Chinnera6867a62006-01-11 15:37:58 +11001396{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001397 struct xfs_buftarg *btp = container_of(shrink,
1398 struct xfs_buftarg, bt_shrinker);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001399 struct xfs_buf *bp;
Ying Han1495f232011-05-24 17:12:27 -07001400 int nr_to_scan = sc->nr_to_scan;
Dave Chinner430cbeb2010-12-02 16:30:55 +11001401 LIST_HEAD(dispose);
1402
1403 if (!nr_to_scan)
1404 return btp->bt_lru_nr;
1405
1406 spin_lock(&btp->bt_lru_lock);
1407 while (!list_empty(&btp->bt_lru)) {
1408 if (nr_to_scan-- <= 0)
1409 break;
1410
1411 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1412
1413 /*
1414 * Decrement the b_lru_ref count unless the value is already
1415 * zero. If the value is already zero, we need to reclaim the
1416 * buffer, otherwise it gets another trip through the LRU.
1417 */
1418 if (!atomic_add_unless(&bp->b_lru_ref, -1, 0)) {
1419 list_move_tail(&bp->b_lru, &btp->bt_lru);
1420 continue;
1421 }
1422
1423 /*
1424 * remove the buffer from the LRU now to avoid needing another
1425 * lock round trip inside xfs_buf_rele().
1426 */
1427 list_move(&bp->b_lru, &dispose);
1428 btp->bt_lru_nr--;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001429 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001430 spin_unlock(&btp->bt_lru_lock);
1431
1432 while (!list_empty(&dispose)) {
1433 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1434 list_del_init(&bp->b_lru);
1435 xfs_buf_rele(bp);
1436 }
1437
1438 return btp->bt_lru_nr;
David Chinnera6867a62006-01-11 15:37:58 +11001439}
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441void
1442xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001443 struct xfs_mount *mp,
1444 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001446 unregister_shrinker(&btp->bt_shrinker);
1447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 xfs_flush_buftarg(btp, 1);
Christoph Hellwigb7963132009-03-03 14:48:37 -05001449 if (mp->m_flags & XFS_MOUNT_BARRIER)
1450 xfs_blkdev_issue_flush(btp);
David Chinnera6867a62006-01-11 15:37:58 +11001451
David Chinnera6867a62006-01-11 15:37:58 +11001452 kthread_stop(btp->bt_task);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001453 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454}
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456STATIC int
1457xfs_setsize_buftarg_flags(
1458 xfs_buftarg_t *btp,
1459 unsigned int blocksize,
1460 unsigned int sectorsize,
1461 int verbose)
1462{
Nathan Scottce8e9222006-01-11 15:39:08 +11001463 btp->bt_bsize = blocksize;
1464 btp->bt_sshift = ffs(sectorsize) - 1;
1465 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Nathan Scottce8e9222006-01-11 15:39:08 +11001467 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Christoph Hellwig02b102d2011-10-10 16:52:51 +00001468 char name[BDEVNAME_SIZE];
1469
1470 bdevname(btp->bt_bdev, name);
1471
Dave Chinner4f107002011-03-07 10:00:35 +11001472 xfs_warn(btp->bt_mount,
1473 "Cannot set_blocksize to %u on device %s\n",
Christoph Hellwig02b102d2011-10-10 16:52:51 +00001474 sectorsize, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return EINVAL;
1476 }
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return 0;
1479}
1480
1481/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001482 * When allocating the initial buffer target we have not yet
1483 * read in the superblock, so don't know what sized sectors
1484 * are being used is at this early stage. Play safe.
1485 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486STATIC int
1487xfs_setsize_buftarg_early(
1488 xfs_buftarg_t *btp,
1489 struct block_device *bdev)
1490{
1491 return xfs_setsize_buftarg_flags(btp,
Dave Chinner0e6e8472011-03-26 09:16:45 +11001492 PAGE_SIZE, bdev_logical_block_size(bdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494
1495int
1496xfs_setsize_buftarg(
1497 xfs_buftarg_t *btp,
1498 unsigned int blocksize,
1499 unsigned int sectorsize)
1500{
1501 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1502}
1503
1504STATIC int
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001505xfs_alloc_delwri_queue(
Jan Engelhardte2a07812010-03-23 09:52:55 +11001506 xfs_buftarg_t *btp,
1507 const char *fsname)
David Chinnera6867a62006-01-11 15:37:58 +11001508{
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001509 INIT_LIST_HEAD(&btp->bt_delwri_queue);
1510 spin_lock_init(&btp->bt_delwri_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001511 btp->bt_flags = 0;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001512 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd/%s", fsname);
Dave Chinnerff57ab22010-11-30 17:27:57 +11001513 if (IS_ERR(btp->bt_task))
1514 return PTR_ERR(btp->bt_task);
1515 return 0;
David Chinnera6867a62006-01-11 15:37:58 +11001516}
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518xfs_buftarg_t *
1519xfs_alloc_buftarg(
Dave Chinnerebad8612010-09-22 10:47:20 +10001520 struct xfs_mount *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 struct block_device *bdev,
Jan Engelhardte2a07812010-03-23 09:52:55 +11001522 int external,
1523 const char *fsname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
1525 xfs_buftarg_t *btp;
1526
1527 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1528
Dave Chinnerebad8612010-09-22 10:47:20 +10001529 btp->bt_mount = mp;
Nathan Scottce8e9222006-01-11 15:39:08 +11001530 btp->bt_dev = bdev->bd_dev;
1531 btp->bt_bdev = bdev;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001532 btp->bt_bdi = blk_get_backing_dev_info(bdev);
1533 if (!btp->bt_bdi)
1534 goto error;
1535
Dave Chinner430cbeb2010-12-02 16:30:55 +11001536 INIT_LIST_HEAD(&btp->bt_lru);
1537 spin_lock_init(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (xfs_setsize_buftarg_early(btp, bdev))
1539 goto error;
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001540 if (xfs_alloc_delwri_queue(btp, fsname))
David Chinnera6867a62006-01-11 15:37:58 +11001541 goto error;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001542 btp->bt_shrinker.shrink = xfs_buftarg_shrink;
1543 btp->bt_shrinker.seeks = DEFAULT_SEEKS;
1544 register_shrinker(&btp->bt_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 return btp;
1546
1547error:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001548 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return NULL;
1550}
1551
1552
1553/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001554 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 */
Christoph Hellwig61551f12011-08-23 08:28:06 +00001556void
Nathan Scottce8e9222006-01-11 15:39:08 +11001557xfs_buf_delwri_queue(
Christoph Hellwig527cfdf2011-08-23 08:28:04 +00001558 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559{
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001560 struct xfs_buftarg *btp = bp->b_target;
David Chinnera6867a62006-01-11 15:37:58 +11001561
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001562 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1563
Christoph Hellwig5a8ee6b2011-08-23 08:28:05 +00001564 ASSERT(!(bp->b_flags & XBF_READ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001566 spin_lock(&btp->bt_delwri_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001567 if (!list_empty(&bp->b_list)) {
Christoph Hellwig5a8ee6b2011-08-23 08:28:05 +00001568 /* if already in the queue, move it to the tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001569 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001570 list_move_tail(&bp->b_list, &btp->bt_delwri_queue);
Christoph Hellwig5a8ee6b2011-08-23 08:28:05 +00001571 } else {
Dave Chinnerc9c12972010-01-11 11:49:59 +00001572 /* start xfsbufd as it is about to have something to do */
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001573 if (list_empty(&btp->bt_delwri_queue))
Christoph Hellwig5a8ee6b2011-08-23 08:28:05 +00001574 wake_up_process(bp->b_target->bt_task);
Dave Chinnerc9c12972010-01-11 11:49:59 +00001575
Christoph Hellwig5a8ee6b2011-08-23 08:28:05 +00001576 atomic_inc(&bp->b_hold);
1577 bp->b_flags |= XBF_DELWRI | _XBF_DELWRI_Q | XBF_ASYNC;
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001578 list_add_tail(&bp->b_list, &btp->bt_delwri_queue);
Christoph Hellwig5a8ee6b2011-08-23 08:28:05 +00001579 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001580 bp->b_queuetime = jiffies;
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001581 spin_unlock(&btp->bt_delwri_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
1584void
Nathan Scottce8e9222006-01-11 15:39:08 +11001585xfs_buf_delwri_dequeue(
1586 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
1588 int dequeued = 0;
1589
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001590 spin_lock(&bp->b_target->bt_delwri_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001591 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1592 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1593 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 dequeued = 1;
1595 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001596 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001597 spin_unlock(&bp->b_target->bt_delwri_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001600 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001602 trace_xfs_buf_delwri_dequeue(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603}
1604
Dave Chinnerd808f612010-02-02 10:13:42 +11001605/*
1606 * If a delwri buffer needs to be pushed before it has aged out, then promote
1607 * it to the head of the delwri queue so that it will be flushed on the next
1608 * xfsbufd run. We do this by resetting the queuetime of the buffer to be older
1609 * than the age currently needed to flush the buffer. Hence the next time the
1610 * xfsbufd sees it is guaranteed to be considered old enough to flush.
1611 */
1612void
1613xfs_buf_delwri_promote(
1614 struct xfs_buf *bp)
1615{
1616 struct xfs_buftarg *btp = bp->b_target;
1617 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10) + 1;
1618
1619 ASSERT(bp->b_flags & XBF_DELWRI);
1620 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1621
1622 /*
1623 * Check the buffer age before locking the delayed write queue as we
1624 * don't need to promote buffers that are already past the flush age.
1625 */
1626 if (bp->b_queuetime < jiffies - age)
1627 return;
1628 bp->b_queuetime = jiffies - age;
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001629 spin_lock(&btp->bt_delwri_lock);
1630 list_move(&bp->b_list, &btp->bt_delwri_queue);
1631 spin_unlock(&btp->bt_delwri_lock);
Dave Chinnerd808f612010-02-02 10:13:42 +11001632}
1633
David Chinner585e6d82007-02-10 18:32:29 +11001634/*
1635 * Move as many buffers as specified to the supplied list
1636 * idicating if we skipped any buffers to prevent deadlocks.
1637 */
1638STATIC int
1639xfs_buf_delwri_split(
1640 xfs_buftarg_t *target,
1641 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001642 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001643{
1644 xfs_buf_t *bp, *n;
David Chinner585e6d82007-02-10 18:32:29 +11001645 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001646 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001647
David Chinner5e6a07d2007-02-10 18:34:49 +11001648 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001649 INIT_LIST_HEAD(list);
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001650 spin_lock(&target->bt_delwri_lock);
1651 list_for_each_entry_safe(bp, n, &target->bt_delwri_queue, b_list) {
David Chinner585e6d82007-02-10 18:32:29 +11001652 ASSERT(bp->b_flags & XBF_DELWRI);
1653
Chandra Seetharaman811e64c2011-07-22 23:40:27 +00001654 if (!xfs_buf_ispinned(bp) && xfs_buf_trylock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001655 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001656 time_before(jiffies, bp->b_queuetime + age)) {
1657 xfs_buf_unlock(bp);
1658 break;
1659 }
1660
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +02001661 bp->b_flags &= ~(XBF_DELWRI | _XBF_DELWRI_Q);
David Chinner585e6d82007-02-10 18:32:29 +11001662 bp->b_flags |= XBF_WRITE;
1663 list_move_tail(&bp->b_list, list);
Dave Chinnerbfe27412010-11-08 08:55:05 +00001664 trace_xfs_buf_delwri_split(bp, _RET_IP_);
David Chinner585e6d82007-02-10 18:32:29 +11001665 } else
1666 skipped++;
1667 }
David Chinner585e6d82007-02-10 18:32:29 +11001668
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001669 spin_unlock(&target->bt_delwri_lock);
David Chinner585e6d82007-02-10 18:32:29 +11001670 return skipped;
David Chinner585e6d82007-02-10 18:32:29 +11001671}
1672
Dave Chinner089716a2010-01-26 15:13:25 +11001673/*
1674 * Compare function is more complex than it needs to be because
1675 * the return value is only 32 bits and we are doing comparisons
1676 * on 64 bit values
1677 */
1678static int
1679xfs_buf_cmp(
1680 void *priv,
1681 struct list_head *a,
1682 struct list_head *b)
1683{
1684 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1685 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1686 xfs_daddr_t diff;
1687
1688 diff = ap->b_bn - bp->b_bn;
1689 if (diff < 0)
1690 return -1;
1691 if (diff > 0)
1692 return 1;
1693 return 0;
1694}
1695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001697xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001698 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
Dave Chinner089716a2010-01-26 15:13:25 +11001700 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 current->flags |= PF_MEMALLOC;
1703
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001704 set_freezable();
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 do {
Dave Chinnerc9c12972010-01-11 11:49:59 +00001707 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10);
1708 long tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10);
Dave Chinner089716a2010-01-26 15:13:25 +11001709 struct list_head tmp;
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001710 struct blk_plug plug;
Dave Chinnerc9c12972010-01-11 11:49:59 +00001711
Eric Sandeen687d1c52011-12-13 23:12:45 +00001712 if (unlikely(freezing(current)))
Tejun Heoa0acae02011-11-21 12:32:22 -08001713 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Dave Chinnerc9c12972010-01-11 11:49:59 +00001715 /* sleep for a long time if there is nothing to do. */
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001716 if (list_empty(&target->bt_delwri_queue))
Dave Chinnerc9c12972010-01-11 11:49:59 +00001717 tout = MAX_SCHEDULE_TIMEOUT;
1718 schedule_timeout_interruptible(tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Dave Chinnerc9c12972010-01-11 11:49:59 +00001720 xfs_buf_delwri_split(target, &tmp, age);
Dave Chinner089716a2010-01-26 15:13:25 +11001721 list_sort(NULL, &tmp, xfs_buf_cmp);
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001722
1723 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 while (!list_empty(&tmp)) {
Dave Chinner089716a2010-01-26 15:13:25 +11001725 struct xfs_buf *bp;
1726 bp = list_first_entry(&tmp, struct xfs_buf, b_list);
Nathan Scottce8e9222006-01-11 15:39:08 +11001727 list_del_init(&bp->b_list);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001728 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 }
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001730 blk_finish_plug(&plug);
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001731 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001733 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734}
1735
1736/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001737 * Go through all incore buffers, and release buffers if they belong to
1738 * the given device. This is used in filesystem error handling to
1739 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 */
1741int
1742xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001743 xfs_buftarg_t *target,
1744 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
Dave Chinner089716a2010-01-26 15:13:25 +11001746 xfs_buf_t *bp;
David Chinner585e6d82007-02-10 18:32:29 +11001747 int pincount = 0;
Dave Chinner089716a2010-01-26 15:13:25 +11001748 LIST_HEAD(tmp_list);
1749 LIST_HEAD(wait_list);
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001750 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Christoph Hellwig5a93a062011-10-10 16:52:53 +00001752 flush_workqueue(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
David Chinner5e6a07d2007-02-10 18:34:49 +11001754 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
Dave Chinner089716a2010-01-26 15:13:25 +11001755 pincount = xfs_buf_delwri_split(target, &tmp_list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757 /*
Dave Chinner089716a2010-01-26 15:13:25 +11001758 * Dropped the delayed write list lock, now walk the temporary list.
1759 * All I/O is issued async and then if we need to wait for completion
1760 * we do that after issuing all the IO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 */
Dave Chinner089716a2010-01-26 15:13:25 +11001762 list_sort(NULL, &tmp_list, xfs_buf_cmp);
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001763
1764 blk_start_plug(&plug);
Dave Chinner089716a2010-01-26 15:13:25 +11001765 while (!list_empty(&tmp_list)) {
1766 bp = list_first_entry(&tmp_list, struct xfs_buf, b_list);
David Chinner585e6d82007-02-10 18:32:29 +11001767 ASSERT(target == bp->b_target);
Dave Chinner089716a2010-01-26 15:13:25 +11001768 list_del_init(&bp->b_list);
1769 if (wait) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001770 bp->b_flags &= ~XBF_ASYNC;
Dave Chinner089716a2010-01-26 15:13:25 +11001771 list_add(&bp->b_list, &wait_list);
1772 }
Christoph Hellwig939d7232010-07-20 17:51:16 +10001773 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 }
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001775 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Dave Chinner089716a2010-01-26 15:13:25 +11001777 if (wait) {
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001778 /* Wait for IO to complete. */
Dave Chinner089716a2010-01-26 15:13:25 +11001779 while (!list_empty(&wait_list)) {
1780 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
Nathan Scottf07c2252006-09-28 10:52:15 +10001781
Dave Chinner089716a2010-01-26 15:13:25 +11001782 list_del_init(&bp->b_list);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001783 xfs_buf_iowait(bp);
Dave Chinner089716a2010-01-26 15:13:25 +11001784 xfs_buf_relse(bp);
1785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
1787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 return pincount;
1789}
1790
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001791int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001792xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
Nathan Scott87582802006-03-14 13:18:19 +11001794 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1795 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001796 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001797 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001798
Dave Chinner51749e42010-09-08 09:00:22 +00001799 xfslogd_workqueue = alloc_workqueue("xfslogd",
Tejun Heo6370a6a2010-10-11 15:12:27 +02001800 WQ_MEM_RECLAIM | WQ_HIGHPRI, 1);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001801 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001802 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001804 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001806 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001807 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001808 out:
Nathan Scott87582802006-03-14 13:18:19 +11001809 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810}
1811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812void
Nathan Scottce8e9222006-01-11 15:39:08 +11001813xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001815 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001816 kmem_zone_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817}