blob: 0298dd6847982ffb8db91c3875274110b651097f [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"
Dave Chinnered3b4d62010-05-21 12:07:08 +100038#include "xfs_log.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050039#include "xfs_ag.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050040#include "xfs_mount.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000041#include "xfs_trace.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050042
David Chinner7989cb82007-02-10 18:34:56 +110043static kmem_zone_t *xfs_buf_zone;
Christoph Hellwig23ea4032005-06-21 15:14:01 +100044
David Chinner7989cb82007-02-10 18:34:56 +110045static struct workqueue_struct *xfslogd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Nathan Scottce8e9222006-01-11 15:39:08 +110047#ifdef XFS_BUF_LOCK_TRACKING
48# define XB_SET_OWNER(bp) ((bp)->b_last_holder = current->pid)
49# define XB_CLEAR_OWNER(bp) ((bp)->b_last_holder = -1)
50# define XB_GET_OWNER(bp) ((bp)->b_last_holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#else
Nathan Scottce8e9222006-01-11 15:39:08 +110052# define XB_SET_OWNER(bp) do { } while (0)
53# define XB_CLEAR_OWNER(bp) do { } while (0)
54# define XB_GET_OWNER(bp) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#endif
56
Nathan Scottce8e9222006-01-11 15:39:08 +110057#define xb_to_gfp(flags) \
Dave Chinneraa5c1582012-04-23 15:58:56 +100058 ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : GFP_NOFS) | __GFP_NOWARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
James Bottomley73c77e22010-01-25 11:42:24 -060061static inline int
62xfs_buf_is_vmapped(
63 struct xfs_buf *bp)
64{
65 /*
66 * Return true if the buffer is vmapped.
67 *
Dave Chinner611c9942012-04-23 15:59:07 +100068 * b_addr is null if the buffer is not mapped, but the code is clever
69 * enough to know it doesn't have to map a single page, so the check has
70 * to be both for b_addr and bp->b_page_count > 1.
James Bottomley73c77e22010-01-25 11:42:24 -060071 */
Dave Chinner611c9942012-04-23 15:59:07 +100072 return bp->b_addr && bp->b_page_count > 1;
James Bottomley73c77e22010-01-25 11:42:24 -060073}
74
75static inline int
76xfs_buf_vmap_len(
77 struct xfs_buf *bp)
78{
79 return (bp->b_page_count * PAGE_SIZE) - bp->b_offset;
80}
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/*
Dave Chinner430cbeb2010-12-02 16:30:55 +110083 * xfs_buf_lru_add - add a buffer to the LRU.
84 *
85 * The LRU takes a new reference to the buffer so that it will only be freed
86 * once the shrinker takes the buffer off the LRU.
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
Dave Chinner430cbeb2010-12-02 16:30:55 +110088STATIC void
89xfs_buf_lru_add(
90 struct xfs_buf *bp)
91{
92 struct xfs_buftarg *btp = bp->b_target;
93
94 spin_lock(&btp->bt_lru_lock);
95 if (list_empty(&bp->b_lru)) {
96 atomic_inc(&bp->b_hold);
97 list_add_tail(&bp->b_lru, &btp->bt_lru);
98 btp->bt_lru_nr++;
Carlos Maiolino6fb8a902012-08-10 15:01:51 -030099 bp->b_lru_flags &= ~_XBF_LRU_DISPOSE;
Dave Chinner430cbeb2010-12-02 16:30:55 +1100100 }
101 spin_unlock(&btp->bt_lru_lock);
102}
103
104/*
105 * xfs_buf_lru_del - remove a buffer from the LRU
106 *
107 * The unlocked check is safe here because it only occurs when there are not
108 * b_lru_ref counts left on the inode under the pag->pag_buf_lock. it is there
109 * to optimise the shrinker removing the buffer from the LRU and calling
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300110 * xfs_buf_free(). i.e. it removes an unnecessary round trip on the
Dave Chinner430cbeb2010-12-02 16:30:55 +1100111 * bt_lru_lock.
112 */
113STATIC void
114xfs_buf_lru_del(
115 struct xfs_buf *bp)
116{
117 struct xfs_buftarg *btp = bp->b_target;
118
119 if (list_empty(&bp->b_lru))
120 return;
121
122 spin_lock(&btp->bt_lru_lock);
123 if (!list_empty(&bp->b_lru)) {
124 list_del_init(&bp->b_lru);
125 btp->bt_lru_nr--;
126 }
127 spin_unlock(&btp->bt_lru_lock);
128}
129
130/*
131 * When we mark a buffer stale, we remove the buffer from the LRU and clear the
132 * b_lru_ref count so that the buffer is freed immediately when the buffer
133 * reference count falls to zero. If the buffer is already on the LRU, we need
134 * to remove the reference that LRU holds on the buffer.
135 *
136 * This prevents build-up of stale buffers on the LRU.
137 */
138void
139xfs_buf_stale(
140 struct xfs_buf *bp)
141{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000142 ASSERT(xfs_buf_islocked(bp));
143
Dave Chinner430cbeb2010-12-02 16:30:55 +1100144 bp->b_flags |= XBF_STALE;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000145
146 /*
147 * Clear the delwri status so that a delwri queue walker will not
148 * flush this buffer to disk now that it is stale. The delwri queue has
149 * a reference to the buffer, so this is safe to do.
150 */
151 bp->b_flags &= ~_XBF_DELWRI_Q;
152
Dave Chinner430cbeb2010-12-02 16:30:55 +1100153 atomic_set(&(bp)->b_lru_ref, 0);
154 if (!list_empty(&bp->b_lru)) {
155 struct xfs_buftarg *btp = bp->b_target;
156
157 spin_lock(&btp->bt_lru_lock);
Carlos Maiolino6fb8a902012-08-10 15:01:51 -0300158 if (!list_empty(&bp->b_lru) &&
159 !(bp->b_lru_flags & _XBF_LRU_DISPOSE)) {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100160 list_del_init(&bp->b_lru);
161 btp->bt_lru_nr--;
162 atomic_dec(&bp->b_hold);
163 }
164 spin_unlock(&btp->bt_lru_lock);
165 }
166 ASSERT(atomic_read(&bp->b_hold) >= 1);
167}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Dave Chinner3e85c862012-06-22 18:50:09 +1000169static int
170xfs_buf_get_maps(
171 struct xfs_buf *bp,
172 int map_count)
173{
174 ASSERT(bp->b_maps == NULL);
175 bp->b_map_count = map_count;
176
177 if (map_count == 1) {
178 bp->b_maps = &bp->b_map;
179 return 0;
180 }
181
182 bp->b_maps = kmem_zalloc(map_count * sizeof(struct xfs_buf_map),
183 KM_NOFS);
184 if (!bp->b_maps)
185 return ENOMEM;
186 return 0;
187}
188
189/*
190 * Frees b_pages if it was allocated.
191 */
192static void
193xfs_buf_free_maps(
194 struct xfs_buf *bp)
195{
196 if (bp->b_maps != &bp->b_map) {
197 kmem_free(bp->b_maps);
198 bp->b_maps = NULL;
199 }
200}
201
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000202struct xfs_buf *
Dave Chinner3e85c862012-06-22 18:50:09 +1000203_xfs_buf_alloc(
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000204 struct xfs_buftarg *target,
Dave Chinner3e85c862012-06-22 18:50:09 +1000205 struct xfs_buf_map *map,
206 int nmaps,
Nathan Scottce8e9222006-01-11 15:39:08 +1100207 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000209 struct xfs_buf *bp;
Dave Chinner3e85c862012-06-22 18:50:09 +1000210 int error;
211 int i;
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000212
Dave Chinneraa5c1582012-04-23 15:58:56 +1000213 bp = kmem_zone_zalloc(xfs_buf_zone, KM_NOFS);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000214 if (unlikely(!bp))
215 return NULL;
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 /*
Dave Chinner12bcb3f2012-04-23 15:59:05 +1000218 * We don't want certain flags to appear in b_flags unless they are
219 * specifically set by later operations on the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 */
Dave Chinner611c9942012-04-23 15:59:07 +1000221 flags &= ~(XBF_UNMAPPED | XBF_TRYLOCK | XBF_ASYNC | XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Nathan Scottce8e9222006-01-11 15:39:08 +1100223 atomic_set(&bp->b_hold, 1);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100224 atomic_set(&bp->b_lru_ref, 1);
David Chinnerb4dd3302008-08-13 16:36:11 +1000225 init_completion(&bp->b_iowait);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100226 INIT_LIST_HEAD(&bp->b_lru);
Nathan Scottce8e9222006-01-11 15:39:08 +1100227 INIT_LIST_HEAD(&bp->b_list);
Dave Chinner74f75a02010-09-24 19:59:04 +1000228 RB_CLEAR_NODE(&bp->b_rbnode);
Thomas Gleixnera731cd112010-09-07 14:33:15 +0000229 sema_init(&bp->b_sema, 0); /* held, no waiters */
Nathan Scottce8e9222006-01-11 15:39:08 +1100230 XB_SET_OWNER(bp);
231 bp->b_target = target;
Dave Chinner3e85c862012-06-22 18:50:09 +1000232 bp->b_flags = flags;
Dave Chinnerde1cbee2012-04-23 15:58:50 +1000233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /*
Dave Chinneraa0e8832012-04-23 15:58:52 +1000235 * Set length and io_length to the same value initially.
236 * I/O routines should use io_length, which will be the same in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 * most cases but may be reset (e.g. XFS recovery).
238 */
Dave Chinner3e85c862012-06-22 18:50:09 +1000239 error = xfs_buf_get_maps(bp, nmaps);
240 if (error) {
241 kmem_zone_free(xfs_buf_zone, bp);
242 return NULL;
243 }
244
245 bp->b_bn = map[0].bm_bn;
246 bp->b_length = 0;
247 for (i = 0; i < nmaps; i++) {
248 bp->b_maps[i].bm_bn = map[i].bm_bn;
249 bp->b_maps[i].bm_len = map[i].bm_len;
250 bp->b_length += map[i].bm_len;
251 }
252 bp->b_io_length = bp->b_length;
253
Nathan Scottce8e9222006-01-11 15:39:08 +1100254 atomic_set(&bp->b_pin_count, 0);
255 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Nathan Scottce8e9222006-01-11 15:39:08 +1100257 XFS_STATS_INC(xb_create);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000258 trace_xfs_buf_init(bp, _RET_IP_);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000259
260 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
263/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100264 * Allocate a page array capable of holding a specified number
265 * of pages, and point the page buf at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 */
267STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100268_xfs_buf_get_pages(
269 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 int page_count,
Nathan Scottce8e9222006-01-11 15:39:08 +1100271 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 /* Make sure that we have a page list */
Nathan Scottce8e9222006-01-11 15:39:08 +1100274 if (bp->b_pages == NULL) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100275 bp->b_page_count = page_count;
276 if (page_count <= XB_PAGES) {
277 bp->b_pages = bp->b_page_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100279 bp->b_pages = kmem_alloc(sizeof(struct page *) *
Dave Chinneraa5c1582012-04-23 15:58:56 +1000280 page_count, KM_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +1100281 if (bp->b_pages == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return -ENOMEM;
283 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100284 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286 return 0;
287}
288
289/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100290 * Frees b_pages if it was allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 */
292STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100293_xfs_buf_free_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 xfs_buf_t *bp)
295{
Nathan Scottce8e9222006-01-11 15:39:08 +1100296 if (bp->b_pages != bp->b_page_array) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000297 kmem_free(bp->b_pages);
Dave Chinner3fc98b12009-12-14 23:11:57 +0000298 bp->b_pages = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300}
301
302/*
303 * Releases the specified buffer.
304 *
305 * The modification state of any associated pages is left unchanged.
Nathan Scottce8e9222006-01-11 15:39:08 +1100306 * The buffer most not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 * hashed and refcounted buffers
308 */
309void
Nathan Scottce8e9222006-01-11 15:39:08 +1100310xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 xfs_buf_t *bp)
312{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000313 trace_xfs_buf_free(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Dave Chinner430cbeb2010-12-02 16:30:55 +1100315 ASSERT(list_empty(&bp->b_lru));
316
Dave Chinner0e6e8472011-03-26 09:16:45 +1100317 if (bp->b_flags & _XBF_PAGES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 uint i;
319
James Bottomley73c77e22010-01-25 11:42:24 -0600320 if (xfs_buf_is_vmapped(bp))
Alex Elder8a262e52010-03-16 18:55:56 +0000321 vm_unmap_ram(bp->b_addr - bp->b_offset,
322 bp->b_page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Nathan Scott948ecdb2006-09-28 11:03:13 +1000324 for (i = 0; i < bp->b_page_count; i++) {
325 struct page *page = bp->b_pages[i];
326
Dave Chinner0e6e8472011-03-26 09:16:45 +1100327 __free_page(page);
Nathan Scott948ecdb2006-09-28 11:03:13 +1000328 }
Dave Chinner0e6e8472011-03-26 09:16:45 +1100329 } else if (bp->b_flags & _XBF_KMEM)
330 kmem_free(bp->b_addr);
Dave Chinner3fc98b12009-12-14 23:11:57 +0000331 _xfs_buf_free_pages(bp);
Dave Chinner3e85c862012-06-22 18:50:09 +1000332 xfs_buf_free_maps(bp);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000333 kmem_zone_free(xfs_buf_zone, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
336/*
Dave Chinner0e6e8472011-03-26 09:16:45 +1100337 * Allocates all the pages for buffer in question and builds it's page list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 */
339STATIC int
Dave Chinner0e6e8472011-03-26 09:16:45 +1100340xfs_buf_allocate_memory(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 xfs_buf_t *bp,
342 uint flags)
343{
Dave Chinneraa0e8832012-04-23 15:58:52 +1000344 size_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100346 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 unsigned short page_count, i;
Dave Chinner795cac72012-04-23 15:58:53 +1000348 xfs_off_t start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 int error;
350
Dave Chinner0e6e8472011-03-26 09:16:45 +1100351 /*
352 * for buffers that are contained within a single page, just allocate
353 * the memory from the heap - there's no need for the complexity of
354 * page arrays to keep allocation down to order 0.
355 */
Dave Chinner795cac72012-04-23 15:58:53 +1000356 size = BBTOB(bp->b_length);
357 if (size < PAGE_SIZE) {
Dave Chinneraa5c1582012-04-23 15:58:56 +1000358 bp->b_addr = kmem_alloc(size, KM_NOFS);
Dave Chinner0e6e8472011-03-26 09:16:45 +1100359 if (!bp->b_addr) {
360 /* low memory - use alloc_page loop instead */
361 goto use_alloc_page;
362 }
363
Dave Chinner795cac72012-04-23 15:58:53 +1000364 if (((unsigned long)(bp->b_addr + size - 1) & PAGE_MASK) !=
Dave Chinner0e6e8472011-03-26 09:16:45 +1100365 ((unsigned long)bp->b_addr & PAGE_MASK)) {
366 /* b_addr spans two pages - use alloc_page instead */
367 kmem_free(bp->b_addr);
368 bp->b_addr = NULL;
369 goto use_alloc_page;
370 }
371 bp->b_offset = offset_in_page(bp->b_addr);
372 bp->b_pages = bp->b_page_array;
373 bp->b_pages[0] = virt_to_page(bp->b_addr);
374 bp->b_page_count = 1;
Dave Chinner611c9942012-04-23 15:59:07 +1000375 bp->b_flags |= _XBF_KMEM;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100376 return 0;
377 }
378
379use_alloc_page:
Dave Chinnercbb7baa2012-06-22 18:50:08 +1000380 start = BBTOB(bp->b_map.bm_bn) >> PAGE_SHIFT;
381 end = (BBTOB(bp->b_map.bm_bn + bp->b_length) + PAGE_SIZE - 1)
382 >> PAGE_SHIFT;
Dave Chinner795cac72012-04-23 15:58:53 +1000383 page_count = end - start;
Nathan Scottce8e9222006-01-11 15:39:08 +1100384 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (unlikely(error))
386 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Nathan Scottce8e9222006-01-11 15:39:08 +1100388 offset = bp->b_offset;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100389 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Nathan Scottce8e9222006-01-11 15:39:08 +1100391 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 struct page *page;
393 uint retries = 0;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100394retry:
395 page = alloc_page(gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100397 if (flags & XBF_READ_AHEAD) {
398 bp->b_page_count = i;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100399 error = ENOMEM;
400 goto out_free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402
403 /*
404 * This could deadlock.
405 *
406 * But until all the XFS lowlevel code is revamped to
407 * handle buffer allocation failures we can't do much.
408 */
409 if (!(++retries % 100))
Dave Chinner4f107002011-03-07 10:00:35 +1100410 xfs_err(NULL,
411 "possible memory allocation deadlock in %s (mode:0x%x)",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000412 __func__, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Nathan Scottce8e9222006-01-11 15:39:08 +1100414 XFS_STATS_INC(xb_page_retries);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200415 congestion_wait(BLK_RW_ASYNC, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 goto retry;
417 }
418
Nathan Scottce8e9222006-01-11 15:39:08 +1100419 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Dave Chinner0e6e8472011-03-26 09:16:45 +1100421 nbytes = min_t(size_t, size, PAGE_SIZE - offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 size -= nbytes;
Nathan Scottce8e9222006-01-11 15:39:08 +1100423 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 offset = 0;
425 }
Dave Chinner0e6e8472011-03-26 09:16:45 +1100426 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Dave Chinner0e6e8472011-03-26 09:16:45 +1100428out_free_pages:
429 for (i = 0; i < bp->b_page_count; i++)
430 __free_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return error;
432}
433
434/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300435 * Map buffer into kernel address-space if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 */
437STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100438_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 xfs_buf_t *bp,
440 uint flags)
441{
Dave Chinner0e6e8472011-03-26 09:16:45 +1100442 ASSERT(bp->b_flags & _XBF_PAGES);
Nathan Scottce8e9222006-01-11 15:39:08 +1100443 if (bp->b_page_count == 1) {
Dave Chinner0e6e8472011-03-26 09:16:45 +1100444 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100445 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
Dave Chinner611c9942012-04-23 15:59:07 +1000446 } else if (flags & XBF_UNMAPPED) {
447 bp->b_addr = NULL;
448 } else {
Dave Chinnera19fb382011-03-26 09:13:42 +1100449 int retried = 0;
450
451 do {
452 bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
453 -1, PAGE_KERNEL);
454 if (bp->b_addr)
455 break;
456 vm_unmap_aliases();
457 } while (retried++ <= 1);
458
459 if (!bp->b_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100461 bp->b_addr += bp->b_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463
464 return 0;
465}
466
467/*
468 * Finding and Reading Buffers
469 */
470
471/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100472 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 * a given range of an inode. The buffer is returned
Chandra Seetharamaneabbaf12011-09-08 20:18:50 +0000474 * locked. No I/O is implied by this call.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 */
476xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100477_xfs_buf_find(
Dave Chinnere70b73f2012-04-23 15:58:49 +1000478 struct xfs_buftarg *btp,
Dave Chinner3e85c862012-06-22 18:50:09 +1000479 struct xfs_buf_map *map,
480 int nmaps,
Nathan Scottce8e9222006-01-11 15:39:08 +1100481 xfs_buf_flags_t flags,
482 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Dave Chinnere70b73f2012-04-23 15:58:49 +1000484 size_t numbytes;
Dave Chinner74f75a02010-09-24 19:59:04 +1000485 struct xfs_perag *pag;
486 struct rb_node **rbp;
487 struct rb_node *parent;
488 xfs_buf_t *bp;
Dave Chinner3e85c862012-06-22 18:50:09 +1000489 xfs_daddr_t blkno = map[0].bm_bn;
490 int numblks = 0;
491 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Dave Chinner3e85c862012-06-22 18:50:09 +1000493 for (i = 0; i < nmaps; i++)
494 numblks += map[i].bm_len;
Dave Chinnere70b73f2012-04-23 15:58:49 +1000495 numbytes = BBTOB(numblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 /* Check for IOs smaller than the sector size / not sector aligned */
Dave Chinnere70b73f2012-04-23 15:58:49 +1000498 ASSERT(!(numbytes < (1 << btp->bt_sshift)));
Dave Chinnerde1cbee2012-04-23 15:58:50 +1000499 ASSERT(!(BBTOB(blkno) & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Dave Chinner74f75a02010-09-24 19:59:04 +1000501 /* get tree root */
502 pag = xfs_perag_get(btp->bt_mount,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000503 xfs_daddr_to_agno(btp->bt_mount, blkno));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Dave Chinner74f75a02010-09-24 19:59:04 +1000505 /* walk tree */
506 spin_lock(&pag->pag_buf_lock);
507 rbp = &pag->pag_buf_tree.rb_node;
508 parent = NULL;
509 bp = NULL;
510 while (*rbp) {
511 parent = *rbp;
512 bp = rb_entry(parent, struct xfs_buf, b_rbnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Dave Chinnerde1cbee2012-04-23 15:58:50 +1000514 if (blkno < bp->b_bn)
Dave Chinner74f75a02010-09-24 19:59:04 +1000515 rbp = &(*rbp)->rb_left;
Dave Chinnerde1cbee2012-04-23 15:58:50 +1000516 else if (blkno > bp->b_bn)
Dave Chinner74f75a02010-09-24 19:59:04 +1000517 rbp = &(*rbp)->rb_right;
518 else {
519 /*
Dave Chinnerde1cbee2012-04-23 15:58:50 +1000520 * found a block number match. If the range doesn't
Dave Chinner74f75a02010-09-24 19:59:04 +1000521 * match, the only way this is allowed is if the buffer
522 * in the cache is stale and the transaction that made
523 * it stale has not yet committed. i.e. we are
524 * reallocating a busy extent. Skip this buffer and
525 * continue searching to the right for an exact match.
526 */
Dave Chinner4e94b712012-04-23 15:58:51 +1000527 if (bp->b_length != numblks) {
Dave Chinner74f75a02010-09-24 19:59:04 +1000528 ASSERT(bp->b_flags & XBF_STALE);
529 rbp = &(*rbp)->rb_right;
530 continue;
531 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100532 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 goto found;
534 }
535 }
536
537 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100538 if (new_bp) {
Dave Chinner74f75a02010-09-24 19:59:04 +1000539 rb_link_node(&new_bp->b_rbnode, parent, rbp);
540 rb_insert_color(&new_bp->b_rbnode, &pag->pag_buf_tree);
541 /* the buffer keeps the perag reference until it is freed */
542 new_bp->b_pag = pag;
543 spin_unlock(&pag->pag_buf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100545 XFS_STATS_INC(xb_miss_locked);
Dave Chinner74f75a02010-09-24 19:59:04 +1000546 spin_unlock(&pag->pag_buf_lock);
547 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100549 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551found:
Dave Chinner74f75a02010-09-24 19:59:04 +1000552 spin_unlock(&pag->pag_buf_lock);
553 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200555 if (!xfs_buf_trylock(bp)) {
556 if (flags & XBF_TRYLOCK) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100557 xfs_buf_rele(bp);
558 XFS_STATS_INC(xb_busy_locked);
559 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200561 xfs_buf_lock(bp);
562 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564
Dave Chinner0e6e8472011-03-26 09:16:45 +1100565 /*
566 * if the buffer is stale, clear all the external state associated with
567 * it. We need to keep flags such as how we allocated the buffer memory
568 * intact here.
569 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100570 if (bp->b_flags & XBF_STALE) {
571 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
Dave Chinner611c9942012-04-23 15:59:07 +1000572 bp->b_flags &= _XBF_KMEM | _XBF_PAGES;
David Chinner2f926582005-09-05 08:33:35 +1000573 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000574
575 trace_xfs_buf_find(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100576 XFS_STATS_INC(xb_get_locked);
577 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
580/*
Dave Chinner38158322011-09-30 04:45:02 +0000581 * Assembles a buffer covering the specified range. The code is optimised for
582 * cache hits, as metadata intensive workloads will see 3 orders of magnitude
583 * more hits than misses.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 */
Dave Chinner38158322011-09-30 04:45:02 +0000585struct xfs_buf *
Dave Chinner6dde2702012-06-22 18:50:10 +1000586xfs_buf_get_map(
587 struct xfs_buftarg *target,
588 struct xfs_buf_map *map,
589 int nmaps,
Nathan Scottce8e9222006-01-11 15:39:08 +1100590 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Dave Chinner38158322011-09-30 04:45:02 +0000592 struct xfs_buf *bp;
593 struct xfs_buf *new_bp;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100594 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Dave Chinner6dde2702012-06-22 18:50:10 +1000596 bp = _xfs_buf_find(target, map, nmaps, flags, NULL);
Dave Chinner38158322011-09-30 04:45:02 +0000597 if (likely(bp))
598 goto found;
599
Dave Chinner6dde2702012-06-22 18:50:10 +1000600 new_bp = _xfs_buf_alloc(target, map, nmaps, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100601 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return NULL;
603
Dave Chinnerfe2429b2012-04-23 15:58:45 +1000604 error = xfs_buf_allocate_memory(new_bp, flags);
605 if (error) {
Dave Chinner3e85c862012-06-22 18:50:09 +1000606 xfs_buf_free(new_bp);
Dave Chinner38158322011-09-30 04:45:02 +0000607 return NULL;
608 }
609
Dave Chinner6dde2702012-06-22 18:50:10 +1000610 bp = _xfs_buf_find(target, map, nmaps, flags, new_bp);
Dave Chinnerfe2429b2012-04-23 15:58:45 +1000611 if (!bp) {
612 xfs_buf_free(new_bp);
613 return NULL;
614 }
615
616 if (bp != new_bp)
617 xfs_buf_free(new_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Dave Chinner38158322011-09-30 04:45:02 +0000619found:
Dave Chinner611c9942012-04-23 15:59:07 +1000620 if (!bp->b_addr) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100621 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100623 xfs_warn(target->bt_mount,
624 "%s: failed to map pages\n", __func__);
Dave Chinnera8acad72012-04-23 15:58:54 +1000625 xfs_buf_relse(bp);
626 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
628 }
629
Nathan Scottce8e9222006-01-11 15:39:08 +1100630 XFS_STATS_INC(xb_get);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000631 trace_xfs_buf_get(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100632 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100635STATIC int
636_xfs_buf_read(
637 xfs_buf_t *bp,
638 xfs_buf_flags_t flags)
639{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000640 ASSERT(!(flags & XBF_WRITE));
Dave Chinnercbb7baa2012-06-22 18:50:08 +1000641 ASSERT(bp->b_map.bm_bn != XFS_BUF_DADDR_NULL);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100642
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000643 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_READ_AHEAD);
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +0200644 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | XBF_READ_AHEAD);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100645
Dave Chinner0e95f192012-04-23 15:58:46 +1000646 xfs_buf_iorequest(bp);
647 if (flags & XBF_ASYNC)
648 return 0;
Dave Chinnerec53d1d2010-07-20 17:52:59 +1000649 return xfs_buf_iowait(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100650}
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652xfs_buf_t *
Dave Chinner6dde2702012-06-22 18:50:10 +1000653xfs_buf_read_map(
654 struct xfs_buftarg *target,
655 struct xfs_buf_map *map,
656 int nmaps,
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100657 xfs_buf_flags_t flags,
658 xfs_buf_iodone_t verify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Dave Chinner6dde2702012-06-22 18:50:10 +1000660 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Nathan Scottce8e9222006-01-11 15:39:08 +1100662 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Dave Chinner6dde2702012-06-22 18:50:10 +1000664 bp = xfs_buf_get_map(target, map, nmaps, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100665 if (bp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000666 trace_xfs_buf_read(bp, flags, _RET_IP_);
667
Nathan Scottce8e9222006-01-11 15:39:08 +1100668 if (!XFS_BUF_ISDONE(bp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100669 XFS_STATS_INC(xb_get_read);
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100670 bp->b_iodone = verify;
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100671 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100672 } else if (flags & XBF_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 /*
674 * Read ahead call which is already satisfied,
675 * drop the buffer
676 */
Dave Chinnera8acad72012-04-23 15:58:54 +1000677 xfs_buf_relse(bp);
678 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100681 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683 }
684
Nathan Scottce8e9222006-01-11 15:39:08 +1100685 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
688/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100689 * If we are not low on memory then do the readahead in a deadlock
690 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 */
692void
Dave Chinner6dde2702012-06-22 18:50:10 +1000693xfs_buf_readahead_map(
694 struct xfs_buftarg *target,
695 struct xfs_buf_map *map,
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100696 int nmaps,
697 xfs_buf_iodone_t verify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
Dave Chinner0e6e8472011-03-26 09:16:45 +1100699 if (bdi_read_congested(target->bt_bdi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return;
701
Dave Chinner6dde2702012-06-22 18:50:10 +1000702 xfs_buf_read_map(target, map, nmaps,
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100703 XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD, verify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
Dave Chinner5adc94c2010-09-24 21:58:31 +1000706/*
707 * Read an uncached buffer from disk. Allocates and returns a locked
708 * buffer containing the disk contents or nothing.
709 */
710struct xfs_buf *
711xfs_buf_read_uncached(
Dave Chinner5adc94c2010-09-24 21:58:31 +1000712 struct xfs_buftarg *target,
713 xfs_daddr_t daddr,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000714 size_t numblks,
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100715 int flags,
716 xfs_buf_iodone_t verify)
Dave Chinner5adc94c2010-09-24 21:58:31 +1000717{
718 xfs_buf_t *bp;
719 int error;
720
Dave Chinnere70b73f2012-04-23 15:58:49 +1000721 bp = xfs_buf_get_uncached(target, numblks, flags);
Dave Chinner5adc94c2010-09-24 21:58:31 +1000722 if (!bp)
723 return NULL;
724
725 /* set up the buffer for a read IO */
Dave Chinner3e85c862012-06-22 18:50:09 +1000726 ASSERT(bp->b_map_count == 1);
727 bp->b_bn = daddr;
728 bp->b_maps[0].bm_bn = daddr;
Dave Chinnercbb7baa2012-06-22 18:50:08 +1000729 bp->b_flags |= XBF_READ;
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100730 bp->b_iodone = verify;
Dave Chinner5adc94c2010-09-24 21:58:31 +1000731
Dave Chinnere70b73f2012-04-23 15:58:49 +1000732 xfsbdstrat(target->bt_mount, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000733 error = xfs_buf_iowait(bp);
Dave Chinner0e95f192012-04-23 15:58:46 +1000734 if (error) {
Dave Chinner5adc94c2010-09-24 21:58:31 +1000735 xfs_buf_relse(bp);
736 return NULL;
737 }
738 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
Dave Chinner44396472011-04-21 09:34:27 +0000741/*
742 * Return a buffer allocated as an empty buffer and associated to external
743 * memory via xfs_buf_associate_memory() back to it's empty state.
744 */
745void
746xfs_buf_set_empty(
747 struct xfs_buf *bp,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000748 size_t numblks)
Dave Chinner44396472011-04-21 09:34:27 +0000749{
750 if (bp->b_pages)
751 _xfs_buf_free_pages(bp);
752
753 bp->b_pages = NULL;
754 bp->b_page_count = 0;
755 bp->b_addr = NULL;
Dave Chinner4e94b712012-04-23 15:58:51 +1000756 bp->b_length = numblks;
Dave Chinneraa0e8832012-04-23 15:58:52 +1000757 bp->b_io_length = numblks;
Dave Chinner3e85c862012-06-22 18:50:09 +1000758
759 ASSERT(bp->b_map_count == 1);
Dave Chinner44396472011-04-21 09:34:27 +0000760 bp->b_bn = XFS_BUF_DADDR_NULL;
Dave Chinner3e85c862012-06-22 18:50:09 +1000761 bp->b_maps[0].bm_bn = XFS_BUF_DADDR_NULL;
762 bp->b_maps[0].bm_len = bp->b_length;
Dave Chinner44396472011-04-21 09:34:27 +0000763}
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765static inline struct page *
766mem_to_page(
767 void *addr)
768{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800769 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return virt_to_page(addr);
771 } else {
772 return vmalloc_to_page(addr);
773 }
774}
775
776int
Nathan Scottce8e9222006-01-11 15:39:08 +1100777xfs_buf_associate_memory(
778 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 void *mem,
780 size_t len)
781{
782 int rval;
783 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100784 unsigned long pageaddr;
785 unsigned long offset;
786 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 int page_count;
788
Dave Chinner0e6e8472011-03-26 09:16:45 +1100789 pageaddr = (unsigned long)mem & PAGE_MASK;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100790 offset = (unsigned long)mem - pageaddr;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100791 buflen = PAGE_ALIGN(len + offset);
792 page_count = buflen >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100795 if (bp->b_pages)
796 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Nathan Scottce8e9222006-01-11 15:39:08 +1100798 bp->b_pages = NULL;
799 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Dave Chinneraa5c1582012-04-23 15:58:56 +1000801 rval = _xfs_buf_get_pages(bp, page_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (rval)
803 return rval;
804
Nathan Scottce8e9222006-01-11 15:39:08 +1100805 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100807 for (i = 0; i < bp->b_page_count; i++) {
808 bp->b_pages[i] = mem_to_page((void *)pageaddr);
Dave Chinner0e6e8472011-03-26 09:16:45 +1100809 pageaddr += PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Dave Chinneraa0e8832012-04-23 15:58:52 +1000812 bp->b_io_length = BTOBB(len);
Dave Chinner4e94b712012-04-23 15:58:51 +1000813 bp->b_length = BTOBB(buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 return 0;
816}
817
818xfs_buf_t *
Dave Chinner686865f2010-09-24 20:07:47 +1000819xfs_buf_get_uncached(
820 struct xfs_buftarg *target,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000821 size_t numblks,
Dave Chinner686865f2010-09-24 20:07:47 +1000822 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Dave Chinnere70b73f2012-04-23 15:58:49 +1000824 unsigned long page_count;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000825 int error, i;
Dave Chinner3e85c862012-06-22 18:50:09 +1000826 struct xfs_buf *bp;
827 DEFINE_SINGLE_BUF_MAP(map, XFS_BUF_DADDR_NULL, numblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Dave Chinner3e85c862012-06-22 18:50:09 +1000829 bp = _xfs_buf_alloc(target, &map, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (unlikely(bp == NULL))
831 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Dave Chinnere70b73f2012-04-23 15:58:49 +1000833 page_count = PAGE_ALIGN(numblks << BBSHIFT) >> PAGE_SHIFT;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000834 error = _xfs_buf_get_pages(bp, page_count, 0);
835 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 goto fail_free_buf;
837
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000838 for (i = 0; i < page_count; i++) {
Dave Chinner686865f2010-09-24 20:07:47 +1000839 bp->b_pages[i] = alloc_page(xb_to_gfp(flags));
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000840 if (!bp->b_pages[i])
841 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000843 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Dave Chinner611c9942012-04-23 15:59:07 +1000845 error = _xfs_buf_map_pages(bp, 0);
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000846 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100847 xfs_warn(target->bt_mount,
848 "%s: failed to map pages\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Dave Chinner686865f2010-09-24 20:07:47 +1000852 trace_xfs_buf_get_uncached(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000856 while (--i >= 0)
857 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000858 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 fail_free_buf:
Dave Chinner3e85c862012-06-22 18:50:09 +1000860 xfs_buf_free_maps(bp);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000861 kmem_zone_free(xfs_buf_zone, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 fail:
863 return NULL;
864}
865
866/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 * Increment reference count on buffer, to hold the buffer concurrently
868 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 * Must hold the buffer already to call this function.
870 */
871void
Nathan Scottce8e9222006-01-11 15:39:08 +1100872xfs_buf_hold(
873 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000875 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100876 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
879/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100880 * Releases a hold on the specified buffer. If the
881 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 */
883void
Nathan Scottce8e9222006-01-11 15:39:08 +1100884xfs_buf_rele(
885 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Dave Chinner74f75a02010-09-24 19:59:04 +1000887 struct xfs_perag *pag = bp->b_pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000889 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Dave Chinner74f75a02010-09-24 19:59:04 +1000891 if (!pag) {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100892 ASSERT(list_empty(&bp->b_lru));
Dave Chinner74f75a02010-09-24 19:59:04 +1000893 ASSERT(RB_EMPTY_NODE(&bp->b_rbnode));
Nathan Scottfad3aa12006-02-01 12:14:52 +1100894 if (atomic_dec_and_test(&bp->b_hold))
895 xfs_buf_free(bp);
896 return;
897 }
898
Dave Chinner74f75a02010-09-24 19:59:04 +1000899 ASSERT(!RB_EMPTY_NODE(&bp->b_rbnode));
Dave Chinner430cbeb2010-12-02 16:30:55 +1100900
Lachlan McIlroy37906892008-08-13 15:42:10 +1000901 ASSERT(atomic_read(&bp->b_hold) > 0);
Dave Chinner74f75a02010-09-24 19:59:04 +1000902 if (atomic_dec_and_lock(&bp->b_hold, &pag->pag_buf_lock)) {
Christoph Hellwigbfc60172011-01-07 13:02:23 +0000903 if (!(bp->b_flags & XBF_STALE) &&
Dave Chinner430cbeb2010-12-02 16:30:55 +1100904 atomic_read(&bp->b_lru_ref)) {
905 xfs_buf_lru_add(bp);
906 spin_unlock(&pag->pag_buf_lock);
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100907 } else {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100908 xfs_buf_lru_del(bp);
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000909 ASSERT(!(bp->b_flags & _XBF_DELWRI_Q));
Dave Chinner74f75a02010-09-24 19:59:04 +1000910 rb_erase(&bp->b_rbnode, &pag->pag_buf_tree);
911 spin_unlock(&pag->pag_buf_lock);
912 xfs_perag_put(pag);
Nathan Scottce8e9222006-01-11 15:39:08 +1100913 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915 }
916}
917
918
919/*
Dave Chinner0e6e8472011-03-26 09:16:45 +1100920 * Lock a buffer object, if it is not already locked.
Dave Chinner90810b92010-11-30 15:16:16 +1100921 *
922 * If we come across a stale, pinned, locked buffer, we know that we are
923 * being asked to lock a buffer that has been reallocated. Because it is
924 * pinned, we know that the log has not been pushed to disk and hence it
925 * will still be locked. Rather than continuing to have trylock attempts
926 * fail until someone else pushes the log, push it ourselves before
927 * returning. This means that the xfsaild will not get stuck trying
928 * to push on stale inode buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 */
930int
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200931xfs_buf_trylock(
932 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
934 int locked;
935
Nathan Scottce8e9222006-01-11 15:39:08 +1100936 locked = down_trylock(&bp->b_sema) == 0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000937 if (locked)
Nathan Scottce8e9222006-01-11 15:39:08 +1100938 XB_SET_OWNER(bp);
Dave Chinner90810b92010-11-30 15:16:16 +1100939 else if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
940 xfs_log_force(bp->b_target->bt_mount, 0);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000941
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200942 trace_xfs_buf_trylock(bp, _RET_IP_);
943 return locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946/*
Dave Chinner0e6e8472011-03-26 09:16:45 +1100947 * Lock a buffer object.
Dave Chinnered3b4d62010-05-21 12:07:08 +1000948 *
949 * If we come across a stale, pinned, locked buffer, we know that we
950 * are being asked to lock a buffer that has been reallocated. Because
951 * it is pinned, we know that the log has not been pushed to disk and
952 * hence it will still be locked. Rather than sleeping until someone
953 * else pushes the log, push it ourselves before trying to get the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100955void
956xfs_buf_lock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200957 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000959 trace_xfs_buf_lock(bp, _RET_IP_);
960
Dave Chinnered3b4d62010-05-21 12:07:08 +1000961 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
Dave Chinnerebad8612010-09-22 10:47:20 +1000962 xfs_log_force(bp->b_target->bt_mount, 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100963 down(&bp->b_sema);
964 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000965
966 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969void
Nathan Scottce8e9222006-01-11 15:39:08 +1100970xfs_buf_unlock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200971 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Nathan Scottce8e9222006-01-11 15:39:08 +1100973 XB_CLEAR_OWNER(bp);
974 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000975
976 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977}
978
Nathan Scottce8e9222006-01-11 15:39:08 +1100979STATIC void
980xfs_buf_wait_unpin(
981 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
983 DECLARE_WAITQUEUE (wait, current);
984
Nathan Scottce8e9222006-01-11 15:39:08 +1100985 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return;
987
Nathan Scottce8e9222006-01-11 15:39:08 +1100988 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 for (;;) {
990 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100991 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 break;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100993 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100995 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 set_current_state(TASK_RUNNING);
997}
998
999/*
1000 * Buffer Utility Routines
1001 */
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001004xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +00001005 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006{
David Howellsc4028952006-11-22 14:57:56 +00001007 xfs_buf_t *bp =
1008 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Christoph Hellwig80f6c292010-08-18 05:29:11 -04001010 if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +11001011 (*(bp->b_iodone))(bp);
1012 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 xfs_buf_relse(bp);
1014}
1015
1016void
Nathan Scottce8e9222006-01-11 15:39:08 +11001017xfs_buf_ioend(
1018 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 int schedule)
1020{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001021 trace_xfs_buf_iodone(bp, _RET_IP_);
1022
Lachlan McIlroy77be55a2007-11-23 16:31:00 +11001023 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +11001024 if (bp->b_error == 0)
1025 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Nathan Scottce8e9222006-01-11 15:39:08 +11001027 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001029 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001030 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 } else {
David Howellsc4028952006-11-22 14:57:56 +00001032 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
1034 } else {
David Chinnerb4dd3302008-08-13 16:36:11 +10001035 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037}
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039void
Nathan Scottce8e9222006-01-11 15:39:08 +11001040xfs_buf_ioerror(
1041 xfs_buf_t *bp,
1042 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
1044 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001045 bp->b_error = (unsigned short)error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001046 trace_xfs_buf_ioerror(bp, error, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
1048
Christoph Hellwig901796a2011-10-10 16:52:49 +00001049void
1050xfs_buf_ioerror_alert(
1051 struct xfs_buf *bp,
1052 const char *func)
1053{
1054 xfs_alert(bp->b_target->bt_mount,
Dave Chinneraa0e8832012-04-23 15:58:52 +10001055"metadata I/O error: block 0x%llx (\"%s\") error %d numblks %d",
1056 (__uint64_t)XFS_BUF_ADDR(bp), func, bp->b_error, bp->b_length);
Christoph Hellwig901796a2011-10-10 16:52:49 +00001057}
1058
Christoph Hellwig4e234712010-01-13 22:17:56 +00001059/*
1060 * Called when we want to stop a buffer from getting written or read.
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001061 * We attach the EIO error, muck with its flags, and call xfs_buf_ioend
Christoph Hellwig4e234712010-01-13 22:17:56 +00001062 * so that the proper iodone callbacks get called.
1063 */
1064STATIC int
1065xfs_bioerror(
1066 xfs_buf_t *bp)
1067{
1068#ifdef XFSERRORDEBUG
1069 ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
1070#endif
1071
1072 /*
1073 * No need to wait until the buffer is unpinned, we aren't flushing it.
1074 */
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00001075 xfs_buf_ioerror(bp, EIO);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001076
1077 /*
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001078 * We're calling xfs_buf_ioend, so delete XBF_DONE flag.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001079 */
1080 XFS_BUF_UNREAD(bp);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001081 XFS_BUF_UNDONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00001082 xfs_buf_stale(bp);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001083
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001084 xfs_buf_ioend(bp, 0);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001085
1086 return EIO;
1087}
1088
1089/*
1090 * Same as xfs_bioerror, except that we are releasing the buffer
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001091 * here ourselves, and avoiding the xfs_buf_ioend call.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001092 * This is meant for userdata errors; metadata bufs come with
1093 * iodone functions attached, so that we can track down errors.
1094 */
1095STATIC int
1096xfs_bioerror_relse(
1097 struct xfs_buf *bp)
1098{
Chandra Seetharamaned432332011-07-22 23:39:39 +00001099 int64_t fl = bp->b_flags;
Christoph Hellwig4e234712010-01-13 22:17:56 +00001100 /*
1101 * No need to wait until the buffer is unpinned.
1102 * We aren't flushing it.
1103 *
1104 * chunkhold expects B_DONE to be set, whether
1105 * we actually finish the I/O or not. We don't want to
1106 * change that interface.
1107 */
1108 XFS_BUF_UNREAD(bp);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001109 XFS_BUF_DONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00001110 xfs_buf_stale(bp);
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02001111 bp->b_iodone = NULL;
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001112 if (!(fl & XBF_ASYNC)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001113 /*
1114 * Mark b_error and B_ERROR _both_.
1115 * Lot's of chunkcache code assumes that.
1116 * There's no reason to mark error for
1117 * ASYNC buffers.
1118 */
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00001119 xfs_buf_ioerror(bp, EIO);
Christoph Hellwig5fde0322011-10-10 16:52:44 +00001120 complete(&bp->b_iowait);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001121 } else {
1122 xfs_buf_relse(bp);
1123 }
1124
1125 return EIO;
1126}
1127
Christoph Hellwiga2dcf5d2012-07-13 02:24:10 -04001128STATIC int
Christoph Hellwig4e234712010-01-13 22:17:56 +00001129xfs_bdstrat_cb(
1130 struct xfs_buf *bp)
1131{
Dave Chinnerebad8612010-09-22 10:47:20 +10001132 if (XFS_FORCED_SHUTDOWN(bp->b_target->bt_mount)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001133 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1134 /*
1135 * Metadata write that didn't get logged but
1136 * written delayed anyway. These aren't associated
1137 * with a transaction, and can be ignored.
1138 */
1139 if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
1140 return xfs_bioerror_relse(bp);
1141 else
1142 return xfs_bioerror(bp);
1143 }
1144
1145 xfs_buf_iorequest(bp);
1146 return 0;
1147}
1148
Christoph Hellwiga2dcf5d2012-07-13 02:24:10 -04001149int
1150xfs_bwrite(
1151 struct xfs_buf *bp)
1152{
1153 int error;
1154
1155 ASSERT(xfs_buf_islocked(bp));
1156
1157 bp->b_flags |= XBF_WRITE;
1158 bp->b_flags &= ~(XBF_ASYNC | XBF_READ | _XBF_DELWRI_Q);
1159
1160 xfs_bdstrat_cb(bp);
1161
1162 error = xfs_buf_iowait(bp);
1163 if (error) {
1164 xfs_force_shutdown(bp->b_target->bt_mount,
1165 SHUTDOWN_META_IO_ERROR);
1166 }
1167 return error;
1168}
1169
Christoph Hellwig4e234712010-01-13 22:17:56 +00001170/*
1171 * Wrapper around bdstrat so that we can stop data from going to disk in case
1172 * we are shutting down the filesystem. Typically user data goes thru this
1173 * path; one of the exceptions is the superblock.
1174 */
1175void
1176xfsbdstrat(
1177 struct xfs_mount *mp,
1178 struct xfs_buf *bp)
1179{
1180 if (XFS_FORCED_SHUTDOWN(mp)) {
1181 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1182 xfs_bioerror_relse(bp);
1183 return;
1184 }
1185
1186 xfs_buf_iorequest(bp);
1187}
1188
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00001189STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001190_xfs_buf_ioend(
1191 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 int schedule)
1193{
Dave Chinner0e6e8472011-03-26 09:16:45 +11001194 if (atomic_dec_and_test(&bp->b_io_remaining) == 1)
Nathan Scottce8e9222006-01-11 15:39:08 +11001195 xfs_buf_ioend(bp, schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
1197
Al Viro782e3b32007-10-12 07:17:47 +01001198STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +11001199xfs_buf_bio_end_io(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 int error)
1202{
Nathan Scottce8e9222006-01-11 15:39:08 +11001203 xfs_buf_t *bp = (xfs_buf_t *)bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Dave Chinner37eb17e2012-11-12 22:09:46 +11001205 /*
1206 * don't overwrite existing errors - otherwise we can lose errors on
1207 * buffers that require multiple bios to complete.
1208 */
1209 if (!bp->b_error)
1210 xfs_buf_ioerror(bp, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Dave Chinner37eb17e2012-11-12 22:09:46 +11001212 if (!bp->b_error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
James Bottomley73c77e22010-01-25 11:42:24 -06001213 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1214
Nathan Scottce8e9222006-01-11 15:39:08 +11001215 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217}
1218
Dave Chinner3e85c862012-06-22 18:50:09 +10001219static void
1220xfs_buf_ioapply_map(
1221 struct xfs_buf *bp,
1222 int map,
1223 int *buf_offset,
1224 int *count,
1225 int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
Dave Chinner3e85c862012-06-22 18:50:09 +10001227 int page_index;
1228 int total_nr_pages = bp->b_page_count;
1229 int nr_pages;
1230 struct bio *bio;
1231 sector_t sector = bp->b_maps[map].bm_bn;
1232 int size;
1233 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Nathan Scottce8e9222006-01-11 15:39:08 +11001235 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Dave Chinner3e85c862012-06-22 18:50:09 +10001237 /* skip the pages in the buffer before the start offset */
1238 page_index = 0;
1239 offset = *buf_offset;
1240 while (offset >= PAGE_SIZE) {
1241 page_index++;
1242 offset -= PAGE_SIZE;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001243 }
1244
Dave Chinner3e85c862012-06-22 18:50:09 +10001245 /*
1246 * Limit the IO size to the length of the current vector, and update the
1247 * remaining IO count for the next time around.
1248 */
1249 size = min_t(int, BBTOB(bp->b_maps[map].bm_len), *count);
1250 *count -= size;
1251 *buf_offset += size;
Christoph Hellwig34951f52011-07-26 15:06:44 +00001252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001254 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1256 if (nr_pages > total_nr_pages)
1257 nr_pages = total_nr_pages;
1258
1259 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001260 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001262 bio->bi_end_io = xfs_buf_bio_end_io;
1263 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Dave Chinner0e6e8472011-03-26 09:16:45 +11001265
Dave Chinner3e85c862012-06-22 18:50:09 +10001266 for (; size && nr_pages; nr_pages--, page_index++) {
Dave Chinner0e6e8472011-03-26 09:16:45 +11001267 int rbytes, nbytes = PAGE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 if (nbytes > size)
1270 nbytes = size;
1271
Dave Chinner3e85c862012-06-22 18:50:09 +10001272 rbytes = bio_add_page(bio, bp->b_pages[page_index], nbytes,
1273 offset);
Nathan Scottce8e9222006-01-11 15:39:08 +11001274 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 break;
1276
1277 offset = 0;
Dave Chinneraa0e8832012-04-23 15:58:52 +10001278 sector += BTOBB(nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 size -= nbytes;
1280 total_nr_pages--;
1281 }
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 if (likely(bio->bi_size)) {
James Bottomley73c77e22010-01-25 11:42:24 -06001284 if (xfs_buf_is_vmapped(bp)) {
1285 flush_kernel_vmap_range(bp->b_addr,
1286 xfs_buf_vmap_len(bp));
1287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 submit_bio(rw, bio);
1289 if (size)
1290 goto next_chunk;
1291 } else {
Dave Chinner37eb17e2012-11-12 22:09:46 +11001292 /*
1293 * This is guaranteed not to be the last io reference count
1294 * because the caller (xfs_buf_iorequest) holds a count itself.
1295 */
1296 atomic_dec(&bp->b_io_remaining);
Nathan Scottce8e9222006-01-11 15:39:08 +11001297 xfs_buf_ioerror(bp, EIO);
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001298 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
Dave Chinner3e85c862012-06-22 18:50:09 +10001300
1301}
1302
1303STATIC void
1304_xfs_buf_ioapply(
1305 struct xfs_buf *bp)
1306{
1307 struct blk_plug plug;
1308 int rw;
1309 int offset;
1310 int size;
1311 int i;
1312
1313 if (bp->b_flags & XBF_WRITE) {
1314 if (bp->b_flags & XBF_SYNCIO)
1315 rw = WRITE_SYNC;
1316 else
1317 rw = WRITE;
1318 if (bp->b_flags & XBF_FUA)
1319 rw |= REQ_FUA;
1320 if (bp->b_flags & XBF_FLUSH)
1321 rw |= REQ_FLUSH;
1322 } else if (bp->b_flags & XBF_READ_AHEAD) {
1323 rw = READA;
1324 } else {
1325 rw = READ;
1326 }
1327
1328 /* we only use the buffer cache for meta-data */
1329 rw |= REQ_META;
1330
1331 /*
1332 * Walk all the vectors issuing IO on them. Set up the initial offset
1333 * into the buffer and the desired IO size before we start -
1334 * _xfs_buf_ioapply_vec() will modify them appropriately for each
1335 * subsequent call.
1336 */
1337 offset = bp->b_offset;
1338 size = BBTOB(bp->b_io_length);
1339 blk_start_plug(&plug);
1340 for (i = 0; i < bp->b_map_count; i++) {
1341 xfs_buf_ioapply_map(bp, i, &offset, &size, rw);
1342 if (bp->b_error)
1343 break;
1344 if (size <= 0)
1345 break; /* all done */
1346 }
1347 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
1349
Dave Chinner0e95f192012-04-23 15:58:46 +10001350void
Nathan Scottce8e9222006-01-11 15:39:08 +11001351xfs_buf_iorequest(
1352 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001354 trace_xfs_buf_iorequest(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001356 ASSERT(!(bp->b_flags & _XBF_DELWRI_Q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Christoph Hellwig375ec692011-08-23 08:28:03 +00001358 if (bp->b_flags & XBF_WRITE)
Nathan Scottce8e9222006-01-11 15:39:08 +11001359 xfs_buf_wait_unpin(bp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001360 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
1362 /* Set the count to 1 initially, this will stop an I/O
1363 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001364 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001366 atomic_set(&bp->b_io_remaining, 1);
1367 _xfs_buf_ioapply(bp);
Christoph Hellwig08023d62012-07-02 06:00:04 -04001368 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Nathan Scottce8e9222006-01-11 15:39:08 +11001370 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
1373/*
Dave Chinner0e95f192012-04-23 15:58:46 +10001374 * Waits for I/O to complete on the buffer supplied. It returns immediately if
1375 * no I/O is pending or there is already a pending error on the buffer. It
1376 * returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 */
1378int
Nathan Scottce8e9222006-01-11 15:39:08 +11001379xfs_buf_iowait(
1380 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001382 trace_xfs_buf_iowait(bp, _RET_IP_);
1383
Dave Chinner0e95f192012-04-23 15:58:46 +10001384 if (!bp->b_error)
1385 wait_for_completion(&bp->b_iowait);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001386
1387 trace_xfs_buf_iowait_done(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +11001388 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
1390
Nathan Scottce8e9222006-01-11 15:39:08 +11001391xfs_caddr_t
1392xfs_buf_offset(
1393 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 size_t offset)
1395{
1396 struct page *page;
1397
Dave Chinner611c9942012-04-23 15:59:07 +10001398 if (bp->b_addr)
Chandra Seetharaman62926042011-07-22 23:40:15 +00001399 return bp->b_addr + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Nathan Scottce8e9222006-01-11 15:39:08 +11001401 offset += bp->b_offset;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001402 page = bp->b_pages[offset >> PAGE_SHIFT];
1403 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404}
1405
1406/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 * Move data into or out of a buffer.
1408 */
1409void
Nathan Scottce8e9222006-01-11 15:39:08 +11001410xfs_buf_iomove(
1411 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 size_t boff, /* starting buffer offset */
1413 size_t bsize, /* length to copy */
Dave Chinnerb9c48642010-01-20 10:47:39 +11001414 void *data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001415 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
Dave Chinner795cac72012-04-23 15:58:53 +10001417 size_t bend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 bend = boff + bsize;
1420 while (boff < bend) {
Dave Chinner795cac72012-04-23 15:58:53 +10001421 struct page *page;
1422 int page_index, page_offset, csize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Dave Chinner795cac72012-04-23 15:58:53 +10001424 page_index = (boff + bp->b_offset) >> PAGE_SHIFT;
1425 page_offset = (boff + bp->b_offset) & ~PAGE_MASK;
1426 page = bp->b_pages[page_index];
1427 csize = min_t(size_t, PAGE_SIZE - page_offset,
1428 BBTOB(bp->b_io_length) - boff);
1429
1430 ASSERT((csize + page_offset) <= PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
1432 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001433 case XBRW_ZERO:
Dave Chinner795cac72012-04-23 15:58:53 +10001434 memset(page_address(page) + page_offset, 0, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001436 case XBRW_READ:
Dave Chinner795cac72012-04-23 15:58:53 +10001437 memcpy(data, page_address(page) + page_offset, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001439 case XBRW_WRITE:
Dave Chinner795cac72012-04-23 15:58:53 +10001440 memcpy(page_address(page) + page_offset, data, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 }
1442
1443 boff += csize;
1444 data += csize;
1445 }
1446}
1447
1448/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001449 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 */
1451
1452/*
Dave Chinner430cbeb2010-12-02 16:30:55 +11001453 * Wait for any bufs with callbacks that have been submitted but have not yet
1454 * returned. These buffers will have an elevated hold count, so wait on those
1455 * while freeing all the buffers only held by the LRU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 */
1457void
1458xfs_wait_buftarg(
Dave Chinner74f75a02010-09-24 19:59:04 +10001459 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
Dave Chinner430cbeb2010-12-02 16:30:55 +11001461 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Dave Chinner430cbeb2010-12-02 16:30:55 +11001463restart:
1464 spin_lock(&btp->bt_lru_lock);
1465 while (!list_empty(&btp->bt_lru)) {
1466 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1467 if (atomic_read(&bp->b_hold) > 1) {
1468 spin_unlock(&btp->bt_lru_lock);
Dave Chinner26af6552010-09-22 10:47:20 +10001469 delay(100);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001470 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001472 /*
Paul Bolle90802ed2011-12-05 13:00:34 +01001473 * clear the LRU reference count so the buffer doesn't get
Dave Chinner430cbeb2010-12-02 16:30:55 +11001474 * ignored in xfs_buf_rele().
1475 */
1476 atomic_set(&bp->b_lru_ref, 0);
1477 spin_unlock(&btp->bt_lru_lock);
1478 xfs_buf_rele(bp);
1479 spin_lock(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001481 spin_unlock(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
1483
Dave Chinnerff57ab22010-11-30 17:27:57 +11001484int
1485xfs_buftarg_shrink(
1486 struct shrinker *shrink,
Ying Han1495f232011-05-24 17:12:27 -07001487 struct shrink_control *sc)
David Chinnera6867a62006-01-11 15:37:58 +11001488{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001489 struct xfs_buftarg *btp = container_of(shrink,
1490 struct xfs_buftarg, bt_shrinker);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001491 struct xfs_buf *bp;
Ying Han1495f232011-05-24 17:12:27 -07001492 int nr_to_scan = sc->nr_to_scan;
Dave Chinner430cbeb2010-12-02 16:30:55 +11001493 LIST_HEAD(dispose);
1494
1495 if (!nr_to_scan)
1496 return btp->bt_lru_nr;
1497
1498 spin_lock(&btp->bt_lru_lock);
1499 while (!list_empty(&btp->bt_lru)) {
1500 if (nr_to_scan-- <= 0)
1501 break;
1502
1503 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1504
1505 /*
1506 * Decrement the b_lru_ref count unless the value is already
1507 * zero. If the value is already zero, we need to reclaim the
1508 * buffer, otherwise it gets another trip through the LRU.
1509 */
1510 if (!atomic_add_unless(&bp->b_lru_ref, -1, 0)) {
1511 list_move_tail(&bp->b_lru, &btp->bt_lru);
1512 continue;
1513 }
1514
1515 /*
1516 * remove the buffer from the LRU now to avoid needing another
1517 * lock round trip inside xfs_buf_rele().
1518 */
1519 list_move(&bp->b_lru, &dispose);
1520 btp->bt_lru_nr--;
Carlos Maiolino6fb8a902012-08-10 15:01:51 -03001521 bp->b_lru_flags |= _XBF_LRU_DISPOSE;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001522 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001523 spin_unlock(&btp->bt_lru_lock);
1524
1525 while (!list_empty(&dispose)) {
1526 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1527 list_del_init(&bp->b_lru);
1528 xfs_buf_rele(bp);
1529 }
1530
1531 return btp->bt_lru_nr;
David Chinnera6867a62006-01-11 15:37:58 +11001532}
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534void
1535xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001536 struct xfs_mount *mp,
1537 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001539 unregister_shrinker(&btp->bt_shrinker);
1540
Christoph Hellwigb7963132009-03-03 14:48:37 -05001541 if (mp->m_flags & XFS_MOUNT_BARRIER)
1542 xfs_blkdev_issue_flush(btp);
David Chinnera6867a62006-01-11 15:37:58 +11001543
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001544 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547STATIC int
1548xfs_setsize_buftarg_flags(
1549 xfs_buftarg_t *btp,
1550 unsigned int blocksize,
1551 unsigned int sectorsize,
1552 int verbose)
1553{
Nathan Scottce8e9222006-01-11 15:39:08 +11001554 btp->bt_bsize = blocksize;
1555 btp->bt_sshift = ffs(sectorsize) - 1;
1556 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Nathan Scottce8e9222006-01-11 15:39:08 +11001558 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Christoph Hellwig02b102d2011-10-10 16:52:51 +00001559 char name[BDEVNAME_SIZE];
1560
1561 bdevname(btp->bt_bdev, name);
1562
Dave Chinner4f107002011-03-07 10:00:35 +11001563 xfs_warn(btp->bt_mount,
1564 "Cannot set_blocksize to %u on device %s\n",
Christoph Hellwig02b102d2011-10-10 16:52:51 +00001565 sectorsize, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 return EINVAL;
1567 }
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 return 0;
1570}
1571
1572/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001573 * When allocating the initial buffer target we have not yet
1574 * read in the superblock, so don't know what sized sectors
1575 * are being used is at this early stage. Play safe.
1576 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577STATIC int
1578xfs_setsize_buftarg_early(
1579 xfs_buftarg_t *btp,
1580 struct block_device *bdev)
1581{
1582 return xfs_setsize_buftarg_flags(btp,
Dave Chinner0e6e8472011-03-26 09:16:45 +11001583 PAGE_SIZE, bdev_logical_block_size(bdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584}
1585
1586int
1587xfs_setsize_buftarg(
1588 xfs_buftarg_t *btp,
1589 unsigned int blocksize,
1590 unsigned int sectorsize)
1591{
1592 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1593}
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595xfs_buftarg_t *
1596xfs_alloc_buftarg(
Dave Chinnerebad8612010-09-22 10:47:20 +10001597 struct xfs_mount *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 struct block_device *bdev,
Jan Engelhardte2a07812010-03-23 09:52:55 +11001599 int external,
1600 const char *fsname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
1602 xfs_buftarg_t *btp;
1603
1604 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1605
Dave Chinnerebad8612010-09-22 10:47:20 +10001606 btp->bt_mount = mp;
Nathan Scottce8e9222006-01-11 15:39:08 +11001607 btp->bt_dev = bdev->bd_dev;
1608 btp->bt_bdev = bdev;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001609 btp->bt_bdi = blk_get_backing_dev_info(bdev);
1610 if (!btp->bt_bdi)
1611 goto error;
1612
Dave Chinner430cbeb2010-12-02 16:30:55 +11001613 INIT_LIST_HEAD(&btp->bt_lru);
1614 spin_lock_init(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (xfs_setsize_buftarg_early(btp, bdev))
1616 goto error;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001617 btp->bt_shrinker.shrink = xfs_buftarg_shrink;
1618 btp->bt_shrinker.seeks = DEFAULT_SEEKS;
1619 register_shrinker(&btp->bt_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 return btp;
1621
1622error:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001623 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 return NULL;
1625}
1626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001628 * Add a buffer to the delayed write list.
1629 *
1630 * This queues a buffer for writeout if it hasn't already been. Note that
1631 * neither this routine nor the buffer list submission functions perform
1632 * any internal synchronization. It is expected that the lists are thread-local
1633 * to the callers.
1634 *
1635 * Returns true if we queued up the buffer, or false if it already had
1636 * been on the buffer list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001638bool
Nathan Scottce8e9222006-01-11 15:39:08 +11001639xfs_buf_delwri_queue(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001640 struct xfs_buf *bp,
1641 struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001643 ASSERT(xfs_buf_islocked(bp));
1644 ASSERT(!(bp->b_flags & XBF_READ));
1645
1646 /*
1647 * If the buffer is already marked delwri it already is queued up
1648 * by someone else for imediate writeout. Just ignore it in that
1649 * case.
1650 */
1651 if (bp->b_flags & _XBF_DELWRI_Q) {
1652 trace_xfs_buf_delwri_queued(bp, _RET_IP_);
1653 return false;
1654 }
David Chinnera6867a62006-01-11 15:37:58 +11001655
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001656 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1657
Dave Chinnerd808f612010-02-02 10:13:42 +11001658 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001659 * If a buffer gets written out synchronously or marked stale while it
1660 * is on a delwri list we lazily remove it. To do this, the other party
1661 * clears the _XBF_DELWRI_Q flag but otherwise leaves the buffer alone.
1662 * It remains referenced and on the list. In a rare corner case it
1663 * might get readded to a delwri list after the synchronous writeout, in
1664 * which case we need just need to re-add the flag here.
Dave Chinnerd808f612010-02-02 10:13:42 +11001665 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001666 bp->b_flags |= _XBF_DELWRI_Q;
1667 if (list_empty(&bp->b_list)) {
1668 atomic_inc(&bp->b_hold);
1669 list_add_tail(&bp->b_list, list);
David Chinner585e6d82007-02-10 18:32:29 +11001670 }
David Chinner585e6d82007-02-10 18:32:29 +11001671
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001672 return true;
David Chinner585e6d82007-02-10 18:32:29 +11001673}
1674
Dave Chinner089716a2010-01-26 15:13:25 +11001675/*
1676 * Compare function is more complex than it needs to be because
1677 * the return value is only 32 bits and we are doing comparisons
1678 * on 64 bit values
1679 */
1680static int
1681xfs_buf_cmp(
1682 void *priv,
1683 struct list_head *a,
1684 struct list_head *b)
1685{
1686 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1687 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1688 xfs_daddr_t diff;
1689
Dave Chinnercbb7baa2012-06-22 18:50:08 +10001690 diff = ap->b_map.bm_bn - bp->b_map.bm_bn;
Dave Chinner089716a2010-01-26 15:13:25 +11001691 if (diff < 0)
1692 return -1;
1693 if (diff > 0)
1694 return 1;
1695 return 0;
1696}
1697
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001698static int
1699__xfs_buf_delwri_submit(
1700 struct list_head *buffer_list,
1701 struct list_head *io_list,
1702 bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001704 struct blk_plug plug;
1705 struct xfs_buf *bp, *n;
1706 int pinned = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001708 list_for_each_entry_safe(bp, n, buffer_list, b_list) {
1709 if (!wait) {
1710 if (xfs_buf_ispinned(bp)) {
1711 pinned++;
1712 continue;
1713 }
1714 if (!xfs_buf_trylock(bp))
1715 continue;
1716 } else {
1717 xfs_buf_lock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001720 /*
1721 * Someone else might have written the buffer synchronously or
1722 * marked it stale in the meantime. In that case only the
1723 * _XBF_DELWRI_Q flag got cleared, and we have to drop the
1724 * reference and remove it from the list here.
1725 */
1726 if (!(bp->b_flags & _XBF_DELWRI_Q)) {
1727 list_del_init(&bp->b_list);
1728 xfs_buf_relse(bp);
1729 continue;
1730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001732 list_move_tail(&bp->b_list, io_list);
1733 trace_xfs_buf_delwri_split(bp, _RET_IP_);
1734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001736 list_sort(NULL, io_list, xfs_buf_cmp);
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001737
1738 blk_start_plug(&plug);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001739 list_for_each_entry_safe(bp, n, io_list, b_list) {
1740 bp->b_flags &= ~(_XBF_DELWRI_Q | XBF_ASYNC);
1741 bp->b_flags |= XBF_WRITE;
1742
1743 if (!wait) {
1744 bp->b_flags |= XBF_ASYNC;
1745 list_del_init(&bp->b_list);
Dave Chinner089716a2010-01-26 15:13:25 +11001746 }
Christoph Hellwig939d7232010-07-20 17:51:16 +10001747 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 }
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001749 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001751 return pinned;
1752}
Nathan Scottf07c2252006-09-28 10:52:15 +10001753
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001754/*
1755 * Write out a buffer list asynchronously.
1756 *
1757 * This will take the @buffer_list, write all non-locked and non-pinned buffers
1758 * out and not wait for I/O completion on any of the buffers. This interface
1759 * is only safely useable for callers that can track I/O completion by higher
1760 * level means, e.g. AIL pushing as the @buffer_list is consumed in this
1761 * function.
1762 */
1763int
1764xfs_buf_delwri_submit_nowait(
1765 struct list_head *buffer_list)
1766{
1767 LIST_HEAD (io_list);
1768 return __xfs_buf_delwri_submit(buffer_list, &io_list, false);
1769}
1770
1771/*
1772 * Write out a buffer list synchronously.
1773 *
1774 * This will take the @buffer_list, write all buffers out and wait for I/O
1775 * completion on all of the buffers. @buffer_list is consumed by the function,
1776 * so callers must have some other way of tracking buffers if they require such
1777 * functionality.
1778 */
1779int
1780xfs_buf_delwri_submit(
1781 struct list_head *buffer_list)
1782{
1783 LIST_HEAD (io_list);
1784 int error = 0, error2;
1785 struct xfs_buf *bp;
1786
1787 __xfs_buf_delwri_submit(buffer_list, &io_list, true);
1788
1789 /* Wait for IO to complete. */
1790 while (!list_empty(&io_list)) {
1791 bp = list_first_entry(&io_list, struct xfs_buf, b_list);
1792
1793 list_del_init(&bp->b_list);
1794 error2 = xfs_buf_iowait(bp);
1795 xfs_buf_relse(bp);
1796 if (!error)
1797 error = error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
1799
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001800 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001803int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001804xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
Nathan Scott87582802006-03-14 13:18:19 +11001806 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1807 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001808 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001809 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001810
Dave Chinner51749e42010-09-08 09:00:22 +00001811 xfslogd_workqueue = alloc_workqueue("xfslogd",
Tejun Heo6370a6a2010-10-11 15:12:27 +02001812 WQ_MEM_RECLAIM | WQ_HIGHPRI, 1);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001813 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001814 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001816 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001818 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001819 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001820 out:
Nathan Scott87582802006-03-14 13:18:19 +11001821 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822}
1823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824void
Nathan Scottce8e9222006-01-11 15:39:08 +11001825xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001827 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001828 kmem_zone_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829}