blob: 3df7d0a2b245f2f5483529ce38d0503c628b74ea [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;
Christoph Hellwig0829c362005-09-02 16:58:49 +100048struct workqueue_struct *xfsdatad_workqueue;
Dave Chinnerc626d172009-04-06 18:42:11 +020049struct workqueue_struct *xfsconvertd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Nathan Scottce8e9222006-01-11 15:39:08 +110051#ifdef XFS_BUF_LOCK_TRACKING
52# define XB_SET_OWNER(bp) ((bp)->b_last_holder = current->pid)
53# define XB_CLEAR_OWNER(bp) ((bp)->b_last_holder = -1)
54# define XB_GET_OWNER(bp) ((bp)->b_last_holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#else
Nathan Scottce8e9222006-01-11 15:39:08 +110056# define XB_SET_OWNER(bp) do { } while (0)
57# define XB_CLEAR_OWNER(bp) do { } while (0)
58# define XB_GET_OWNER(bp) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#endif
60
Nathan Scottce8e9222006-01-11 15:39:08 +110061#define xb_to_gfp(flags) \
62 ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : \
63 ((flags) & XBF_DONT_BLOCK) ? GFP_NOFS : GFP_KERNEL) | __GFP_NOWARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Nathan Scottce8e9222006-01-11 15:39:08 +110065#define xb_to_km(flags) \
66 (((flags) & XBF_DONT_BLOCK) ? KM_NOFS : KM_SLEEP)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Nathan Scottce8e9222006-01-11 15:39:08 +110068#define xfs_buf_allocate(flags) \
69 kmem_zone_alloc(xfs_buf_zone, xb_to_km(flags))
70#define xfs_buf_deallocate(bp) \
71 kmem_zone_free(xfs_buf_zone, (bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
James Bottomley73c77e22010-01-25 11:42:24 -060073static inline int
74xfs_buf_is_vmapped(
75 struct xfs_buf *bp)
76{
77 /*
78 * Return true if the buffer is vmapped.
79 *
80 * The XBF_MAPPED flag is set if the buffer should be mapped, but the
81 * code is clever enough to know it doesn't have to map a single page,
82 * so the check has to be both for XBF_MAPPED and bp->b_page_count > 1.
83 */
84 return (bp->b_flags & XBF_MAPPED) && bp->b_page_count > 1;
85}
86
87static inline int
88xfs_buf_vmap_len(
89 struct xfs_buf *bp)
90{
91 return (bp->b_page_count * PAGE_SIZE) - bp->b_offset;
92}
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
Dave Chinner430cbeb2010-12-02 16:30:55 +110095 * xfs_buf_lru_add - add a buffer to the LRU.
96 *
97 * The LRU takes a new reference to the buffer so that it will only be freed
98 * once the shrinker takes the buffer off the LRU.
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 */
Dave Chinner430cbeb2010-12-02 16:30:55 +1100100STATIC void
101xfs_buf_lru_add(
102 struct xfs_buf *bp)
103{
104 struct xfs_buftarg *btp = bp->b_target;
105
106 spin_lock(&btp->bt_lru_lock);
107 if (list_empty(&bp->b_lru)) {
108 atomic_inc(&bp->b_hold);
109 list_add_tail(&bp->b_lru, &btp->bt_lru);
110 btp->bt_lru_nr++;
111 }
112 spin_unlock(&btp->bt_lru_lock);
113}
114
115/*
116 * xfs_buf_lru_del - remove a buffer from the LRU
117 *
118 * The unlocked check is safe here because it only occurs when there are not
119 * b_lru_ref counts left on the inode under the pag->pag_buf_lock. it is there
120 * to optimise the shrinker removing the buffer from the LRU and calling
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300121 * xfs_buf_free(). i.e. it removes an unnecessary round trip on the
Dave Chinner430cbeb2010-12-02 16:30:55 +1100122 * bt_lru_lock.
123 */
124STATIC void
125xfs_buf_lru_del(
126 struct xfs_buf *bp)
127{
128 struct xfs_buftarg *btp = bp->b_target;
129
130 if (list_empty(&bp->b_lru))
131 return;
132
133 spin_lock(&btp->bt_lru_lock);
134 if (!list_empty(&bp->b_lru)) {
135 list_del_init(&bp->b_lru);
136 btp->bt_lru_nr--;
137 }
138 spin_unlock(&btp->bt_lru_lock);
139}
140
141/*
142 * When we mark a buffer stale, we remove the buffer from the LRU and clear the
143 * b_lru_ref count so that the buffer is freed immediately when the buffer
144 * reference count falls to zero. If the buffer is already on the LRU, we need
145 * to remove the reference that LRU holds on the buffer.
146 *
147 * This prevents build-up of stale buffers on the LRU.
148 */
149void
150xfs_buf_stale(
151 struct xfs_buf *bp)
152{
153 bp->b_flags |= XBF_STALE;
Christoph Hellwigaf5c4be2011-10-10 16:52:47 +0000154 xfs_buf_delwri_dequeue(bp);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100155 atomic_set(&(bp)->b_lru_ref, 0);
156 if (!list_empty(&bp->b_lru)) {
157 struct xfs_buftarg *btp = bp->b_target;
158
159 spin_lock(&btp->bt_lru_lock);
160 if (!list_empty(&bp->b_lru)) {
161 list_del_init(&bp->b_lru);
162 btp->bt_lru_nr--;
163 atomic_dec(&bp->b_hold);
164 }
165 spin_unlock(&btp->bt_lru_lock);
166 }
167 ASSERT(atomic_read(&bp->b_hold) >= 1);
168}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100171_xfs_buf_initialize(
172 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100174 xfs_off_t range_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 size_t range_length,
Nathan Scottce8e9222006-01-11 15:39:08 +1100176 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 /*
Nathan Scottce8e9222006-01-11 15:39:08 +1100179 * We don't want certain flags to appear in b_flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100181 flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Nathan Scottce8e9222006-01-11 15:39:08 +1100183 memset(bp, 0, sizeof(xfs_buf_t));
184 atomic_set(&bp->b_hold, 1);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100185 atomic_set(&bp->b_lru_ref, 1);
David Chinnerb4dd3302008-08-13 16:36:11 +1000186 init_completion(&bp->b_iowait);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100187 INIT_LIST_HEAD(&bp->b_lru);
Nathan Scottce8e9222006-01-11 15:39:08 +1100188 INIT_LIST_HEAD(&bp->b_list);
Dave Chinner74f75a02010-09-24 19:59:04 +1000189 RB_CLEAR_NODE(&bp->b_rbnode);
Thomas Gleixnera731cd12010-09-07 14:33:15 +0000190 sema_init(&bp->b_sema, 0); /* held, no waiters */
Nathan Scottce8e9222006-01-11 15:39:08 +1100191 XB_SET_OWNER(bp);
192 bp->b_target = target;
193 bp->b_file_offset = range_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 /*
195 * Set buffer_length and count_desired to the same value initially.
196 * I/O routines should use count_desired, which will be the same in
197 * most cases but may be reset (e.g. XFS recovery).
198 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100199 bp->b_buffer_length = bp->b_count_desired = range_length;
200 bp->b_flags = flags;
201 bp->b_bn = XFS_BUF_DADDR_NULL;
202 atomic_set(&bp->b_pin_count, 0);
203 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Nathan Scottce8e9222006-01-11 15:39:08 +1100205 XFS_STATS_INC(xb_create);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000206
207 trace_xfs_buf_init(bp, _RET_IP_);
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);
Nathan Scottce8e9222006-01-11 15:39:08 +1100280 xfs_buf_deallocate(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
Nathan Scottce8e9222006-01-11 15:39:08 +1100542 new_bp = xfs_buf_allocate(flags);
543 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return NULL;
545
Dave Chinner38158322011-09-30 04:45:02 +0000546 _xfs_buf_initialize(new_bp, target,
547 ioff << BBSHIFT, isize << BBSHIFT, flags);
548
Nathan Scottce8e9222006-01-11 15:39:08 +1100549 bp = _xfs_buf_find(target, ioff, isize, flags, new_bp);
Dave Chinner38158322011-09-30 04:45:02 +0000550 if (!bp) {
551 xfs_buf_deallocate(new_bp);
552 return NULL;
553 }
554
Nathan Scottce8e9222006-01-11 15:39:08 +1100555 if (bp == new_bp) {
Dave Chinner0e6e8472011-03-26 09:16:45 +1100556 error = xfs_buf_allocate_memory(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (error)
558 goto no_buffer;
Dave Chinner38158322011-09-30 04:45:02 +0000559 } else
Nathan Scottce8e9222006-01-11 15:39:08 +1100560 xfs_buf_deallocate(new_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Dave Chinner38158322011-09-30 04:45:02 +0000562 /*
563 * Now we have a workable buffer, fill in the block number so
564 * that we can do IO on it.
565 */
566 bp->b_bn = ioff;
567 bp->b_count_desired = bp->b_buffer_length;
568
569found:
Nathan Scottce8e9222006-01-11 15:39:08 +1100570 if (!(bp->b_flags & XBF_MAPPED)) {
571 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100573 xfs_warn(target->bt_mount,
574 "%s: failed to map pages\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 goto no_buffer;
576 }
577 }
578
Nathan Scottce8e9222006-01-11 15:39:08 +1100579 XFS_STATS_INC(xb_get);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000580 trace_xfs_buf_get(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100581 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Dave Chinner38158322011-09-30 04:45:02 +0000583no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100584 if (flags & (XBF_LOCK | XBF_TRYLOCK))
585 xfs_buf_unlock(bp);
586 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return NULL;
588}
589
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100590STATIC int
591_xfs_buf_read(
592 xfs_buf_t *bp,
593 xfs_buf_flags_t flags)
594{
595 int status;
596
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100597 ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE)));
598 ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL);
599
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +0200600 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | XBF_READ_AHEAD);
601 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | XBF_READ_AHEAD);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100602
603 status = xfs_buf_iorequest(bp);
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +0000604 if (status || bp->b_error || (flags & XBF_ASYNC))
Dave Chinnerec53d1d2010-07-20 17:52:59 +1000605 return status;
606 return xfs_buf_iowait(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100607}
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609xfs_buf_t *
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000610xfs_buf_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100612 xfs_off_t ioff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 size_t isize,
Nathan Scottce8e9222006-01-11 15:39:08 +1100614 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Nathan Scottce8e9222006-01-11 15:39:08 +1100616 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Nathan Scottce8e9222006-01-11 15:39:08 +1100618 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000620 bp = xfs_buf_get(target, ioff, isize, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100621 if (bp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000622 trace_xfs_buf_read(bp, flags, _RET_IP_);
623
Nathan Scottce8e9222006-01-11 15:39:08 +1100624 if (!XFS_BUF_ISDONE(bp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100625 XFS_STATS_INC(xb_get_read);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100626 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100627 } else if (flags & XBF_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 /*
629 * Read ahead call which is already satisfied,
630 * drop the buffer
631 */
632 goto no_buffer;
633 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100635 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
637 }
638
Nathan Scottce8e9222006-01-11 15:39:08 +1100639 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 no_buffer:
Nathan Scottce8e9222006-01-11 15:39:08 +1100642 if (flags & (XBF_LOCK | XBF_TRYLOCK))
643 xfs_buf_unlock(bp);
644 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return NULL;
646}
647
648/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100649 * If we are not low on memory then do the readahead in a deadlock
650 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 */
652void
Nathan Scottce8e9222006-01-11 15:39:08 +1100653xfs_buf_readahead(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 xfs_buftarg_t *target,
Nathan Scott204ab252006-01-11 20:50:22 +1100655 xfs_off_t ioff,
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000656 size_t isize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Dave Chinner0e6e8472011-03-26 09:16:45 +1100658 if (bdi_read_congested(target->bt_bdi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return;
660
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000661 xfs_buf_read(target, ioff, isize,
662 XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD|XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
Dave Chinner5adc94c2010-09-24 21:58:31 +1000665/*
666 * Read an uncached buffer from disk. Allocates and returns a locked
667 * buffer containing the disk contents or nothing.
668 */
669struct xfs_buf *
670xfs_buf_read_uncached(
671 struct xfs_mount *mp,
672 struct xfs_buftarg *target,
673 xfs_daddr_t daddr,
674 size_t length,
675 int flags)
676{
677 xfs_buf_t *bp;
678 int error;
679
680 bp = xfs_buf_get_uncached(target, length, flags);
681 if (!bp)
682 return NULL;
683
684 /* set up the buffer for a read IO */
Dave Chinner5adc94c2010-09-24 21:58:31 +1000685 XFS_BUF_SET_ADDR(bp, daddr);
686 XFS_BUF_READ(bp);
Dave Chinner5adc94c2010-09-24 21:58:31 +1000687
688 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000689 error = xfs_buf_iowait(bp);
Dave Chinner5adc94c2010-09-24 21:58:31 +1000690 if (error || bp->b_error) {
691 xfs_buf_relse(bp);
692 return NULL;
693 }
694 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
697xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100698xfs_buf_get_empty(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 size_t len,
700 xfs_buftarg_t *target)
701{
Nathan Scottce8e9222006-01-11 15:39:08 +1100702 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Nathan Scottce8e9222006-01-11 15:39:08 +1100704 bp = xfs_buf_allocate(0);
705 if (bp)
706 _xfs_buf_initialize(bp, target, 0, len, 0);
707 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
Dave Chinner44396472011-04-21 09:34:27 +0000710/*
711 * Return a buffer allocated as an empty buffer and associated to external
712 * memory via xfs_buf_associate_memory() back to it's empty state.
713 */
714void
715xfs_buf_set_empty(
716 struct xfs_buf *bp,
717 size_t len)
718{
719 if (bp->b_pages)
720 _xfs_buf_free_pages(bp);
721
722 bp->b_pages = NULL;
723 bp->b_page_count = 0;
724 bp->b_addr = NULL;
725 bp->b_file_offset = 0;
726 bp->b_buffer_length = bp->b_count_desired = len;
727 bp->b_bn = XFS_BUF_DADDR_NULL;
728 bp->b_flags &= ~XBF_MAPPED;
729}
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731static inline struct page *
732mem_to_page(
733 void *addr)
734{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800735 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return virt_to_page(addr);
737 } else {
738 return vmalloc_to_page(addr);
739 }
740}
741
742int
Nathan Scottce8e9222006-01-11 15:39:08 +1100743xfs_buf_associate_memory(
744 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 void *mem,
746 size_t len)
747{
748 int rval;
749 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100750 unsigned long pageaddr;
751 unsigned long offset;
752 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 int page_count;
754
Dave Chinner0e6e8472011-03-26 09:16:45 +1100755 pageaddr = (unsigned long)mem & PAGE_MASK;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100756 offset = (unsigned long)mem - pageaddr;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100757 buflen = PAGE_ALIGN(len + offset);
758 page_count = buflen >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100761 if (bp->b_pages)
762 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Nathan Scottce8e9222006-01-11 15:39:08 +1100764 bp->b_pages = NULL;
765 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Christoph Hellwig36fae172009-07-18 18:14:58 -0400767 rval = _xfs_buf_get_pages(bp, page_count, XBF_DONT_BLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 if (rval)
769 return rval;
770
Nathan Scottce8e9222006-01-11 15:39:08 +1100771 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100773 for (i = 0; i < bp->b_page_count; i++) {
774 bp->b_pages[i] = mem_to_page((void *)pageaddr);
Dave Chinner0e6e8472011-03-26 09:16:45 +1100775 pageaddr += PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100778 bp->b_count_desired = len;
779 bp->b_buffer_length = buflen;
Nathan Scottce8e9222006-01-11 15:39:08 +1100780 bp->b_flags |= XBF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 return 0;
783}
784
785xfs_buf_t *
Dave Chinner686865f2010-09-24 20:07:47 +1000786xfs_buf_get_uncached(
787 struct xfs_buftarg *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 size_t len,
Dave Chinner686865f2010-09-24 20:07:47 +1000789 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000791 unsigned long page_count = PAGE_ALIGN(len) >> PAGE_SHIFT;
792 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Nathan Scottce8e9222006-01-11 15:39:08 +1100795 bp = xfs_buf_allocate(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (unlikely(bp == NULL))
797 goto fail;
Nathan Scottce8e9222006-01-11 15:39:08 +1100798 _xfs_buf_initialize(bp, target, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000800 error = _xfs_buf_get_pages(bp, page_count, 0);
801 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 goto fail_free_buf;
803
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000804 for (i = 0; i < page_count; i++) {
Dave Chinner686865f2010-09-24 20:07:47 +1000805 bp->b_pages[i] = alloc_page(xb_to_gfp(flags));
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000806 if (!bp->b_pages[i])
807 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000809 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000811 error = _xfs_buf_map_pages(bp, XBF_MAPPED);
812 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100813 xfs_warn(target->bt_mount,
814 "%s: failed to map pages\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Dave Chinner686865f2010-09-24 20:07:47 +1000818 trace_xfs_buf_get_uncached(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000822 while (--i >= 0)
823 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000824 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 fail_free_buf:
Christoph Hellwigca165b82007-05-24 15:21:11 +1000826 xfs_buf_deallocate(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 fail:
828 return NULL;
829}
830
831/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 * Increment reference count on buffer, to hold the buffer concurrently
833 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 * Must hold the buffer already to call this function.
835 */
836void
Nathan Scottce8e9222006-01-11 15:39:08 +1100837xfs_buf_hold(
838 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000840 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100841 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
844/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100845 * Releases a hold on the specified buffer. If the
846 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 */
848void
Nathan Scottce8e9222006-01-11 15:39:08 +1100849xfs_buf_rele(
850 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
Dave Chinner74f75a02010-09-24 19:59:04 +1000852 struct xfs_perag *pag = bp->b_pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000854 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Dave Chinner74f75a02010-09-24 19:59:04 +1000856 if (!pag) {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100857 ASSERT(list_empty(&bp->b_lru));
Dave Chinner74f75a02010-09-24 19:59:04 +1000858 ASSERT(RB_EMPTY_NODE(&bp->b_rbnode));
Nathan Scottfad3aa12006-02-01 12:14:52 +1100859 if (atomic_dec_and_test(&bp->b_hold))
860 xfs_buf_free(bp);
861 return;
862 }
863
Dave Chinner74f75a02010-09-24 19:59:04 +1000864 ASSERT(!RB_EMPTY_NODE(&bp->b_rbnode));
Dave Chinner430cbeb2010-12-02 16:30:55 +1100865
Lachlan McIlroy37906892008-08-13 15:42:10 +1000866 ASSERT(atomic_read(&bp->b_hold) > 0);
Dave Chinner74f75a02010-09-24 19:59:04 +1000867 if (atomic_dec_and_lock(&bp->b_hold, &pag->pag_buf_lock)) {
Christoph Hellwigbfc60172011-01-07 13:02:23 +0000868 if (!(bp->b_flags & XBF_STALE) &&
Dave Chinner430cbeb2010-12-02 16:30:55 +1100869 atomic_read(&bp->b_lru_ref)) {
870 xfs_buf_lru_add(bp);
871 spin_unlock(&pag->pag_buf_lock);
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100872 } else {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100873 xfs_buf_lru_del(bp);
Nathan Scottce8e9222006-01-11 15:39:08 +1100874 ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)));
Dave Chinner74f75a02010-09-24 19:59:04 +1000875 rb_erase(&bp->b_rbnode, &pag->pag_buf_tree);
876 spin_unlock(&pag->pag_buf_lock);
877 xfs_perag_put(pag);
Nathan Scottce8e9222006-01-11 15:39:08 +1100878 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
880 }
881}
882
883
884/*
Dave Chinner0e6e8472011-03-26 09:16:45 +1100885 * Lock a buffer object, if it is not already locked.
Dave Chinner90810b92010-11-30 15:16:16 +1100886 *
887 * If we come across a stale, pinned, locked buffer, we know that we are
888 * being asked to lock a buffer that has been reallocated. Because it is
889 * pinned, we know that the log has not been pushed to disk and hence it
890 * will still be locked. Rather than continuing to have trylock attempts
891 * fail until someone else pushes the log, push it ourselves before
892 * returning. This means that the xfsaild will not get stuck trying
893 * to push on stale inode buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 */
895int
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200896xfs_buf_trylock(
897 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
899 int locked;
900
Nathan Scottce8e9222006-01-11 15:39:08 +1100901 locked = down_trylock(&bp->b_sema) == 0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000902 if (locked)
Nathan Scottce8e9222006-01-11 15:39:08 +1100903 XB_SET_OWNER(bp);
Dave Chinner90810b92010-11-30 15:16:16 +1100904 else if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
905 xfs_log_force(bp->b_target->bt_mount, 0);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000906
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200907 trace_xfs_buf_trylock(bp, _RET_IP_);
908 return locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911/*
Dave Chinner0e6e8472011-03-26 09:16:45 +1100912 * Lock a buffer object.
Dave Chinnered3b4d62010-05-21 12:07:08 +1000913 *
914 * If we come across a stale, pinned, locked buffer, we know that we
915 * are being asked to lock a buffer that has been reallocated. Because
916 * it is pinned, we know that the log has not been pushed to disk and
917 * hence it will still be locked. Rather than sleeping until someone
918 * else pushes the log, push it ourselves before trying to get the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100920void
921xfs_buf_lock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200922 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000924 trace_xfs_buf_lock(bp, _RET_IP_);
925
Dave Chinnered3b4d62010-05-21 12:07:08 +1000926 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
Dave Chinnerebad8612010-09-22 10:47:20 +1000927 xfs_log_force(bp->b_target->bt_mount, 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100928 down(&bp->b_sema);
929 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000930
931 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100935 * Releases the lock on the buffer object.
David Chinner2f926582005-09-05 08:33:35 +1000936 * If the buffer is marked delwri but is not queued, do so before we
Nathan Scottce8e9222006-01-11 15:39:08 +1100937 * unlock the buffer as we need to set flags correctly. We also need to
David Chinner2f926582005-09-05 08:33:35 +1000938 * take a reference for the delwri queue because the unlocker is going to
939 * drop their's and they don't know we just queued it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 */
941void
Nathan Scottce8e9222006-01-11 15:39:08 +1100942xfs_buf_unlock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200943 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Nathan Scottce8e9222006-01-11 15:39:08 +1100945 XB_CLEAR_OWNER(bp);
946 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000947
948 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
Nathan Scottce8e9222006-01-11 15:39:08 +1100951STATIC void
952xfs_buf_wait_unpin(
953 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
955 DECLARE_WAITQUEUE (wait, current);
956
Nathan Scottce8e9222006-01-11 15:39:08 +1100957 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return;
959
Nathan Scottce8e9222006-01-11 15:39:08 +1100960 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 for (;;) {
962 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100963 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 break;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100965 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100967 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 set_current_state(TASK_RUNNING);
969}
970
971/*
972 * Buffer Utility Routines
973 */
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100976xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +0000977 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
David Howellsc4028952006-11-22 14:57:56 +0000979 xfs_buf_t *bp =
980 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Christoph Hellwig80f6c292010-08-18 05:29:11 -0400982 if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +1100983 (*(bp->b_iodone))(bp);
984 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 xfs_buf_relse(bp);
986}
987
988void
Nathan Scottce8e9222006-01-11 15:39:08 +1100989xfs_buf_ioend(
990 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 int schedule)
992{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000993 trace_xfs_buf_iodone(bp, _RET_IP_);
994
Lachlan McIlroy77be55a2007-11-23 16:31:00 +1100995 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +1100996 if (bp->b_error == 0)
997 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Nathan Scottce8e9222006-01-11 15:39:08 +1100999 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001001 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001002 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 } else {
David Howellsc4028952006-11-22 14:57:56 +00001004 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006 } else {
David Chinnerb4dd3302008-08-13 16:36:11 +10001007 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009}
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011void
Nathan Scottce8e9222006-01-11 15:39:08 +11001012xfs_buf_ioerror(
1013 xfs_buf_t *bp,
1014 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
1016 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001017 bp->b_error = (unsigned short)error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001018 trace_xfs_buf_ioerror(bp, error, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021int
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001022xfs_bwrite(
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001023 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Christoph Hellwig8c383662010-03-12 10:59:40 +00001025 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001027 bp->b_flags |= XBF_WRITE;
Christoph Hellwig8c383662010-03-12 10:59:40 +00001028 bp->b_flags &= ~(XBF_ASYNC | XBF_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001030 xfs_buf_delwri_dequeue(bp);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001031 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Christoph Hellwig8c383662010-03-12 10:59:40 +00001033 error = xfs_buf_iowait(bp);
Christoph Hellwigc2b006c2011-08-23 08:28:07 +00001034 if (error) {
1035 xfs_force_shutdown(bp->b_target->bt_mount,
1036 SHUTDOWN_META_IO_ERROR);
1037 }
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001038 return error;
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001039}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Christoph Hellwig4e234712010-01-13 22:17:56 +00001041/*
1042 * Called when we want to stop a buffer from getting written or read.
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001043 * We attach the EIO error, muck with its flags, and call xfs_buf_ioend
Christoph Hellwig4e234712010-01-13 22:17:56 +00001044 * so that the proper iodone callbacks get called.
1045 */
1046STATIC int
1047xfs_bioerror(
1048 xfs_buf_t *bp)
1049{
1050#ifdef XFSERRORDEBUG
1051 ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
1052#endif
1053
1054 /*
1055 * No need to wait until the buffer is unpinned, we aren't flushing it.
1056 */
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00001057 xfs_buf_ioerror(bp, EIO);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001058
1059 /*
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001060 * We're calling xfs_buf_ioend, so delete XBF_DONE flag.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001061 */
1062 XFS_BUF_UNREAD(bp);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001063 XFS_BUF_UNDONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00001064 xfs_buf_stale(bp);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001065
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001066 xfs_buf_ioend(bp, 0);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001067
1068 return EIO;
1069}
1070
1071/*
1072 * Same as xfs_bioerror, except that we are releasing the buffer
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001073 * here ourselves, and avoiding the xfs_buf_ioend call.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001074 * This is meant for userdata errors; metadata bufs come with
1075 * iodone functions attached, so that we can track down errors.
1076 */
1077STATIC int
1078xfs_bioerror_relse(
1079 struct xfs_buf *bp)
1080{
Chandra Seetharamaned432332011-07-22 23:39:39 +00001081 int64_t fl = bp->b_flags;
Christoph Hellwig4e234712010-01-13 22:17:56 +00001082 /*
1083 * No need to wait until the buffer is unpinned.
1084 * We aren't flushing it.
1085 *
1086 * chunkhold expects B_DONE to be set, whether
1087 * we actually finish the I/O or not. We don't want to
1088 * change that interface.
1089 */
1090 XFS_BUF_UNREAD(bp);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001091 XFS_BUF_DONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00001092 xfs_buf_stale(bp);
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02001093 bp->b_iodone = NULL;
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001094 if (!(fl & XBF_ASYNC)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001095 /*
1096 * Mark b_error and B_ERROR _both_.
1097 * Lot's of chunkcache code assumes that.
1098 * There's no reason to mark error for
1099 * ASYNC buffers.
1100 */
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00001101 xfs_buf_ioerror(bp, EIO);
Christoph Hellwig5fde0322011-10-10 16:52:44 +00001102 complete(&bp->b_iowait);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001103 } else {
1104 xfs_buf_relse(bp);
1105 }
1106
1107 return EIO;
1108}
1109
1110
1111/*
1112 * All xfs metadata buffers except log state machine buffers
1113 * get this attached as their b_bdstrat callback function.
1114 * This is so that we can catch a buffer
1115 * after prematurely unpinning it to forcibly shutdown the filesystem.
1116 */
1117int
1118xfs_bdstrat_cb(
1119 struct xfs_buf *bp)
1120{
Dave Chinnerebad8612010-09-22 10:47:20 +10001121 if (XFS_FORCED_SHUTDOWN(bp->b_target->bt_mount)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001122 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1123 /*
1124 * Metadata write that didn't get logged but
1125 * written delayed anyway. These aren't associated
1126 * with a transaction, and can be ignored.
1127 */
1128 if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
1129 return xfs_bioerror_relse(bp);
1130 else
1131 return xfs_bioerror(bp);
1132 }
1133
1134 xfs_buf_iorequest(bp);
1135 return 0;
1136}
1137
1138/*
1139 * Wrapper around bdstrat so that we can stop data from going to disk in case
1140 * we are shutting down the filesystem. Typically user data goes thru this
1141 * path; one of the exceptions is the superblock.
1142 */
1143void
1144xfsbdstrat(
1145 struct xfs_mount *mp,
1146 struct xfs_buf *bp)
1147{
1148 if (XFS_FORCED_SHUTDOWN(mp)) {
1149 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1150 xfs_bioerror_relse(bp);
1151 return;
1152 }
1153
1154 xfs_buf_iorequest(bp);
1155}
1156
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001157STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001158_xfs_buf_ioend(
1159 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 int schedule)
1161{
Dave Chinner0e6e8472011-03-26 09:16:45 +11001162 if (atomic_dec_and_test(&bp->b_io_remaining) == 1)
Nathan Scottce8e9222006-01-11 15:39:08 +11001163 xfs_buf_ioend(bp, schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
Al Viro782e3b32007-10-12 07:17:47 +01001166STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001167xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 int error)
1170{
Nathan Scottce8e9222006-01-11 15:39:08 +11001171 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Lachlan McIlroycfbe5262008-12-12 15:27:25 +11001173 xfs_buf_ioerror(bp, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
James Bottomley73c77e22010-01-25 11:42:24 -06001175 if (!error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
1176 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 {
Nathan Scottce8e9222006-01-11 15:39:08 +11001251 xfs_buf_ioerror(bp, EIO);
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001252 bio_put(bio);
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{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001260 trace_xfs_buf_iorequest(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Christoph Hellwig375ec69d2011-08-23 08:28:03 +00001262 ASSERT(!(bp->b_flags & XBF_DELWRI));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Christoph Hellwig375ec69d2011-08-23 08:28:03 +00001264 if (bp->b_flags & XBF_WRITE)
Nathan Scottce8e9222006-01-11 15:39:08 +11001265 xfs_buf_wait_unpin(bp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001266 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 /* Set the count to 1 initially, this will stop an I/O
1269 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001270 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001272 atomic_set(&bp->b_io_remaining, 1);
1273 _xfs_buf_ioapply(bp);
1274 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Nathan Scottce8e9222006-01-11 15:39:08 +11001276 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return 0;
1278}
1279
1280/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001281 * Waits for I/O to complete on the buffer supplied.
1282 * It returns immediately if no I/O is pending.
1283 * It returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 */
1285int
Nathan Scottce8e9222006-01-11 15:39:08 +11001286xfs_buf_iowait(
1287 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001289 trace_xfs_buf_iowait(bp, _RET_IP_);
1290
David Chinnerb4dd3302008-08-13 16:36:11 +10001291 wait_for_completion(&bp->b_iowait);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001292
1293 trace_xfs_buf_iowait_done(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +11001294 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295}
1296
Nathan Scottce8e9222006-01-11 15:39:08 +11001297xfs_caddr_t
1298xfs_buf_offset(
1299 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 size_t offset)
1301{
1302 struct page *page;
1303
Nathan Scottce8e9222006-01-11 15:39:08 +11001304 if (bp->b_flags & XBF_MAPPED)
Chandra Seetharaman62926042011-07-22 23:40:15 +00001305 return bp->b_addr + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Nathan Scottce8e9222006-01-11 15:39:08 +11001307 offset += bp->b_offset;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001308 page = bp->b_pages[offset >> PAGE_SHIFT];
1309 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310}
1311
1312/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 * Move data into or out of a buffer.
1314 */
1315void
Nathan Scottce8e9222006-01-11 15:39:08 +11001316xfs_buf_iomove(
1317 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 size_t boff, /* starting buffer offset */
1319 size_t bsize, /* length to copy */
Dave Chinnerb9c48642010-01-20 10:47:39 +11001320 void *data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001321 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
1323 size_t bend, cpoff, csize;
1324 struct page *page;
1325
1326 bend = boff + bsize;
1327 while (boff < bend) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001328 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
1329 cpoff = xfs_buf_poff(boff + bp->b_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 csize = min_t(size_t,
Dave Chinner0e6e8472011-03-26 09:16:45 +11001331 PAGE_SIZE-cpoff, bp->b_count_desired-boff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Dave Chinner0e6e8472011-03-26 09:16:45 +11001333 ASSERT(((csize + cpoff) <= PAGE_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001336 case XBRW_ZERO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 memset(page_address(page) + cpoff, 0, csize);
1338 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001339 case XBRW_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 memcpy(data, page_address(page) + cpoff, csize);
1341 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001342 case XBRW_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 memcpy(page_address(page) + cpoff, data, csize);
1344 }
1345
1346 boff += csize;
1347 data += csize;
1348 }
1349}
1350
1351/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001352 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 */
1354
1355/*
Dave Chinner430cbeb2010-12-02 16:30:55 +11001356 * Wait for any bufs with callbacks that have been submitted but have not yet
1357 * returned. These buffers will have an elevated hold count, so wait on those
1358 * while freeing all the buffers only held by the LRU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 */
1360void
1361xfs_wait_buftarg(
Dave Chinner74f75a02010-09-24 19:59:04 +10001362 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363{
Dave Chinner430cbeb2010-12-02 16:30:55 +11001364 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Dave Chinner430cbeb2010-12-02 16:30:55 +11001366restart:
1367 spin_lock(&btp->bt_lru_lock);
1368 while (!list_empty(&btp->bt_lru)) {
1369 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1370 if (atomic_read(&bp->b_hold) > 1) {
1371 spin_unlock(&btp->bt_lru_lock);
Dave Chinner26af6552010-09-22 10:47:20 +10001372 delay(100);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001373 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001375 /*
1376 * clear the LRU reference count so the bufer doesn't get
1377 * ignored in xfs_buf_rele().
1378 */
1379 atomic_set(&bp->b_lru_ref, 0);
1380 spin_unlock(&btp->bt_lru_lock);
1381 xfs_buf_rele(bp);
1382 spin_lock(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001384 spin_unlock(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385}
1386
Dave Chinnerff57ab22010-11-30 17:27:57 +11001387int
1388xfs_buftarg_shrink(
1389 struct shrinker *shrink,
Ying Han1495f232011-05-24 17:12:27 -07001390 struct shrink_control *sc)
David Chinnera6867a62006-01-11 15:37:58 +11001391{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001392 struct xfs_buftarg *btp = container_of(shrink,
1393 struct xfs_buftarg, bt_shrinker);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001394 struct xfs_buf *bp;
Ying Han1495f232011-05-24 17:12:27 -07001395 int nr_to_scan = sc->nr_to_scan;
Dave Chinner430cbeb2010-12-02 16:30:55 +11001396 LIST_HEAD(dispose);
1397
1398 if (!nr_to_scan)
1399 return btp->bt_lru_nr;
1400
1401 spin_lock(&btp->bt_lru_lock);
1402 while (!list_empty(&btp->bt_lru)) {
1403 if (nr_to_scan-- <= 0)
1404 break;
1405
1406 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1407
1408 /*
1409 * Decrement the b_lru_ref count unless the value is already
1410 * zero. If the value is already zero, we need to reclaim the
1411 * buffer, otherwise it gets another trip through the LRU.
1412 */
1413 if (!atomic_add_unless(&bp->b_lru_ref, -1, 0)) {
1414 list_move_tail(&bp->b_lru, &btp->bt_lru);
1415 continue;
1416 }
1417
1418 /*
1419 * remove the buffer from the LRU now to avoid needing another
1420 * lock round trip inside xfs_buf_rele().
1421 */
1422 list_move(&bp->b_lru, &dispose);
1423 btp->bt_lru_nr--;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001424 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001425 spin_unlock(&btp->bt_lru_lock);
1426
1427 while (!list_empty(&dispose)) {
1428 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1429 list_del_init(&bp->b_lru);
1430 xfs_buf_rele(bp);
1431 }
1432
1433 return btp->bt_lru_nr;
David Chinnera6867a62006-01-11 15:37:58 +11001434}
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436void
1437xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001438 struct xfs_mount *mp,
1439 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001441 unregister_shrinker(&btp->bt_shrinker);
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 xfs_flush_buftarg(btp, 1);
Christoph Hellwigb7963132009-03-03 14:48:37 -05001444 if (mp->m_flags & XFS_MOUNT_BARRIER)
1445 xfs_blkdev_issue_flush(btp);
David Chinnera6867a62006-01-11 15:37:58 +11001446
David Chinnera6867a62006-01-11 15:37:58 +11001447 kthread_stop(btp->bt_task);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001448 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449}
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451STATIC int
1452xfs_setsize_buftarg_flags(
1453 xfs_buftarg_t *btp,
1454 unsigned int blocksize,
1455 unsigned int sectorsize,
1456 int verbose)
1457{
Nathan Scottce8e9222006-01-11 15:39:08 +11001458 btp->bt_bsize = blocksize;
1459 btp->bt_sshift = ffs(sectorsize) - 1;
1460 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Nathan Scottce8e9222006-01-11 15:39:08 +11001462 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Dave Chinner4f107002011-03-07 10:00:35 +11001463 xfs_warn(btp->bt_mount,
1464 "Cannot set_blocksize to %u on device %s\n",
Chandra Seetharamanc35a5492011-07-22 23:40:46 +00001465 sectorsize, xfs_buf_target_name(btp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return EINVAL;
1467 }
1468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return 0;
1470}
1471
1472/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001473 * When allocating the initial buffer target we have not yet
1474 * read in the superblock, so don't know what sized sectors
1475 * are being used is at this early stage. Play safe.
1476 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477STATIC int
1478xfs_setsize_buftarg_early(
1479 xfs_buftarg_t *btp,
1480 struct block_device *bdev)
1481{
1482 return xfs_setsize_buftarg_flags(btp,
Dave Chinner0e6e8472011-03-26 09:16:45 +11001483 PAGE_SIZE, bdev_logical_block_size(bdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
1486int
1487xfs_setsize_buftarg(
1488 xfs_buftarg_t *btp,
1489 unsigned int blocksize,
1490 unsigned int sectorsize)
1491{
1492 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1493}
1494
1495STATIC int
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001496xfs_alloc_delwri_queue(
Jan Engelhardte2a07812010-03-23 09:52:55 +11001497 xfs_buftarg_t *btp,
1498 const char *fsname)
David Chinnera6867a62006-01-11 15:37:58 +11001499{
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001500 INIT_LIST_HEAD(&btp->bt_delwri_queue);
1501 spin_lock_init(&btp->bt_delwri_lock);
David Chinnera6867a62006-01-11 15:37:58 +11001502 btp->bt_flags = 0;
Jan Engelhardte2a07812010-03-23 09:52:55 +11001503 btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd/%s", fsname);
Dave Chinnerff57ab22010-11-30 17:27:57 +11001504 if (IS_ERR(btp->bt_task))
1505 return PTR_ERR(btp->bt_task);
1506 return 0;
David Chinnera6867a62006-01-11 15:37:58 +11001507}
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509xfs_buftarg_t *
1510xfs_alloc_buftarg(
Dave Chinnerebad8612010-09-22 10:47:20 +10001511 struct xfs_mount *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 struct block_device *bdev,
Jan Engelhardte2a07812010-03-23 09:52:55 +11001513 int external,
1514 const char *fsname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
1516 xfs_buftarg_t *btp;
1517
1518 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1519
Dave Chinnerebad8612010-09-22 10:47:20 +10001520 btp->bt_mount = mp;
Nathan Scottce8e9222006-01-11 15:39:08 +11001521 btp->bt_dev = bdev->bd_dev;
1522 btp->bt_bdev = bdev;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001523 btp->bt_bdi = blk_get_backing_dev_info(bdev);
1524 if (!btp->bt_bdi)
1525 goto error;
1526
Dave Chinner430cbeb2010-12-02 16:30:55 +11001527 INIT_LIST_HEAD(&btp->bt_lru);
1528 spin_lock_init(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 if (xfs_setsize_buftarg_early(btp, bdev))
1530 goto error;
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001531 if (xfs_alloc_delwri_queue(btp, fsname))
David Chinnera6867a62006-01-11 15:37:58 +11001532 goto error;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001533 btp->bt_shrinker.shrink = xfs_buftarg_shrink;
1534 btp->bt_shrinker.seeks = DEFAULT_SEEKS;
1535 register_shrinker(&btp->bt_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 return btp;
1537
1538error:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001539 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 return NULL;
1541}
1542
1543
1544/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001545 * Delayed write buffer handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 */
Christoph Hellwig61551f12011-08-23 08:28:06 +00001547void
Nathan Scottce8e9222006-01-11 15:39:08 +11001548xfs_buf_delwri_queue(
Christoph Hellwig527cfdf2011-08-23 08:28:04 +00001549 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001551 struct xfs_buftarg *btp = bp->b_target;
David Chinnera6867a62006-01-11 15:37:58 +11001552
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001553 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1554
Christoph Hellwig5a8ee6b2011-08-23 08:28:05 +00001555 ASSERT(!(bp->b_flags & XBF_READ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001557 spin_lock(&btp->bt_delwri_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001558 if (!list_empty(&bp->b_list)) {
Christoph Hellwig5a8ee6b2011-08-23 08:28:05 +00001559 /* if already in the queue, move it to the tail */
Nathan Scottce8e9222006-01-11 15:39:08 +11001560 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001561 list_move_tail(&bp->b_list, &btp->bt_delwri_queue);
Christoph Hellwig5a8ee6b2011-08-23 08:28:05 +00001562 } else {
Dave Chinnerc9c12972010-01-11 11:49:59 +00001563 /* start xfsbufd as it is about to have something to do */
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001564 if (list_empty(&btp->bt_delwri_queue))
Christoph Hellwig5a8ee6b2011-08-23 08:28:05 +00001565 wake_up_process(bp->b_target->bt_task);
Dave Chinnerc9c12972010-01-11 11:49:59 +00001566
Christoph Hellwig5a8ee6b2011-08-23 08:28:05 +00001567 atomic_inc(&bp->b_hold);
1568 bp->b_flags |= XBF_DELWRI | _XBF_DELWRI_Q | XBF_ASYNC;
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001569 list_add_tail(&bp->b_list, &btp->bt_delwri_queue);
Christoph Hellwig5a8ee6b2011-08-23 08:28:05 +00001570 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001571 bp->b_queuetime = jiffies;
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001572 spin_unlock(&btp->bt_delwri_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
1575void
Nathan Scottce8e9222006-01-11 15:39:08 +11001576xfs_buf_delwri_dequeue(
1577 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
1579 int dequeued = 0;
1580
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001581 spin_lock(&bp->b_target->bt_delwri_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +11001582 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) {
1583 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1584 list_del_init(&bp->b_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 dequeued = 1;
1586 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001587 bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q);
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001588 spin_unlock(&bp->b_target->bt_delwri_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590 if (dequeued)
Nathan Scottce8e9222006-01-11 15:39:08 +11001591 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001593 trace_xfs_buf_delwri_dequeue(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
Dave Chinnerd808f612010-02-02 10:13:42 +11001596/*
1597 * If a delwri buffer needs to be pushed before it has aged out, then promote
1598 * it to the head of the delwri queue so that it will be flushed on the next
1599 * xfsbufd run. We do this by resetting the queuetime of the buffer to be older
1600 * than the age currently needed to flush the buffer. Hence the next time the
1601 * xfsbufd sees it is guaranteed to be considered old enough to flush.
1602 */
1603void
1604xfs_buf_delwri_promote(
1605 struct xfs_buf *bp)
1606{
1607 struct xfs_buftarg *btp = bp->b_target;
1608 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10) + 1;
1609
1610 ASSERT(bp->b_flags & XBF_DELWRI);
1611 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
1612
1613 /*
1614 * Check the buffer age before locking the delayed write queue as we
1615 * don't need to promote buffers that are already past the flush age.
1616 */
1617 if (bp->b_queuetime < jiffies - age)
1618 return;
1619 bp->b_queuetime = jiffies - age;
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001620 spin_lock(&btp->bt_delwri_lock);
1621 list_move(&bp->b_list, &btp->bt_delwri_queue);
1622 spin_unlock(&btp->bt_delwri_lock);
Dave Chinnerd808f612010-02-02 10:13:42 +11001623}
1624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001626xfs_buf_runall_queues(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 struct workqueue_struct *queue)
1628{
1629 flush_workqueue(queue);
1630}
1631
David Chinner585e6d82007-02-10 18:32:29 +11001632/*
1633 * Move as many buffers as specified to the supplied list
1634 * idicating if we skipped any buffers to prevent deadlocks.
1635 */
1636STATIC int
1637xfs_buf_delwri_split(
1638 xfs_buftarg_t *target,
1639 struct list_head *list,
David Chinner5e6a07d2007-02-10 18:34:49 +11001640 unsigned long age)
David Chinner585e6d82007-02-10 18:32:29 +11001641{
1642 xfs_buf_t *bp, *n;
David Chinner585e6d82007-02-10 18:32:29 +11001643 int skipped = 0;
David Chinner5e6a07d2007-02-10 18:34:49 +11001644 int force;
David Chinner585e6d82007-02-10 18:32:29 +11001645
David Chinner5e6a07d2007-02-10 18:34:49 +11001646 force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags);
David Chinner585e6d82007-02-10 18:32:29 +11001647 INIT_LIST_HEAD(list);
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001648 spin_lock(&target->bt_delwri_lock);
1649 list_for_each_entry_safe(bp, n, &target->bt_delwri_queue, b_list) {
David Chinner585e6d82007-02-10 18:32:29 +11001650 ASSERT(bp->b_flags & XBF_DELWRI);
1651
Chandra Seetharaman811e64c2011-07-22 23:40:27 +00001652 if (!xfs_buf_ispinned(bp) && xfs_buf_trylock(bp)) {
David Chinner5e6a07d2007-02-10 18:34:49 +11001653 if (!force &&
David Chinner585e6d82007-02-10 18:32:29 +11001654 time_before(jiffies, bp->b_queuetime + age)) {
1655 xfs_buf_unlock(bp);
1656 break;
1657 }
1658
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +02001659 bp->b_flags &= ~(XBF_DELWRI | _XBF_DELWRI_Q);
David Chinner585e6d82007-02-10 18:32:29 +11001660 bp->b_flags |= XBF_WRITE;
1661 list_move_tail(&bp->b_list, list);
Dave Chinnerbfe27412010-11-08 08:55:05 +00001662 trace_xfs_buf_delwri_split(bp, _RET_IP_);
David Chinner585e6d82007-02-10 18:32:29 +11001663 } else
1664 skipped++;
1665 }
David Chinner585e6d82007-02-10 18:32:29 +11001666
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001667 spin_unlock(&target->bt_delwri_lock);
David Chinner585e6d82007-02-10 18:32:29 +11001668 return skipped;
David Chinner585e6d82007-02-10 18:32:29 +11001669}
1670
Dave Chinner089716a2010-01-26 15:13:25 +11001671/*
1672 * Compare function is more complex than it needs to be because
1673 * the return value is only 32 bits and we are doing comparisons
1674 * on 64 bit values
1675 */
1676static int
1677xfs_buf_cmp(
1678 void *priv,
1679 struct list_head *a,
1680 struct list_head *b)
1681{
1682 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1683 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1684 xfs_daddr_t diff;
1685
1686 diff = ap->b_bn - bp->b_bn;
1687 if (diff < 0)
1688 return -1;
1689 if (diff > 0)
1690 return 1;
1691 return 0;
1692}
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694STATIC int
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001695xfsbufd(
David Chinner585e6d82007-02-10 18:32:29 +11001696 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
Dave Chinner089716a2010-01-26 15:13:25 +11001698 xfs_buftarg_t *target = (xfs_buftarg_t *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 current->flags |= PF_MEMALLOC;
1701
Rafael J. Wysocki978c7b22007-12-07 14:09:02 +11001702 set_freezable();
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 do {
Dave Chinnerc9c12972010-01-11 11:49:59 +00001705 long age = xfs_buf_age_centisecs * msecs_to_jiffies(10);
1706 long tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10);
Dave Chinner089716a2010-01-26 15:13:25 +11001707 struct list_head tmp;
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001708 struct blk_plug plug;
Dave Chinnerc9c12972010-01-11 11:49:59 +00001709
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001710 if (unlikely(freezing(current))) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001711 set_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001712 refrigerator();
Nathan Scottabd0cf72005-05-05 13:30:13 -07001713 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001714 clear_bit(XBT_FORCE_SLEEP, &target->bt_flags);
Nathan Scottabd0cf72005-05-05 13:30:13 -07001715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Dave Chinnerc9c12972010-01-11 11:49:59 +00001717 /* sleep for a long time if there is nothing to do. */
Christoph Hellwigc4e1c092011-08-23 08:28:08 +00001718 if (list_empty(&target->bt_delwri_queue))
Dave Chinnerc9c12972010-01-11 11:49:59 +00001719 tout = MAX_SCHEDULE_TIMEOUT;
1720 schedule_timeout_interruptible(tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Dave Chinnerc9c12972010-01-11 11:49:59 +00001722 xfs_buf_delwri_split(target, &tmp, age);
Dave Chinner089716a2010-01-26 15:13:25 +11001723 list_sort(NULL, &tmp, xfs_buf_cmp);
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001724
1725 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 while (!list_empty(&tmp)) {
Dave Chinner089716a2010-01-26 15:13:25 +11001727 struct xfs_buf *bp;
1728 bp = list_first_entry(&tmp, struct xfs_buf, b_list);
Nathan Scottce8e9222006-01-11 15:39:08 +11001729 list_del_init(&bp->b_list);
Christoph Hellwig939d7232010-07-20 17:51:16 +10001730 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 }
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001732 blk_finish_plug(&plug);
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001733 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Christoph Hellwig4df08c52005-09-05 08:34:18 +10001735 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736}
1737
1738/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001739 * Go through all incore buffers, and release buffers if they belong to
1740 * the given device. This is used in filesystem error handling to
1741 * preserve the consistency of its metadata.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 */
1743int
1744xfs_flush_buftarg(
David Chinner585e6d82007-02-10 18:32:29 +11001745 xfs_buftarg_t *target,
1746 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
Dave Chinner089716a2010-01-26 15:13:25 +11001748 xfs_buf_t *bp;
David Chinner585e6d82007-02-10 18:32:29 +11001749 int pincount = 0;
Dave Chinner089716a2010-01-26 15:13:25 +11001750 LIST_HEAD(tmp_list);
1751 LIST_HEAD(wait_list);
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001752 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Dave Chinnerc626d172009-04-06 18:42:11 +02001754 xfs_buf_runall_queues(xfsconvertd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001755 xfs_buf_runall_queues(xfsdatad_workqueue);
1756 xfs_buf_runall_queues(xfslogd_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
David Chinner5e6a07d2007-02-10 18:34:49 +11001758 set_bit(XBT_FORCE_FLUSH, &target->bt_flags);
Dave Chinner089716a2010-01-26 15:13:25 +11001759 pincount = xfs_buf_delwri_split(target, &tmp_list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
1761 /*
Dave Chinner089716a2010-01-26 15:13:25 +11001762 * Dropped the delayed write list lock, now walk the temporary list.
1763 * All I/O is issued async and then if we need to wait for completion
1764 * we do that after issuing all the IO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 */
Dave Chinner089716a2010-01-26 15:13:25 +11001766 list_sort(NULL, &tmp_list, xfs_buf_cmp);
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001767
1768 blk_start_plug(&plug);
Dave Chinner089716a2010-01-26 15:13:25 +11001769 while (!list_empty(&tmp_list)) {
1770 bp = list_first_entry(&tmp_list, struct xfs_buf, b_list);
David Chinner585e6d82007-02-10 18:32:29 +11001771 ASSERT(target == bp->b_target);
Dave Chinner089716a2010-01-26 15:13:25 +11001772 list_del_init(&bp->b_list);
1773 if (wait) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001774 bp->b_flags &= ~XBF_ASYNC;
Dave Chinner089716a2010-01-26 15:13:25 +11001775 list_add(&bp->b_list, &wait_list);
1776 }
Christoph Hellwig939d7232010-07-20 17:51:16 +10001777 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 }
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001779 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Dave Chinner089716a2010-01-26 15:13:25 +11001781 if (wait) {
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001782 /* Wait for IO to complete. */
Dave Chinner089716a2010-01-26 15:13:25 +11001783 while (!list_empty(&wait_list)) {
1784 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
Nathan Scottf07c2252006-09-28 10:52:15 +10001785
Dave Chinner089716a2010-01-26 15:13:25 +11001786 list_del_init(&bp->b_list);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001787 xfs_buf_iowait(bp);
Dave Chinner089716a2010-01-26 15:13:25 +11001788 xfs_buf_relse(bp);
1789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 }
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 return pincount;
1793}
1794
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001795int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001796xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
Nathan Scott87582802006-03-14 13:18:19 +11001798 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1799 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001800 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001801 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001802
Dave Chinner51749e42010-09-08 09:00:22 +00001803 xfslogd_workqueue = alloc_workqueue("xfslogd",
Tejun Heo6370a6a2010-10-11 15:12:27 +02001804 WQ_MEM_RECLAIM | WQ_HIGHPRI, 1);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001805 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001806 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Tejun Heo83e75902011-02-01 11:42:43 +01001808 xfsdatad_workqueue = alloc_workqueue("xfsdatad", WQ_MEM_RECLAIM, 1);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001809 if (!xfsdatad_workqueue)
1810 goto out_destroy_xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Tejun Heo83e75902011-02-01 11:42:43 +01001812 xfsconvertd_workqueue = alloc_workqueue("xfsconvertd",
1813 WQ_MEM_RECLAIM, 1);
Dave Chinnerc626d172009-04-06 18:42:11 +02001814 if (!xfsconvertd_workqueue)
1815 goto out_destroy_xfsdatad_workqueue;
1816
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001817 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Dave Chinnerc626d172009-04-06 18:42:11 +02001819 out_destroy_xfsdatad_workqueue:
1820 destroy_workqueue(xfsdatad_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001821 out_destroy_xfslogd_workqueue:
1822 destroy_workqueue(xfslogd_workqueue);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001823 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001824 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001825 out:
Nathan Scott87582802006-03-14 13:18:19 +11001826 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827}
1828
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829void
Nathan Scottce8e9222006-01-11 15:39:08 +11001830xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
Dave Chinnerc626d172009-04-06 18:42:11 +02001832 destroy_workqueue(xfsconvertd_workqueue);
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001833 destroy_workqueue(xfsdatad_workqueue);
1834 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001835 kmem_zone_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836}