blob: 39c5d7622dec301d1414e73e9215bf1e69823a8b [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++;
99 }
100 spin_unlock(&btp->bt_lru_lock);
101}
102
103/*
104 * xfs_buf_lru_del - remove a buffer from the LRU
105 *
106 * The unlocked check is safe here because it only occurs when there are not
107 * b_lru_ref counts left on the inode under the pag->pag_buf_lock. it is there
108 * to optimise the shrinker removing the buffer from the LRU and calling
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300109 * xfs_buf_free(). i.e. it removes an unnecessary round trip on the
Dave Chinner430cbeb2010-12-02 16:30:55 +1100110 * bt_lru_lock.
111 */
112STATIC void
113xfs_buf_lru_del(
114 struct xfs_buf *bp)
115{
116 struct xfs_buftarg *btp = bp->b_target;
117
118 if (list_empty(&bp->b_lru))
119 return;
120
121 spin_lock(&btp->bt_lru_lock);
122 if (!list_empty(&bp->b_lru)) {
123 list_del_init(&bp->b_lru);
124 btp->bt_lru_nr--;
125 }
126 spin_unlock(&btp->bt_lru_lock);
127}
128
129/*
130 * When we mark a buffer stale, we remove the buffer from the LRU and clear the
131 * b_lru_ref count so that the buffer is freed immediately when the buffer
132 * reference count falls to zero. If the buffer is already on the LRU, we need
133 * to remove the reference that LRU holds on the buffer.
134 *
135 * This prevents build-up of stale buffers on the LRU.
136 */
137void
138xfs_buf_stale(
139 struct xfs_buf *bp)
140{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000141 ASSERT(xfs_buf_islocked(bp));
142
Dave Chinner430cbeb2010-12-02 16:30:55 +1100143 bp->b_flags |= XBF_STALE;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000144
145 /*
146 * Clear the delwri status so that a delwri queue walker will not
147 * flush this buffer to disk now that it is stale. The delwri queue has
148 * a reference to the buffer, so this is safe to do.
149 */
150 bp->b_flags &= ~_XBF_DELWRI_Q;
151
Dave Chinner430cbeb2010-12-02 16:30:55 +1100152 atomic_set(&(bp)->b_lru_ref, 0);
153 if (!list_empty(&bp->b_lru)) {
154 struct xfs_buftarg *btp = bp->b_target;
155
156 spin_lock(&btp->bt_lru_lock);
157 if (!list_empty(&bp->b_lru)) {
158 list_del_init(&bp->b_lru);
159 btp->bt_lru_nr--;
160 atomic_dec(&bp->b_hold);
161 }
162 spin_unlock(&btp->bt_lru_lock);
163 }
164 ASSERT(atomic_read(&bp->b_hold) >= 1);
165}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Dave Chinner3e85c862012-06-22 18:50:09 +1000167static int
168xfs_buf_get_maps(
169 struct xfs_buf *bp,
170 int map_count)
171{
172 ASSERT(bp->b_maps == NULL);
173 bp->b_map_count = map_count;
174
175 if (map_count == 1) {
176 bp->b_maps = &bp->b_map;
177 return 0;
178 }
179
180 bp->b_maps = kmem_zalloc(map_count * sizeof(struct xfs_buf_map),
181 KM_NOFS);
182 if (!bp->b_maps)
183 return ENOMEM;
184 return 0;
185}
186
187/*
188 * Frees b_pages if it was allocated.
189 */
190static void
191xfs_buf_free_maps(
192 struct xfs_buf *bp)
193{
194 if (bp->b_maps != &bp->b_map) {
195 kmem_free(bp->b_maps);
196 bp->b_maps = NULL;
197 }
198}
199
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000200struct xfs_buf *
Dave Chinner3e85c862012-06-22 18:50:09 +1000201_xfs_buf_alloc(
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000202 struct xfs_buftarg *target,
Dave Chinner3e85c862012-06-22 18:50:09 +1000203 struct xfs_buf_map *map,
204 int nmaps,
Nathan Scottce8e9222006-01-11 15:39:08 +1100205 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000207 struct xfs_buf *bp;
Dave Chinner3e85c862012-06-22 18:50:09 +1000208 int error;
209 int i;
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000210
Dave Chinneraa5c1582012-04-23 15:58:56 +1000211 bp = kmem_zone_zalloc(xfs_buf_zone, KM_NOFS);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000212 if (unlikely(!bp))
213 return NULL;
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 /*
Dave Chinner12bcb3f2012-04-23 15:59:05 +1000216 * We don't want certain flags to appear in b_flags unless they are
217 * specifically set by later operations on the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 */
Dave Chinner611c9942012-04-23 15:59:07 +1000219 flags &= ~(XBF_UNMAPPED | XBF_TRYLOCK | XBF_ASYNC | XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Nathan Scottce8e9222006-01-11 15:39:08 +1100221 atomic_set(&bp->b_hold, 1);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100222 atomic_set(&bp->b_lru_ref, 1);
David Chinnerb4dd3302008-08-13 16:36:11 +1000223 init_completion(&bp->b_iowait);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100224 INIT_LIST_HEAD(&bp->b_lru);
Nathan Scottce8e9222006-01-11 15:39:08 +1100225 INIT_LIST_HEAD(&bp->b_list);
Dave Chinner74f75a02010-09-24 19:59:04 +1000226 RB_CLEAR_NODE(&bp->b_rbnode);
Thomas Gleixnera731cd112010-09-07 14:33:15 +0000227 sema_init(&bp->b_sema, 0); /* held, no waiters */
Nathan Scottce8e9222006-01-11 15:39:08 +1100228 XB_SET_OWNER(bp);
229 bp->b_target = target;
Dave Chinner3e85c862012-06-22 18:50:09 +1000230 bp->b_flags = flags;
Dave Chinnerde1cbee2012-04-23 15:58:50 +1000231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 /*
Dave Chinneraa0e8832012-04-23 15:58:52 +1000233 * Set length and io_length to the same value initially.
234 * I/O routines should use io_length, which will be the same in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 * most cases but may be reset (e.g. XFS recovery).
236 */
Dave Chinner3e85c862012-06-22 18:50:09 +1000237 error = xfs_buf_get_maps(bp, nmaps);
238 if (error) {
239 kmem_zone_free(xfs_buf_zone, bp);
240 return NULL;
241 }
242
243 bp->b_bn = map[0].bm_bn;
244 bp->b_length = 0;
245 for (i = 0; i < nmaps; i++) {
246 bp->b_maps[i].bm_bn = map[i].bm_bn;
247 bp->b_maps[i].bm_len = map[i].bm_len;
248 bp->b_length += map[i].bm_len;
249 }
250 bp->b_io_length = bp->b_length;
251
Nathan Scottce8e9222006-01-11 15:39:08 +1100252 atomic_set(&bp->b_pin_count, 0);
253 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Nathan Scottce8e9222006-01-11 15:39:08 +1100255 XFS_STATS_INC(xb_create);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000256 trace_xfs_buf_init(bp, _RET_IP_);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000257
258 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100262 * Allocate a page array capable of holding a specified number
263 * of pages, and point the page buf at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 */
265STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100266_xfs_buf_get_pages(
267 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 int page_count,
Nathan Scottce8e9222006-01-11 15:39:08 +1100269 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 /* Make sure that we have a page list */
Nathan Scottce8e9222006-01-11 15:39:08 +1100272 if (bp->b_pages == NULL) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100273 bp->b_page_count = page_count;
274 if (page_count <= XB_PAGES) {
275 bp->b_pages = bp->b_page_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100277 bp->b_pages = kmem_alloc(sizeof(struct page *) *
Dave Chinneraa5c1582012-04-23 15:58:56 +1000278 page_count, KM_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +1100279 if (bp->b_pages == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return -ENOMEM;
281 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100282 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284 return 0;
285}
286
287/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100288 * Frees b_pages if it was allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 */
290STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100291_xfs_buf_free_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 xfs_buf_t *bp)
293{
Nathan Scottce8e9222006-01-11 15:39:08 +1100294 if (bp->b_pages != bp->b_page_array) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000295 kmem_free(bp->b_pages);
Dave Chinner3fc98b12009-12-14 23:11:57 +0000296 bp->b_pages = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298}
299
300/*
301 * Releases the specified buffer.
302 *
303 * The modification state of any associated pages is left unchanged.
Nathan Scottce8e9222006-01-11 15:39:08 +1100304 * The buffer most not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 * hashed and refcounted buffers
306 */
307void
Nathan Scottce8e9222006-01-11 15:39:08 +1100308xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 xfs_buf_t *bp)
310{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000311 trace_xfs_buf_free(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Dave Chinner430cbeb2010-12-02 16:30:55 +1100313 ASSERT(list_empty(&bp->b_lru));
314
Dave Chinner0e6e8472011-03-26 09:16:45 +1100315 if (bp->b_flags & _XBF_PAGES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 uint i;
317
James Bottomley73c77e22010-01-25 11:42:24 -0600318 if (xfs_buf_is_vmapped(bp))
Alex Elder8a262e52010-03-16 18:55:56 +0000319 vm_unmap_ram(bp->b_addr - bp->b_offset,
320 bp->b_page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Nathan Scott948ecdb2006-09-28 11:03:13 +1000322 for (i = 0; i < bp->b_page_count; i++) {
323 struct page *page = bp->b_pages[i];
324
Dave Chinner0e6e8472011-03-26 09:16:45 +1100325 __free_page(page);
Nathan Scott948ecdb2006-09-28 11:03:13 +1000326 }
Dave Chinner0e6e8472011-03-26 09:16:45 +1100327 } else if (bp->b_flags & _XBF_KMEM)
328 kmem_free(bp->b_addr);
Dave Chinner3fc98b12009-12-14 23:11:57 +0000329 _xfs_buf_free_pages(bp);
Dave Chinner3e85c862012-06-22 18:50:09 +1000330 xfs_buf_free_maps(bp);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000331 kmem_zone_free(xfs_buf_zone, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
334/*
Dave Chinner0e6e8472011-03-26 09:16:45 +1100335 * Allocates all the pages for buffer in question and builds it's page list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 */
337STATIC int
Dave Chinner0e6e8472011-03-26 09:16:45 +1100338xfs_buf_allocate_memory(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 xfs_buf_t *bp,
340 uint flags)
341{
Dave Chinneraa0e8832012-04-23 15:58:52 +1000342 size_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100344 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 unsigned short page_count, i;
Dave Chinner795cac72012-04-23 15:58:53 +1000346 xfs_off_t start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 int error;
348
Dave Chinner0e6e8472011-03-26 09:16:45 +1100349 /*
350 * for buffers that are contained within a single page, just allocate
351 * the memory from the heap - there's no need for the complexity of
352 * page arrays to keep allocation down to order 0.
353 */
Dave Chinner795cac72012-04-23 15:58:53 +1000354 size = BBTOB(bp->b_length);
355 if (size < PAGE_SIZE) {
Dave Chinneraa5c1582012-04-23 15:58:56 +1000356 bp->b_addr = kmem_alloc(size, KM_NOFS);
Dave Chinner0e6e8472011-03-26 09:16:45 +1100357 if (!bp->b_addr) {
358 /* low memory - use alloc_page loop instead */
359 goto use_alloc_page;
360 }
361
Dave Chinner795cac72012-04-23 15:58:53 +1000362 if (((unsigned long)(bp->b_addr + size - 1) & PAGE_MASK) !=
Dave Chinner0e6e8472011-03-26 09:16:45 +1100363 ((unsigned long)bp->b_addr & PAGE_MASK)) {
364 /* b_addr spans two pages - use alloc_page instead */
365 kmem_free(bp->b_addr);
366 bp->b_addr = NULL;
367 goto use_alloc_page;
368 }
369 bp->b_offset = offset_in_page(bp->b_addr);
370 bp->b_pages = bp->b_page_array;
371 bp->b_pages[0] = virt_to_page(bp->b_addr);
372 bp->b_page_count = 1;
Dave Chinner611c9942012-04-23 15:59:07 +1000373 bp->b_flags |= _XBF_KMEM;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100374 return 0;
375 }
376
377use_alloc_page:
Dave Chinnercbb7baa2012-06-22 18:50:08 +1000378 start = BBTOB(bp->b_map.bm_bn) >> PAGE_SHIFT;
379 end = (BBTOB(bp->b_map.bm_bn + bp->b_length) + PAGE_SIZE - 1)
380 >> PAGE_SHIFT;
Dave Chinner795cac72012-04-23 15:58:53 +1000381 page_count = end - start;
Nathan Scottce8e9222006-01-11 15:39:08 +1100382 error = _xfs_buf_get_pages(bp, page_count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (unlikely(error))
384 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Nathan Scottce8e9222006-01-11 15:39:08 +1100386 offset = bp->b_offset;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100387 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Nathan Scottce8e9222006-01-11 15:39:08 +1100389 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 struct page *page;
391 uint retries = 0;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100392retry:
393 page = alloc_page(gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100395 if (flags & XBF_READ_AHEAD) {
396 bp->b_page_count = i;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100397 error = ENOMEM;
398 goto out_free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400
401 /*
402 * This could deadlock.
403 *
404 * But until all the XFS lowlevel code is revamped to
405 * handle buffer allocation failures we can't do much.
406 */
407 if (!(++retries % 100))
Dave Chinner4f107002011-03-07 10:00:35 +1100408 xfs_err(NULL,
409 "possible memory allocation deadlock in %s (mode:0x%x)",
Harvey Harrison34a622b2008-04-10 12:19:21 +1000410 __func__, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Nathan Scottce8e9222006-01-11 15:39:08 +1100412 XFS_STATS_INC(xb_page_retries);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200413 congestion_wait(BLK_RW_ASYNC, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 goto retry;
415 }
416
Nathan Scottce8e9222006-01-11 15:39:08 +1100417 XFS_STATS_INC(xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Dave Chinner0e6e8472011-03-26 09:16:45 +1100419 nbytes = min_t(size_t, size, PAGE_SIZE - offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 size -= nbytes;
Nathan Scottce8e9222006-01-11 15:39:08 +1100421 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 offset = 0;
423 }
Dave Chinner0e6e8472011-03-26 09:16:45 +1100424 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Dave Chinner0e6e8472011-03-26 09:16:45 +1100426out_free_pages:
427 for (i = 0; i < bp->b_page_count; i++)
428 __free_page(bp->b_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return error;
430}
431
432/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300433 * Map buffer into kernel address-space if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 */
435STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100436_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 xfs_buf_t *bp,
438 uint flags)
439{
Dave Chinner0e6e8472011-03-26 09:16:45 +1100440 ASSERT(bp->b_flags & _XBF_PAGES);
Nathan Scottce8e9222006-01-11 15:39:08 +1100441 if (bp->b_page_count == 1) {
Dave Chinner0e6e8472011-03-26 09:16:45 +1100442 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100443 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
Dave Chinner611c9942012-04-23 15:59:07 +1000444 } else if (flags & XBF_UNMAPPED) {
445 bp->b_addr = NULL;
446 } else {
Dave Chinnera19fb382011-03-26 09:13:42 +1100447 int retried = 0;
448
449 do {
450 bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
451 -1, PAGE_KERNEL);
452 if (bp->b_addr)
453 break;
454 vm_unmap_aliases();
455 } while (retried++ <= 1);
456
457 if (!bp->b_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100459 bp->b_addr += bp->b_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
461
462 return 0;
463}
464
465/*
466 * Finding and Reading Buffers
467 */
468
469/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100470 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 * a given range of an inode. The buffer is returned
Chandra Seetharamaneabbaf12011-09-08 20:18:50 +0000472 * locked. No I/O is implied by this call.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 */
474xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100475_xfs_buf_find(
Dave Chinnere70b73f2012-04-23 15:58:49 +1000476 struct xfs_buftarg *btp,
Dave Chinner3e85c862012-06-22 18:50:09 +1000477 struct xfs_buf_map *map,
478 int nmaps,
Nathan Scottce8e9222006-01-11 15:39:08 +1100479 xfs_buf_flags_t flags,
480 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Dave Chinnere70b73f2012-04-23 15:58:49 +1000482 size_t numbytes;
Dave Chinner74f75a02010-09-24 19:59:04 +1000483 struct xfs_perag *pag;
484 struct rb_node **rbp;
485 struct rb_node *parent;
486 xfs_buf_t *bp;
Dave Chinner3e85c862012-06-22 18:50:09 +1000487 xfs_daddr_t blkno = map[0].bm_bn;
488 int numblks = 0;
489 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Dave Chinner3e85c862012-06-22 18:50:09 +1000491 for (i = 0; i < nmaps; i++)
492 numblks += map[i].bm_len;
Dave Chinnere70b73f2012-04-23 15:58:49 +1000493 numbytes = BBTOB(numblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 /* Check for IOs smaller than the sector size / not sector aligned */
Dave Chinnere70b73f2012-04-23 15:58:49 +1000496 ASSERT(!(numbytes < (1 << btp->bt_sshift)));
Dave Chinnerde1cbee2012-04-23 15:58:50 +1000497 ASSERT(!(BBTOB(blkno) & (xfs_off_t)btp->bt_smask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Dave Chinner74f75a02010-09-24 19:59:04 +1000499 /* get tree root */
500 pag = xfs_perag_get(btp->bt_mount,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000501 xfs_daddr_to_agno(btp->bt_mount, blkno));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Dave Chinner74f75a02010-09-24 19:59:04 +1000503 /* walk tree */
504 spin_lock(&pag->pag_buf_lock);
505 rbp = &pag->pag_buf_tree.rb_node;
506 parent = NULL;
507 bp = NULL;
508 while (*rbp) {
509 parent = *rbp;
510 bp = rb_entry(parent, struct xfs_buf, b_rbnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Dave Chinnerde1cbee2012-04-23 15:58:50 +1000512 if (blkno < bp->b_bn)
Dave Chinner74f75a02010-09-24 19:59:04 +1000513 rbp = &(*rbp)->rb_left;
Dave Chinnerde1cbee2012-04-23 15:58:50 +1000514 else if (blkno > bp->b_bn)
Dave Chinner74f75a02010-09-24 19:59:04 +1000515 rbp = &(*rbp)->rb_right;
516 else {
517 /*
Dave Chinnerde1cbee2012-04-23 15:58:50 +1000518 * found a block number match. If the range doesn't
Dave Chinner74f75a02010-09-24 19:59:04 +1000519 * match, the only way this is allowed is if the buffer
520 * in the cache is stale and the transaction that made
521 * it stale has not yet committed. i.e. we are
522 * reallocating a busy extent. Skip this buffer and
523 * continue searching to the right for an exact match.
524 */
Dave Chinner4e94b712012-04-23 15:58:51 +1000525 if (bp->b_length != numblks) {
Dave Chinner74f75a02010-09-24 19:59:04 +1000526 ASSERT(bp->b_flags & XBF_STALE);
527 rbp = &(*rbp)->rb_right;
528 continue;
529 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100530 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 goto found;
532 }
533 }
534
535 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100536 if (new_bp) {
Dave Chinner74f75a02010-09-24 19:59:04 +1000537 rb_link_node(&new_bp->b_rbnode, parent, rbp);
538 rb_insert_color(&new_bp->b_rbnode, &pag->pag_buf_tree);
539 /* the buffer keeps the perag reference until it is freed */
540 new_bp->b_pag = pag;
541 spin_unlock(&pag->pag_buf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100543 XFS_STATS_INC(xb_miss_locked);
Dave Chinner74f75a02010-09-24 19:59:04 +1000544 spin_unlock(&pag->pag_buf_lock);
545 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100547 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549found:
Dave Chinner74f75a02010-09-24 19:59:04 +1000550 spin_unlock(&pag->pag_buf_lock);
551 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200553 if (!xfs_buf_trylock(bp)) {
554 if (flags & XBF_TRYLOCK) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100555 xfs_buf_rele(bp);
556 XFS_STATS_INC(xb_busy_locked);
557 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200559 xfs_buf_lock(bp);
560 XFS_STATS_INC(xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
562
Dave Chinner0e6e8472011-03-26 09:16:45 +1100563 /*
564 * if the buffer is stale, clear all the external state associated with
565 * it. We need to keep flags such as how we allocated the buffer memory
566 * intact here.
567 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100568 if (bp->b_flags & XBF_STALE) {
569 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
Dave Chinner611c9942012-04-23 15:59:07 +1000570 bp->b_flags &= _XBF_KMEM | _XBF_PAGES;
David Chinner2f926582005-09-05 08:33:35 +1000571 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000572
573 trace_xfs_buf_find(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100574 XFS_STATS_INC(xb_get_locked);
575 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
578/*
Dave Chinner38158322011-09-30 04:45:02 +0000579 * Assembles a buffer covering the specified range. The code is optimised for
580 * cache hits, as metadata intensive workloads will see 3 orders of magnitude
581 * more hits than misses.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 */
Dave Chinner38158322011-09-30 04:45:02 +0000583struct xfs_buf *
Dave Chinner6dde2702012-06-22 18:50:10 +1000584xfs_buf_get_map(
585 struct xfs_buftarg *target,
586 struct xfs_buf_map *map,
587 int nmaps,
Nathan Scottce8e9222006-01-11 15:39:08 +1100588 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Dave Chinner38158322011-09-30 04:45:02 +0000590 struct xfs_buf *bp;
591 struct xfs_buf *new_bp;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100592 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Dave Chinner6dde2702012-06-22 18:50:10 +1000594 bp = _xfs_buf_find(target, map, nmaps, flags, NULL);
Dave Chinner38158322011-09-30 04:45:02 +0000595 if (likely(bp))
596 goto found;
597
Dave Chinner6dde2702012-06-22 18:50:10 +1000598 new_bp = _xfs_buf_alloc(target, map, nmaps, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100599 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return NULL;
601
Dave Chinnerfe2429b2012-04-23 15:58:45 +1000602 error = xfs_buf_allocate_memory(new_bp, flags);
603 if (error) {
Dave Chinner3e85c862012-06-22 18:50:09 +1000604 xfs_buf_free(new_bp);
Dave Chinner38158322011-09-30 04:45:02 +0000605 return NULL;
606 }
607
Dave Chinner6dde2702012-06-22 18:50:10 +1000608 bp = _xfs_buf_find(target, map, nmaps, flags, new_bp);
Dave Chinnerfe2429b2012-04-23 15:58:45 +1000609 if (!bp) {
610 xfs_buf_free(new_bp);
611 return NULL;
612 }
613
614 if (bp != new_bp)
615 xfs_buf_free(new_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Dave Chinner38158322011-09-30 04:45:02 +0000617found:
Dave Chinner611c9942012-04-23 15:59:07 +1000618 if (!bp->b_addr) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100619 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100621 xfs_warn(target->bt_mount,
622 "%s: failed to map pages\n", __func__);
Dave Chinnera8acad72012-04-23 15:58:54 +1000623 xfs_buf_relse(bp);
624 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626 }
627
Nathan Scottce8e9222006-01-11 15:39:08 +1100628 XFS_STATS_INC(xb_get);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000629 trace_xfs_buf_get(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100630 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100633STATIC int
634_xfs_buf_read(
635 xfs_buf_t *bp,
636 xfs_buf_flags_t flags)
637{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000638 ASSERT(!(flags & XBF_WRITE));
Dave Chinnercbb7baa2012-06-22 18:50:08 +1000639 ASSERT(bp->b_map.bm_bn != XFS_BUF_DADDR_NULL);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100640
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000641 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_READ_AHEAD);
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +0200642 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | XBF_READ_AHEAD);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100643
Dave Chinner0e95f192012-04-23 15:58:46 +1000644 xfs_buf_iorequest(bp);
645 if (flags & XBF_ASYNC)
646 return 0;
Dave Chinnerec53d1d2010-07-20 17:52:59 +1000647 return xfs_buf_iowait(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100648}
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650xfs_buf_t *
Dave Chinner6dde2702012-06-22 18:50:10 +1000651xfs_buf_read_map(
652 struct xfs_buftarg *target,
653 struct xfs_buf_map *map,
654 int nmaps,
Nathan Scottce8e9222006-01-11 15:39:08 +1100655 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Dave Chinner6dde2702012-06-22 18:50:10 +1000657 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Nathan Scottce8e9222006-01-11 15:39:08 +1100659 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Dave Chinner6dde2702012-06-22 18:50:10 +1000661 bp = xfs_buf_get_map(target, map, nmaps, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100662 if (bp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000663 trace_xfs_buf_read(bp, flags, _RET_IP_);
664
Nathan Scottce8e9222006-01-11 15:39:08 +1100665 if (!XFS_BUF_ISDONE(bp)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100666 XFS_STATS_INC(xb_get_read);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100667 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100668 } else if (flags & XBF_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 /*
670 * Read ahead call which is already satisfied,
671 * drop the buffer
672 */
Dave Chinnera8acad72012-04-23 15:58:54 +1000673 xfs_buf_relse(bp);
674 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100677 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679 }
680
Nathan Scottce8e9222006-01-11 15:39:08 +1100681 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
684/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100685 * If we are not low on memory then do the readahead in a deadlock
686 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 */
688void
Dave Chinner6dde2702012-06-22 18:50:10 +1000689xfs_buf_readahead_map(
690 struct xfs_buftarg *target,
691 struct xfs_buf_map *map,
692 int nmaps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Dave Chinner0e6e8472011-03-26 09:16:45 +1100694 if (bdi_read_congested(target->bt_bdi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return;
696
Dave Chinner6dde2702012-06-22 18:50:10 +1000697 xfs_buf_read_map(target, map, nmaps,
Dave Chinneraa5c1582012-04-23 15:58:56 +1000698 XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
Dave Chinner5adc94c2010-09-24 21:58:31 +1000701/*
702 * Read an uncached buffer from disk. Allocates and returns a locked
703 * buffer containing the disk contents or nothing.
704 */
705struct xfs_buf *
706xfs_buf_read_uncached(
Dave Chinner5adc94c2010-09-24 21:58:31 +1000707 struct xfs_buftarg *target,
708 xfs_daddr_t daddr,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000709 size_t numblks,
Dave Chinner5adc94c2010-09-24 21:58:31 +1000710 int flags)
711{
712 xfs_buf_t *bp;
713 int error;
714
Dave Chinnere70b73f2012-04-23 15:58:49 +1000715 bp = xfs_buf_get_uncached(target, numblks, flags);
Dave Chinner5adc94c2010-09-24 21:58:31 +1000716 if (!bp)
717 return NULL;
718
719 /* set up the buffer for a read IO */
Dave Chinner3e85c862012-06-22 18:50:09 +1000720 ASSERT(bp->b_map_count == 1);
721 bp->b_bn = daddr;
722 bp->b_maps[0].bm_bn = daddr;
Dave Chinnercbb7baa2012-06-22 18:50:08 +1000723 bp->b_flags |= XBF_READ;
Dave Chinner5adc94c2010-09-24 21:58:31 +1000724
Dave Chinnere70b73f2012-04-23 15:58:49 +1000725 xfsbdstrat(target->bt_mount, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +0000726 error = xfs_buf_iowait(bp);
Dave Chinner0e95f192012-04-23 15:58:46 +1000727 if (error) {
Dave Chinner5adc94c2010-09-24 21:58:31 +1000728 xfs_buf_relse(bp);
729 return NULL;
730 }
731 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Dave Chinner44396472011-04-21 09:34:27 +0000734/*
735 * Return a buffer allocated as an empty buffer and associated to external
736 * memory via xfs_buf_associate_memory() back to it's empty state.
737 */
738void
739xfs_buf_set_empty(
740 struct xfs_buf *bp,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000741 size_t numblks)
Dave Chinner44396472011-04-21 09:34:27 +0000742{
743 if (bp->b_pages)
744 _xfs_buf_free_pages(bp);
745
746 bp->b_pages = NULL;
747 bp->b_page_count = 0;
748 bp->b_addr = NULL;
Dave Chinner4e94b712012-04-23 15:58:51 +1000749 bp->b_length = numblks;
Dave Chinneraa0e8832012-04-23 15:58:52 +1000750 bp->b_io_length = numblks;
Dave Chinner3e85c862012-06-22 18:50:09 +1000751
752 ASSERT(bp->b_map_count == 1);
Dave Chinner44396472011-04-21 09:34:27 +0000753 bp->b_bn = XFS_BUF_DADDR_NULL;
Dave Chinner3e85c862012-06-22 18:50:09 +1000754 bp->b_maps[0].bm_bn = XFS_BUF_DADDR_NULL;
755 bp->b_maps[0].bm_len = bp->b_length;
Dave Chinner44396472011-04-21 09:34:27 +0000756}
757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758static inline struct page *
759mem_to_page(
760 void *addr)
761{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800762 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return virt_to_page(addr);
764 } else {
765 return vmalloc_to_page(addr);
766 }
767}
768
769int
Nathan Scottce8e9222006-01-11 15:39:08 +1100770xfs_buf_associate_memory(
771 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 void *mem,
773 size_t len)
774{
775 int rval;
776 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100777 unsigned long pageaddr;
778 unsigned long offset;
779 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 int page_count;
781
Dave Chinner0e6e8472011-03-26 09:16:45 +1100782 pageaddr = (unsigned long)mem & PAGE_MASK;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100783 offset = (unsigned long)mem - pageaddr;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100784 buflen = PAGE_ALIGN(len + offset);
785 page_count = buflen >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100788 if (bp->b_pages)
789 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Nathan Scottce8e9222006-01-11 15:39:08 +1100791 bp->b_pages = NULL;
792 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Dave Chinneraa5c1582012-04-23 15:58:56 +1000794 rval = _xfs_buf_get_pages(bp, page_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (rval)
796 return rval;
797
Nathan Scottce8e9222006-01-11 15:39:08 +1100798 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100800 for (i = 0; i < bp->b_page_count; i++) {
801 bp->b_pages[i] = mem_to_page((void *)pageaddr);
Dave Chinner0e6e8472011-03-26 09:16:45 +1100802 pageaddr += PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Dave Chinneraa0e8832012-04-23 15:58:52 +1000805 bp->b_io_length = BTOBB(len);
Dave Chinner4e94b712012-04-23 15:58:51 +1000806 bp->b_length = BTOBB(buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 return 0;
809}
810
811xfs_buf_t *
Dave Chinner686865f2010-09-24 20:07:47 +1000812xfs_buf_get_uncached(
813 struct xfs_buftarg *target,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000814 size_t numblks,
Dave Chinner686865f2010-09-24 20:07:47 +1000815 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
Dave Chinnere70b73f2012-04-23 15:58:49 +1000817 unsigned long page_count;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000818 int error, i;
Dave Chinner3e85c862012-06-22 18:50:09 +1000819 struct xfs_buf *bp;
820 DEFINE_SINGLE_BUF_MAP(map, XFS_BUF_DADDR_NULL, numblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Dave Chinner3e85c862012-06-22 18:50:09 +1000822 bp = _xfs_buf_alloc(target, &map, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (unlikely(bp == NULL))
824 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Dave Chinnere70b73f2012-04-23 15:58:49 +1000826 page_count = PAGE_ALIGN(numblks << BBSHIFT) >> PAGE_SHIFT;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000827 error = _xfs_buf_get_pages(bp, page_count, 0);
828 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 goto fail_free_buf;
830
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000831 for (i = 0; i < page_count; i++) {
Dave Chinner686865f2010-09-24 20:07:47 +1000832 bp->b_pages[i] = alloc_page(xb_to_gfp(flags));
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000833 if (!bp->b_pages[i])
834 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000836 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Dave Chinner611c9942012-04-23 15:59:07 +1000838 error = _xfs_buf_map_pages(bp, 0);
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000839 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100840 xfs_warn(target->bt_mount,
841 "%s: failed to map pages\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Dave Chinner686865f2010-09-24 20:07:47 +1000845 trace_xfs_buf_get_uncached(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000849 while (--i >= 0)
850 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000851 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 fail_free_buf:
Dave Chinner3e85c862012-06-22 18:50:09 +1000853 xfs_buf_free_maps(bp);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000854 kmem_zone_free(xfs_buf_zone, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 fail:
856 return NULL;
857}
858
859/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 * Increment reference count on buffer, to hold the buffer concurrently
861 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 * Must hold the buffer already to call this function.
863 */
864void
Nathan Scottce8e9222006-01-11 15:39:08 +1100865xfs_buf_hold(
866 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000868 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100869 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
872/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100873 * Releases a hold on the specified buffer. If the
874 * the hold count is 1, calls xfs_buf_free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 */
876void
Nathan Scottce8e9222006-01-11 15:39:08 +1100877xfs_buf_rele(
878 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Dave Chinner74f75a02010-09-24 19:59:04 +1000880 struct xfs_perag *pag = bp->b_pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000882 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Dave Chinner74f75a02010-09-24 19:59:04 +1000884 if (!pag) {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100885 ASSERT(list_empty(&bp->b_lru));
Dave Chinner74f75a02010-09-24 19:59:04 +1000886 ASSERT(RB_EMPTY_NODE(&bp->b_rbnode));
Nathan Scottfad3aa12006-02-01 12:14:52 +1100887 if (atomic_dec_and_test(&bp->b_hold))
888 xfs_buf_free(bp);
889 return;
890 }
891
Dave Chinner74f75a02010-09-24 19:59:04 +1000892 ASSERT(!RB_EMPTY_NODE(&bp->b_rbnode));
Dave Chinner430cbeb2010-12-02 16:30:55 +1100893
Lachlan McIlroy37906892008-08-13 15:42:10 +1000894 ASSERT(atomic_read(&bp->b_hold) > 0);
Dave Chinner74f75a02010-09-24 19:59:04 +1000895 if (atomic_dec_and_lock(&bp->b_hold, &pag->pag_buf_lock)) {
Christoph Hellwigbfc60172011-01-07 13:02:23 +0000896 if (!(bp->b_flags & XBF_STALE) &&
Dave Chinner430cbeb2010-12-02 16:30:55 +1100897 atomic_read(&bp->b_lru_ref)) {
898 xfs_buf_lru_add(bp);
899 spin_unlock(&pag->pag_buf_lock);
Christoph Hellwig7f14d0a2005-11-02 15:09:35 +1100900 } else {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100901 xfs_buf_lru_del(bp);
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000902 ASSERT(!(bp->b_flags & _XBF_DELWRI_Q));
Dave Chinner74f75a02010-09-24 19:59:04 +1000903 rb_erase(&bp->b_rbnode, &pag->pag_buf_tree);
904 spin_unlock(&pag->pag_buf_lock);
905 xfs_perag_put(pag);
Nathan Scottce8e9222006-01-11 15:39:08 +1100906 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908 }
909}
910
911
912/*
Dave Chinner0e6e8472011-03-26 09:16:45 +1100913 * Lock a buffer object, if it is not already locked.
Dave Chinner90810b92010-11-30 15:16:16 +1100914 *
915 * If we come across a stale, pinned, locked buffer, we know that we are
916 * being asked to lock a buffer that has been reallocated. Because it is
917 * pinned, we know that the log has not been pushed to disk and hence it
918 * will still be locked. Rather than continuing to have trylock attempts
919 * fail until someone else pushes the log, push it ourselves before
920 * returning. This means that the xfsaild will not get stuck trying
921 * to push on stale inode buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 */
923int
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200924xfs_buf_trylock(
925 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
927 int locked;
928
Nathan Scottce8e9222006-01-11 15:39:08 +1100929 locked = down_trylock(&bp->b_sema) == 0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000930 if (locked)
Nathan Scottce8e9222006-01-11 15:39:08 +1100931 XB_SET_OWNER(bp);
Dave Chinner90810b92010-11-30 15:16:16 +1100932 else if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
933 xfs_log_force(bp->b_target->bt_mount, 0);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000934
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200935 trace_xfs_buf_trylock(bp, _RET_IP_);
936 return locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939/*
Dave Chinner0e6e8472011-03-26 09:16:45 +1100940 * Lock a buffer object.
Dave Chinnered3b4d62010-05-21 12:07:08 +1000941 *
942 * If we come across a stale, pinned, locked buffer, we know that we
943 * are being asked to lock a buffer that has been reallocated. Because
944 * it is pinned, we know that the log has not been pushed to disk and
945 * hence it will still be locked. Rather than sleeping until someone
946 * else pushes the log, push it ourselves before trying to get the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100948void
949xfs_buf_lock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200950 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000952 trace_xfs_buf_lock(bp, _RET_IP_);
953
Dave Chinnered3b4d62010-05-21 12:07:08 +1000954 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
Dave Chinnerebad8612010-09-22 10:47:20 +1000955 xfs_log_force(bp->b_target->bt_mount, 0);
Nathan Scottce8e9222006-01-11 15:39:08 +1100956 down(&bp->b_sema);
957 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000958
959 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960}
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962void
Nathan Scottce8e9222006-01-11 15:39:08 +1100963xfs_buf_unlock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200964 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Nathan Scottce8e9222006-01-11 15:39:08 +1100966 XB_CLEAR_OWNER(bp);
967 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000968
969 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
971
Nathan Scottce8e9222006-01-11 15:39:08 +1100972STATIC void
973xfs_buf_wait_unpin(
974 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
976 DECLARE_WAITQUEUE (wait, current);
977
Nathan Scottce8e9222006-01-11 15:39:08 +1100978 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return;
980
Nathan Scottce8e9222006-01-11 15:39:08 +1100981 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 for (;;) {
983 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +1100984 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 break;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100986 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100988 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 set_current_state(TASK_RUNNING);
990}
991
992/*
993 * Buffer Utility Routines
994 */
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100997xfs_buf_iodone_work(
David Howellsc4028952006-11-22 14:57:56 +0000998 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
David Howellsc4028952006-11-22 14:57:56 +00001000 xfs_buf_t *bp =
1001 container_of(work, xfs_buf_t, b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Christoph Hellwig80f6c292010-08-18 05:29:11 -04001003 if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +11001004 (*(bp->b_iodone))(bp);
1005 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 xfs_buf_relse(bp);
1007}
1008
1009void
Nathan Scottce8e9222006-01-11 15:39:08 +11001010xfs_buf_ioend(
1011 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 int schedule)
1013{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001014 trace_xfs_buf_iodone(bp, _RET_IP_);
1015
Lachlan McIlroy77be55a2007-11-23 16:31:00 +11001016 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Nathan Scottce8e9222006-01-11 15:39:08 +11001017 if (bp->b_error == 0)
1018 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Nathan Scottce8e9222006-01-11 15:39:08 +11001020 if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (schedule) {
David Howellsc4028952006-11-22 14:57:56 +00001022 INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work);
Nathan Scottce8e9222006-01-11 15:39:08 +11001023 queue_work(xfslogd_workqueue, &bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 } else {
David Howellsc4028952006-11-22 14:57:56 +00001025 xfs_buf_iodone_work(&bp->b_iodone_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027 } else {
David Chinnerb4dd3302008-08-13 16:36:11 +10001028 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
1030}
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032void
Nathan Scottce8e9222006-01-11 15:39:08 +11001033xfs_buf_ioerror(
1034 xfs_buf_t *bp,
1035 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
1037 ASSERT(error >= 0 && error <= 0xffff);
Nathan Scottce8e9222006-01-11 15:39:08 +11001038 bp->b_error = (unsigned short)error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001039 trace_xfs_buf_ioerror(bp, error, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
Christoph Hellwig901796a2011-10-10 16:52:49 +00001042void
1043xfs_buf_ioerror_alert(
1044 struct xfs_buf *bp,
1045 const char *func)
1046{
1047 xfs_alert(bp->b_target->bt_mount,
Dave Chinneraa0e8832012-04-23 15:58:52 +10001048"metadata I/O error: block 0x%llx (\"%s\") error %d numblks %d",
1049 (__uint64_t)XFS_BUF_ADDR(bp), func, bp->b_error, bp->b_length);
Christoph Hellwig901796a2011-10-10 16:52:49 +00001050}
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052int
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001053xfs_bwrite(
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001054 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
Christoph Hellwig8c383662010-03-12 10:59:40 +00001056 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001058 ASSERT(xfs_buf_islocked(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001060 bp->b_flags |= XBF_WRITE;
1061 bp->b_flags &= ~(XBF_ASYNC | XBF_READ | _XBF_DELWRI_Q);
1062
Christoph Hellwig939d7232010-07-20 17:51:16 +10001063 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Christoph Hellwig8c383662010-03-12 10:59:40 +00001065 error = xfs_buf_iowait(bp);
Christoph Hellwigc2b006c2011-08-23 08:28:07 +00001066 if (error) {
1067 xfs_force_shutdown(bp->b_target->bt_mount,
1068 SHUTDOWN_META_IO_ERROR);
1069 }
Christoph Hellwig64e0bc72010-01-13 22:17:58 +00001070 return error;
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001071}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Christoph Hellwig4e234712010-01-13 22:17:56 +00001073/*
1074 * Called when we want to stop a buffer from getting written or read.
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001075 * We attach the EIO error, muck with its flags, and call xfs_buf_ioend
Christoph Hellwig4e234712010-01-13 22:17:56 +00001076 * so that the proper iodone callbacks get called.
1077 */
1078STATIC int
1079xfs_bioerror(
1080 xfs_buf_t *bp)
1081{
1082#ifdef XFSERRORDEBUG
1083 ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone);
1084#endif
1085
1086 /*
1087 * No need to wait until the buffer is unpinned, we aren't flushing it.
1088 */
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00001089 xfs_buf_ioerror(bp, EIO);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001090
1091 /*
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001092 * We're calling xfs_buf_ioend, so delete XBF_DONE flag.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001093 */
1094 XFS_BUF_UNREAD(bp);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001095 XFS_BUF_UNDONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00001096 xfs_buf_stale(bp);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001097
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001098 xfs_buf_ioend(bp, 0);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001099
1100 return EIO;
1101}
1102
1103/*
1104 * Same as xfs_bioerror, except that we are releasing the buffer
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001105 * here ourselves, and avoiding the xfs_buf_ioend call.
Christoph Hellwig4e234712010-01-13 22:17:56 +00001106 * This is meant for userdata errors; metadata bufs come with
1107 * iodone functions attached, so that we can track down errors.
1108 */
1109STATIC int
1110xfs_bioerror_relse(
1111 struct xfs_buf *bp)
1112{
Chandra Seetharamaned432332011-07-22 23:39:39 +00001113 int64_t fl = bp->b_flags;
Christoph Hellwig4e234712010-01-13 22:17:56 +00001114 /*
1115 * No need to wait until the buffer is unpinned.
1116 * We aren't flushing it.
1117 *
1118 * chunkhold expects B_DONE to be set, whether
1119 * we actually finish the I/O or not. We don't want to
1120 * change that interface.
1121 */
1122 XFS_BUF_UNREAD(bp);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001123 XFS_BUF_DONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00001124 xfs_buf_stale(bp);
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02001125 bp->b_iodone = NULL;
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001126 if (!(fl & XBF_ASYNC)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001127 /*
1128 * Mark b_error and B_ERROR _both_.
1129 * Lot's of chunkcache code assumes that.
1130 * There's no reason to mark error for
1131 * ASYNC buffers.
1132 */
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00001133 xfs_buf_ioerror(bp, EIO);
Christoph Hellwig5fde0322011-10-10 16:52:44 +00001134 complete(&bp->b_iowait);
Christoph Hellwig4e234712010-01-13 22:17:56 +00001135 } else {
1136 xfs_buf_relse(bp);
1137 }
1138
1139 return EIO;
1140}
1141
1142
1143/*
1144 * All xfs metadata buffers except log state machine buffers
1145 * get this attached as their b_bdstrat callback function.
1146 * This is so that we can catch a buffer
1147 * after prematurely unpinning it to forcibly shutdown the filesystem.
1148 */
1149int
1150xfs_bdstrat_cb(
1151 struct xfs_buf *bp)
1152{
Dave Chinnerebad8612010-09-22 10:47:20 +10001153 if (XFS_FORCED_SHUTDOWN(bp->b_target->bt_mount)) {
Christoph Hellwig4e234712010-01-13 22:17:56 +00001154 trace_xfs_bdstrat_shut(bp, _RET_IP_);
1155 /*
1156 * Metadata write that didn't get logged but
1157 * written delayed anyway. These aren't associated
1158 * with a transaction, and can be ignored.
1159 */
1160 if (!bp->b_iodone && !XFS_BUF_ISREAD(bp))
1161 return xfs_bioerror_relse(bp);
1162 else
1163 return xfs_bioerror(bp);
1164 }
1165
1166 xfs_buf_iorequest(bp);
1167 return 0;
1168}
1169
1170/*
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
Lachlan McIlroycfbe5262008-12-12 15:27:25 +11001205 xfs_buf_ioerror(bp, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
James Bottomley73c77e22010-01-25 11:42:24 -06001207 if (!error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
1208 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1209
Nathan Scottce8e9222006-01-11 15:39:08 +11001210 _xfs_buf_ioend(bp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212}
1213
Dave Chinner3e85c862012-06-22 18:50:09 +10001214static void
1215xfs_buf_ioapply_map(
1216 struct xfs_buf *bp,
1217 int map,
1218 int *buf_offset,
1219 int *count,
1220 int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Dave Chinner3e85c862012-06-22 18:50:09 +10001222 int page_index;
1223 int total_nr_pages = bp->b_page_count;
1224 int nr_pages;
1225 struct bio *bio;
1226 sector_t sector = bp->b_maps[map].bm_bn;
1227 int size;
1228 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Nathan Scottce8e9222006-01-11 15:39:08 +11001230 total_nr_pages = bp->b_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Dave Chinner3e85c862012-06-22 18:50:09 +10001232 /* skip the pages in the buffer before the start offset */
1233 page_index = 0;
1234 offset = *buf_offset;
1235 while (offset >= PAGE_SIZE) {
1236 page_index++;
1237 offset -= PAGE_SIZE;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001238 }
1239
Dave Chinner3e85c862012-06-22 18:50:09 +10001240 /*
1241 * Limit the IO size to the length of the current vector, and update the
1242 * remaining IO count for the next time around.
1243 */
1244 size = min_t(int, BBTOB(bp->b_maps[map].bm_len), *count);
1245 *count -= size;
1246 *buf_offset += size;
Christoph Hellwig34951f52011-07-26 15:06:44 +00001247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001249 atomic_inc(&bp->b_io_remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT);
1251 if (nr_pages > total_nr_pages)
1252 nr_pages = total_nr_pages;
1253
1254 bio = bio_alloc(GFP_NOIO, nr_pages);
Nathan Scottce8e9222006-01-11 15:39:08 +11001255 bio->bi_bdev = bp->b_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 bio->bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001257 bio->bi_end_io = xfs_buf_bio_end_io;
1258 bio->bi_private = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Dave Chinner0e6e8472011-03-26 09:16:45 +11001260
Dave Chinner3e85c862012-06-22 18:50:09 +10001261 for (; size && nr_pages; nr_pages--, page_index++) {
Dave Chinner0e6e8472011-03-26 09:16:45 +11001262 int rbytes, nbytes = PAGE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 if (nbytes > size)
1265 nbytes = size;
1266
Dave Chinner3e85c862012-06-22 18:50:09 +10001267 rbytes = bio_add_page(bio, bp->b_pages[page_index], nbytes,
1268 offset);
Nathan Scottce8e9222006-01-11 15:39:08 +11001269 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 break;
1271
1272 offset = 0;
Dave Chinneraa0e8832012-04-23 15:58:52 +10001273 sector += BTOBB(nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 size -= nbytes;
1275 total_nr_pages--;
1276 }
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 if (likely(bio->bi_size)) {
James Bottomley73c77e22010-01-25 11:42:24 -06001279 if (xfs_buf_is_vmapped(bp)) {
1280 flush_kernel_vmap_range(bp->b_addr,
1281 xfs_buf_vmap_len(bp));
1282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 submit_bio(rw, bio);
1284 if (size)
1285 goto next_chunk;
1286 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +11001287 xfs_buf_ioerror(bp, EIO);
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001288 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
Dave Chinner3e85c862012-06-22 18:50:09 +10001290
1291}
1292
1293STATIC void
1294_xfs_buf_ioapply(
1295 struct xfs_buf *bp)
1296{
1297 struct blk_plug plug;
1298 int rw;
1299 int offset;
1300 int size;
1301 int i;
1302
1303 if (bp->b_flags & XBF_WRITE) {
1304 if (bp->b_flags & XBF_SYNCIO)
1305 rw = WRITE_SYNC;
1306 else
1307 rw = WRITE;
1308 if (bp->b_flags & XBF_FUA)
1309 rw |= REQ_FUA;
1310 if (bp->b_flags & XBF_FLUSH)
1311 rw |= REQ_FLUSH;
1312 } else if (bp->b_flags & XBF_READ_AHEAD) {
1313 rw = READA;
1314 } else {
1315 rw = READ;
1316 }
1317
1318 /* we only use the buffer cache for meta-data */
1319 rw |= REQ_META;
1320
1321 /*
1322 * Walk all the vectors issuing IO on them. Set up the initial offset
1323 * into the buffer and the desired IO size before we start -
1324 * _xfs_buf_ioapply_vec() will modify them appropriately for each
1325 * subsequent call.
1326 */
1327 offset = bp->b_offset;
1328 size = BBTOB(bp->b_io_length);
1329 blk_start_plug(&plug);
1330 for (i = 0; i < bp->b_map_count; i++) {
1331 xfs_buf_ioapply_map(bp, i, &offset, &size, rw);
1332 if (bp->b_error)
1333 break;
1334 if (size <= 0)
1335 break; /* all done */
1336 }
1337 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338}
1339
Dave Chinner0e95f192012-04-23 15:58:46 +10001340void
Nathan Scottce8e9222006-01-11 15:39:08 +11001341xfs_buf_iorequest(
1342 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001344 trace_xfs_buf_iorequest(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001346 ASSERT(!(bp->b_flags & _XBF_DELWRI_Q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Christoph Hellwig375ec692011-08-23 08:28:03 +00001348 if (bp->b_flags & XBF_WRITE)
Nathan Scottce8e9222006-01-11 15:39:08 +11001349 xfs_buf_wait_unpin(bp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001350 xfs_buf_hold(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 /* Set the count to 1 initially, this will stop an I/O
1353 * completion callout which happens before we have started
Nathan Scottce8e9222006-01-11 15:39:08 +11001354 * all the I/O from calling xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001356 atomic_set(&bp->b_io_remaining, 1);
1357 _xfs_buf_ioapply(bp);
1358 _xfs_buf_ioend(bp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Nathan Scottce8e9222006-01-11 15:39:08 +11001360 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
1363/*
Dave Chinner0e95f192012-04-23 15:58:46 +10001364 * Waits for I/O to complete on the buffer supplied. It returns immediately if
1365 * no I/O is pending or there is already a pending error on the buffer. It
1366 * returns the I/O error code, if any, or 0 if there was no error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 */
1368int
Nathan Scottce8e9222006-01-11 15:39:08 +11001369xfs_buf_iowait(
1370 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001372 trace_xfs_buf_iowait(bp, _RET_IP_);
1373
Dave Chinner0e95f192012-04-23 15:58:46 +10001374 if (!bp->b_error)
1375 wait_for_completion(&bp->b_iowait);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001376
1377 trace_xfs_buf_iowait_done(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +11001378 return bp->b_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379}
1380
Nathan Scottce8e9222006-01-11 15:39:08 +11001381xfs_caddr_t
1382xfs_buf_offset(
1383 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 size_t offset)
1385{
1386 struct page *page;
1387
Dave Chinner611c9942012-04-23 15:59:07 +10001388 if (bp->b_addr)
Chandra Seetharaman62926042011-07-22 23:40:15 +00001389 return bp->b_addr + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Nathan Scottce8e9222006-01-11 15:39:08 +11001391 offset += bp->b_offset;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001392 page = bp->b_pages[offset >> PAGE_SHIFT];
1393 return (xfs_caddr_t)page_address(page) + (offset & (PAGE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
1396/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 * Move data into or out of a buffer.
1398 */
1399void
Nathan Scottce8e9222006-01-11 15:39:08 +11001400xfs_buf_iomove(
1401 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 size_t boff, /* starting buffer offset */
1403 size_t bsize, /* length to copy */
Dave Chinnerb9c48642010-01-20 10:47:39 +11001404 void *data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001405 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
Dave Chinner795cac72012-04-23 15:58:53 +10001407 size_t bend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409 bend = boff + bsize;
1410 while (boff < bend) {
Dave Chinner795cac72012-04-23 15:58:53 +10001411 struct page *page;
1412 int page_index, page_offset, csize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Dave Chinner795cac72012-04-23 15:58:53 +10001414 page_index = (boff + bp->b_offset) >> PAGE_SHIFT;
1415 page_offset = (boff + bp->b_offset) & ~PAGE_MASK;
1416 page = bp->b_pages[page_index];
1417 csize = min_t(size_t, PAGE_SIZE - page_offset,
1418 BBTOB(bp->b_io_length) - boff);
1419
1420 ASSERT((csize + page_offset) <= PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001423 case XBRW_ZERO:
Dave Chinner795cac72012-04-23 15:58:53 +10001424 memset(page_address(page) + page_offset, 0, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001426 case XBRW_READ:
Dave Chinner795cac72012-04-23 15:58:53 +10001427 memcpy(data, page_address(page) + page_offset, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001429 case XBRW_WRITE:
Dave Chinner795cac72012-04-23 15:58:53 +10001430 memcpy(page_address(page) + page_offset, data, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432
1433 boff += csize;
1434 data += csize;
1435 }
1436}
1437
1438/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001439 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 */
1441
1442/*
Dave Chinner430cbeb2010-12-02 16:30:55 +11001443 * Wait for any bufs with callbacks that have been submitted but have not yet
1444 * returned. These buffers will have an elevated hold count, so wait on those
1445 * while freeing all the buffers only held by the LRU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 */
1447void
1448xfs_wait_buftarg(
Dave Chinner74f75a02010-09-24 19:59:04 +10001449 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
Dave Chinner430cbeb2010-12-02 16:30:55 +11001451 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Dave Chinner430cbeb2010-12-02 16:30:55 +11001453restart:
1454 spin_lock(&btp->bt_lru_lock);
1455 while (!list_empty(&btp->bt_lru)) {
1456 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1457 if (atomic_read(&bp->b_hold) > 1) {
1458 spin_unlock(&btp->bt_lru_lock);
Dave Chinner26af6552010-09-22 10:47:20 +10001459 delay(100);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001460 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001462 /*
Paul Bolle90802ed2011-12-05 13:00:34 +01001463 * clear the LRU reference count so the buffer doesn't get
Dave Chinner430cbeb2010-12-02 16:30:55 +11001464 * ignored in xfs_buf_rele().
1465 */
1466 atomic_set(&bp->b_lru_ref, 0);
1467 spin_unlock(&btp->bt_lru_lock);
1468 xfs_buf_rele(bp);
1469 spin_lock(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001471 spin_unlock(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472}
1473
Dave Chinnerff57ab22010-11-30 17:27:57 +11001474int
1475xfs_buftarg_shrink(
1476 struct shrinker *shrink,
Ying Han1495f232011-05-24 17:12:27 -07001477 struct shrink_control *sc)
David Chinnera6867a62006-01-11 15:37:58 +11001478{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001479 struct xfs_buftarg *btp = container_of(shrink,
1480 struct xfs_buftarg, bt_shrinker);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001481 struct xfs_buf *bp;
Ying Han1495f232011-05-24 17:12:27 -07001482 int nr_to_scan = sc->nr_to_scan;
Dave Chinner430cbeb2010-12-02 16:30:55 +11001483 LIST_HEAD(dispose);
1484
1485 if (!nr_to_scan)
1486 return btp->bt_lru_nr;
1487
1488 spin_lock(&btp->bt_lru_lock);
1489 while (!list_empty(&btp->bt_lru)) {
1490 if (nr_to_scan-- <= 0)
1491 break;
1492
1493 bp = list_first_entry(&btp->bt_lru, struct xfs_buf, b_lru);
1494
1495 /*
1496 * Decrement the b_lru_ref count unless the value is already
1497 * zero. If the value is already zero, we need to reclaim the
1498 * buffer, otherwise it gets another trip through the LRU.
1499 */
1500 if (!atomic_add_unless(&bp->b_lru_ref, -1, 0)) {
1501 list_move_tail(&bp->b_lru, &btp->bt_lru);
1502 continue;
1503 }
1504
1505 /*
1506 * remove the buffer from the LRU now to avoid needing another
1507 * lock round trip inside xfs_buf_rele().
1508 */
1509 list_move(&bp->b_lru, &dispose);
1510 btp->bt_lru_nr--;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001511 }
Dave Chinner430cbeb2010-12-02 16:30:55 +11001512 spin_unlock(&btp->bt_lru_lock);
1513
1514 while (!list_empty(&dispose)) {
1515 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1516 list_del_init(&bp->b_lru);
1517 xfs_buf_rele(bp);
1518 }
1519
1520 return btp->bt_lru_nr;
David Chinnera6867a62006-01-11 15:37:58 +11001521}
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523void
1524xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001525 struct xfs_mount *mp,
1526 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001528 unregister_shrinker(&btp->bt_shrinker);
1529
Christoph Hellwigb7963132009-03-03 14:48:37 -05001530 if (mp->m_flags & XFS_MOUNT_BARRIER)
1531 xfs_blkdev_issue_flush(btp);
David Chinnera6867a62006-01-11 15:37:58 +11001532
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001533 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}
1535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536STATIC int
1537xfs_setsize_buftarg_flags(
1538 xfs_buftarg_t *btp,
1539 unsigned int blocksize,
1540 unsigned int sectorsize,
1541 int verbose)
1542{
Nathan Scottce8e9222006-01-11 15:39:08 +11001543 btp->bt_bsize = blocksize;
1544 btp->bt_sshift = ffs(sectorsize) - 1;
1545 btp->bt_smask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Nathan Scottce8e9222006-01-11 15:39:08 +11001547 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Christoph Hellwig02b102d2011-10-10 16:52:51 +00001548 char name[BDEVNAME_SIZE];
1549
1550 bdevname(btp->bt_bdev, name);
1551
Dave Chinner4f107002011-03-07 10:00:35 +11001552 xfs_warn(btp->bt_mount,
1553 "Cannot set_blocksize to %u on device %s\n",
Christoph Hellwig02b102d2011-10-10 16:52:51 +00001554 sectorsize, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 return EINVAL;
1556 }
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 return 0;
1559}
1560
1561/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001562 * When allocating the initial buffer target we have not yet
1563 * read in the superblock, so don't know what sized sectors
1564 * are being used is at this early stage. Play safe.
1565 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566STATIC int
1567xfs_setsize_buftarg_early(
1568 xfs_buftarg_t *btp,
1569 struct block_device *bdev)
1570{
1571 return xfs_setsize_buftarg_flags(btp,
Dave Chinner0e6e8472011-03-26 09:16:45 +11001572 PAGE_SIZE, bdev_logical_block_size(bdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
1575int
1576xfs_setsize_buftarg(
1577 xfs_buftarg_t *btp,
1578 unsigned int blocksize,
1579 unsigned int sectorsize)
1580{
1581 return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1);
1582}
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584xfs_buftarg_t *
1585xfs_alloc_buftarg(
Dave Chinnerebad8612010-09-22 10:47:20 +10001586 struct xfs_mount *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 struct block_device *bdev,
Jan Engelhardte2a07812010-03-23 09:52:55 +11001588 int external,
1589 const char *fsname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
1591 xfs_buftarg_t *btp;
1592
1593 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP);
1594
Dave Chinnerebad8612010-09-22 10:47:20 +10001595 btp->bt_mount = mp;
Nathan Scottce8e9222006-01-11 15:39:08 +11001596 btp->bt_dev = bdev->bd_dev;
1597 btp->bt_bdev = bdev;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001598 btp->bt_bdi = blk_get_backing_dev_info(bdev);
1599 if (!btp->bt_bdi)
1600 goto error;
1601
Dave Chinner430cbeb2010-12-02 16:30:55 +11001602 INIT_LIST_HEAD(&btp->bt_lru);
1603 spin_lock_init(&btp->bt_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (xfs_setsize_buftarg_early(btp, bdev))
1605 goto error;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001606 btp->bt_shrinker.shrink = xfs_buftarg_shrink;
1607 btp->bt_shrinker.seeks = DEFAULT_SEEKS;
1608 register_shrinker(&btp->bt_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 return btp;
1610
1611error:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001612 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 return NULL;
1614}
1615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001617 * Add a buffer to the delayed write list.
1618 *
1619 * This queues a buffer for writeout if it hasn't already been. Note that
1620 * neither this routine nor the buffer list submission functions perform
1621 * any internal synchronization. It is expected that the lists are thread-local
1622 * to the callers.
1623 *
1624 * Returns true if we queued up the buffer, or false if it already had
1625 * been on the buffer list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001627bool
Nathan Scottce8e9222006-01-11 15:39:08 +11001628xfs_buf_delwri_queue(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001629 struct xfs_buf *bp,
1630 struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001632 ASSERT(xfs_buf_islocked(bp));
1633 ASSERT(!(bp->b_flags & XBF_READ));
1634
1635 /*
1636 * If the buffer is already marked delwri it already is queued up
1637 * by someone else for imediate writeout. Just ignore it in that
1638 * case.
1639 */
1640 if (bp->b_flags & _XBF_DELWRI_Q) {
1641 trace_xfs_buf_delwri_queued(bp, _RET_IP_);
1642 return false;
1643 }
David Chinnera6867a62006-01-11 15:37:58 +11001644
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001645 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1646
Dave Chinnerd808f612010-02-02 10:13:42 +11001647 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001648 * If a buffer gets written out synchronously or marked stale while it
1649 * is on a delwri list we lazily remove it. To do this, the other party
1650 * clears the _XBF_DELWRI_Q flag but otherwise leaves the buffer alone.
1651 * It remains referenced and on the list. In a rare corner case it
1652 * might get readded to a delwri list after the synchronous writeout, in
1653 * which case we need just need to re-add the flag here.
Dave Chinnerd808f612010-02-02 10:13:42 +11001654 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001655 bp->b_flags |= _XBF_DELWRI_Q;
1656 if (list_empty(&bp->b_list)) {
1657 atomic_inc(&bp->b_hold);
1658 list_add_tail(&bp->b_list, list);
David Chinner585e6d82007-02-10 18:32:29 +11001659 }
David Chinner585e6d82007-02-10 18:32:29 +11001660
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001661 return true;
David Chinner585e6d82007-02-10 18:32:29 +11001662}
1663
Dave Chinner089716a2010-01-26 15:13:25 +11001664/*
1665 * Compare function is more complex than it needs to be because
1666 * the return value is only 32 bits and we are doing comparisons
1667 * on 64 bit values
1668 */
1669static int
1670xfs_buf_cmp(
1671 void *priv,
1672 struct list_head *a,
1673 struct list_head *b)
1674{
1675 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1676 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1677 xfs_daddr_t diff;
1678
Dave Chinnercbb7baa2012-06-22 18:50:08 +10001679 diff = ap->b_map.bm_bn - bp->b_map.bm_bn;
Dave Chinner089716a2010-01-26 15:13:25 +11001680 if (diff < 0)
1681 return -1;
1682 if (diff > 0)
1683 return 1;
1684 return 0;
1685}
1686
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001687static int
1688__xfs_buf_delwri_submit(
1689 struct list_head *buffer_list,
1690 struct list_head *io_list,
1691 bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001693 struct blk_plug plug;
1694 struct xfs_buf *bp, *n;
1695 int pinned = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001697 list_for_each_entry_safe(bp, n, buffer_list, b_list) {
1698 if (!wait) {
1699 if (xfs_buf_ispinned(bp)) {
1700 pinned++;
1701 continue;
1702 }
1703 if (!xfs_buf_trylock(bp))
1704 continue;
1705 } else {
1706 xfs_buf_lock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001709 /*
1710 * Someone else might have written the buffer synchronously or
1711 * marked it stale in the meantime. In that case only the
1712 * _XBF_DELWRI_Q flag got cleared, and we have to drop the
1713 * reference and remove it from the list here.
1714 */
1715 if (!(bp->b_flags & _XBF_DELWRI_Q)) {
1716 list_del_init(&bp->b_list);
1717 xfs_buf_relse(bp);
1718 continue;
1719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001721 list_move_tail(&bp->b_list, io_list);
1722 trace_xfs_buf_delwri_split(bp, _RET_IP_);
1723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001725 list_sort(NULL, io_list, xfs_buf_cmp);
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001726
1727 blk_start_plug(&plug);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001728 list_for_each_entry_safe(bp, n, io_list, b_list) {
1729 bp->b_flags &= ~(_XBF_DELWRI_Q | XBF_ASYNC);
1730 bp->b_flags |= XBF_WRITE;
1731
1732 if (!wait) {
1733 bp->b_flags |= XBF_ASYNC;
1734 list_del_init(&bp->b_list);
Dave Chinner089716a2010-01-26 15:13:25 +11001735 }
Christoph Hellwig939d7232010-07-20 17:51:16 +10001736 xfs_bdstrat_cb(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 }
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00001738 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001740 return pinned;
1741}
Nathan Scottf07c2252006-09-28 10:52:15 +10001742
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001743/*
1744 * Write out a buffer list asynchronously.
1745 *
1746 * This will take the @buffer_list, write all non-locked and non-pinned buffers
1747 * out and not wait for I/O completion on any of the buffers. This interface
1748 * is only safely useable for callers that can track I/O completion by higher
1749 * level means, e.g. AIL pushing as the @buffer_list is consumed in this
1750 * function.
1751 */
1752int
1753xfs_buf_delwri_submit_nowait(
1754 struct list_head *buffer_list)
1755{
1756 LIST_HEAD (io_list);
1757 return __xfs_buf_delwri_submit(buffer_list, &io_list, false);
1758}
1759
1760/*
1761 * Write out a buffer list synchronously.
1762 *
1763 * This will take the @buffer_list, write all buffers out and wait for I/O
1764 * completion on all of the buffers. @buffer_list is consumed by the function,
1765 * so callers must have some other way of tracking buffers if they require such
1766 * functionality.
1767 */
1768int
1769xfs_buf_delwri_submit(
1770 struct list_head *buffer_list)
1771{
1772 LIST_HEAD (io_list);
1773 int error = 0, error2;
1774 struct xfs_buf *bp;
1775
1776 __xfs_buf_delwri_submit(buffer_list, &io_list, true);
1777
1778 /* Wait for IO to complete. */
1779 while (!list_empty(&io_list)) {
1780 bp = list_first_entry(&io_list, struct xfs_buf, b_list);
1781
1782 list_del_init(&bp->b_list);
1783 error2 = xfs_buf_iowait(bp);
1784 xfs_buf_relse(bp);
1785 if (!error)
1786 error = error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 }
1788
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001789 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790}
1791
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001792int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11001793xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
Nathan Scott87582802006-03-14 13:18:19 +11001795 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
1796 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11001797 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001798 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001799
Dave Chinner51749e42010-09-08 09:00:22 +00001800 xfslogd_workqueue = alloc_workqueue("xfslogd",
Tejun Heo6370a6a2010-10-11 15:12:27 +02001801 WQ_MEM_RECLAIM | WQ_HIGHPRI, 1);
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001802 if (!xfslogd_workqueue)
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001803 goto out_free_buf_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001805 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Christoph Hellwig23ea4032005-06-21 15:14:01 +10001807 out_free_buf_zone:
Nathan Scottce8e9222006-01-11 15:39:08 +11001808 kmem_zone_destroy(xfs_buf_zone);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001809 out:
Nathan Scott87582802006-03-14 13:18:19 +11001810 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813void
Nathan Scottce8e9222006-01-11 15:39:08 +11001814xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Christoph Hellwig04d8b282005-11-02 10:15:05 +11001816 destroy_workqueue(xfslogd_workqueue);
Nathan Scottce8e9222006-01-11 15:39:08 +11001817 kmem_zone_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818}