blob: d1da2ee9e6dbced92e2aaaddb0ae635f5b4d9bab [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>
Ingo Molnar5b3cc152017-02-02 20:43:54 +010036#include <linux/sched/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Christoph Hellwig4fb6e8a2014-11-28 14:25:04 +110038#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110039#include "xfs_log_format.h"
Dave Chinner7fd36c42013-08-12 20:49:32 +100040#include "xfs_trans_resv.h"
Dave Chinner239880e2013-10-23 10:50:10 +110041#include "xfs_sb.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050042#include "xfs_mount.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000043#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110044#include "xfs_log.h"
Darrick J. Wonge9e899a2017-10-31 12:04:49 -070045#include "xfs_errortag.h"
Brian Foster7561d272017-10-17 14:16:29 -070046#include "xfs_error.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050047
David Chinner7989cb82007-02-10 18:34:56 +110048static kmem_zone_t *xfs_buf_zone;
Christoph Hellwig23ea4032005-06-21 15:14:01 +100049
Nathan Scottce8e9222006-01-11 15:39:08 +110050#ifdef XFS_BUF_LOCK_TRACKING
51# define XB_SET_OWNER(bp) ((bp)->b_last_holder = current->pid)
52# define XB_CLEAR_OWNER(bp) ((bp)->b_last_holder = -1)
53# define XB_GET_OWNER(bp) ((bp)->b_last_holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#else
Nathan Scottce8e9222006-01-11 15:39:08 +110055# define XB_SET_OWNER(bp) do { } while (0)
56# define XB_CLEAR_OWNER(bp) do { } while (0)
57# define XB_GET_OWNER(bp) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#endif
59
Nathan Scottce8e9222006-01-11 15:39:08 +110060#define xb_to_gfp(flags) \
Dave Chinneraa5c1582012-04-23 15:58:56 +100061 ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : GFP_NOFS) | __GFP_NOWARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
James Bottomley73c77e22010-01-25 11:42:24 -060064static inline int
65xfs_buf_is_vmapped(
66 struct xfs_buf *bp)
67{
68 /*
69 * Return true if the buffer is vmapped.
70 *
Dave Chinner611c9942012-04-23 15:59:07 +100071 * b_addr is null if the buffer is not mapped, but the code is clever
72 * enough to know it doesn't have to map a single page, so the check has
73 * to be both for b_addr and bp->b_page_count > 1.
James Bottomley73c77e22010-01-25 11:42:24 -060074 */
Dave Chinner611c9942012-04-23 15:59:07 +100075 return bp->b_addr && bp->b_page_count > 1;
James Bottomley73c77e22010-01-25 11:42:24 -060076}
77
78static inline int
79xfs_buf_vmap_len(
80 struct xfs_buf *bp)
81{
82 return (bp->b_page_count * PAGE_SIZE) - bp->b_offset;
83}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/*
Brian Foster9c7504a2016-07-20 11:15:28 +100086 * Bump the I/O in flight count on the buftarg if we haven't yet done so for
87 * this buffer. The count is incremented once per buffer (per hold cycle)
88 * because the corresponding decrement is deferred to buffer release. Buffers
89 * can undergo I/O multiple times in a hold-release cycle and per buffer I/O
90 * tracking adds unnecessary overhead. This is used for sychronization purposes
91 * with unmount (see xfs_wait_buftarg()), so all we really need is a count of
92 * in-flight buffers.
93 *
94 * Buffers that are never released (e.g., superblock, iclog buffers) must set
95 * the XBF_NO_IOACCT flag before I/O submission. Otherwise, the buftarg count
96 * never reaches zero and unmount hangs indefinitely.
97 */
98static inline void
99xfs_buf_ioacct_inc(
100 struct xfs_buf *bp)
101{
Brian Foster63db7c82017-05-31 08:22:52 -0700102 if (bp->b_flags & XBF_NO_IOACCT)
Brian Foster9c7504a2016-07-20 11:15:28 +1000103 return;
104
105 ASSERT(bp->b_flags & XBF_ASYNC);
Brian Foster63db7c82017-05-31 08:22:52 -0700106 spin_lock(&bp->b_lock);
107 if (!(bp->b_state & XFS_BSTATE_IN_FLIGHT)) {
108 bp->b_state |= XFS_BSTATE_IN_FLIGHT;
109 percpu_counter_inc(&bp->b_target->bt_io_count);
110 }
111 spin_unlock(&bp->b_lock);
Brian Foster9c7504a2016-07-20 11:15:28 +1000112}
113
114/*
115 * Clear the in-flight state on a buffer about to be released to the LRU or
116 * freed and unaccount from the buftarg.
117 */
118static inline void
Brian Foster63db7c82017-05-31 08:22:52 -0700119__xfs_buf_ioacct_dec(
120 struct xfs_buf *bp)
121{
Brian Foster95989c42017-06-08 08:23:07 -0700122 lockdep_assert_held(&bp->b_lock);
Brian Foster63db7c82017-05-31 08:22:52 -0700123
124 if (bp->b_state & XFS_BSTATE_IN_FLIGHT) {
125 bp->b_state &= ~XFS_BSTATE_IN_FLIGHT;
126 percpu_counter_dec(&bp->b_target->bt_io_count);
127 }
128}
129
130static inline void
Brian Foster9c7504a2016-07-20 11:15:28 +1000131xfs_buf_ioacct_dec(
132 struct xfs_buf *bp)
133{
Brian Foster63db7c82017-05-31 08:22:52 -0700134 spin_lock(&bp->b_lock);
135 __xfs_buf_ioacct_dec(bp);
136 spin_unlock(&bp->b_lock);
Brian Foster9c7504a2016-07-20 11:15:28 +1000137}
138
139/*
Dave Chinner430cbeb2010-12-02 16:30:55 +1100140 * When we mark a buffer stale, we remove the buffer from the LRU and clear the
141 * b_lru_ref count so that the buffer is freed immediately when the buffer
142 * reference count falls to zero. If the buffer is already on the LRU, we need
143 * to remove the reference that LRU holds on the buffer.
144 *
145 * This prevents build-up of stale buffers on the LRU.
146 */
147void
148xfs_buf_stale(
149 struct xfs_buf *bp)
150{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000151 ASSERT(xfs_buf_islocked(bp));
152
Dave Chinner430cbeb2010-12-02 16:30:55 +1100153 bp->b_flags |= XBF_STALE;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000154
155 /*
156 * Clear the delwri status so that a delwri queue walker will not
157 * flush this buffer to disk now that it is stale. The delwri queue has
158 * a reference to the buffer, so this is safe to do.
159 */
160 bp->b_flags &= ~_XBF_DELWRI_Q;
161
Brian Foster9c7504a2016-07-20 11:15:28 +1000162 /*
163 * Once the buffer is marked stale and unlocked, a subsequent lookup
164 * could reset b_flags. There is no guarantee that the buffer is
165 * unaccounted (released to LRU) before that occurs. Drop in-flight
166 * status now to preserve accounting consistency.
167 */
Dave Chinnera4082352013-08-28 10:18:06 +1000168 spin_lock(&bp->b_lock);
Brian Foster63db7c82017-05-31 08:22:52 -0700169 __xfs_buf_ioacct_dec(bp);
170
Dave Chinnera4082352013-08-28 10:18:06 +1000171 atomic_set(&bp->b_lru_ref, 0);
172 if (!(bp->b_state & XFS_BSTATE_DISPOSE) &&
Dave Chinnere80dfa12013-08-28 10:18:05 +1000173 (list_lru_del(&bp->b_target->bt_lru, &bp->b_lru)))
174 atomic_dec(&bp->b_hold);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100175
Dave Chinner430cbeb2010-12-02 16:30:55 +1100176 ASSERT(atomic_read(&bp->b_hold) >= 1);
Dave Chinnera4082352013-08-28 10:18:06 +1000177 spin_unlock(&bp->b_lock);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100178}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Dave Chinner3e85c862012-06-22 18:50:09 +1000180static int
181xfs_buf_get_maps(
182 struct xfs_buf *bp,
183 int map_count)
184{
185 ASSERT(bp->b_maps == NULL);
186 bp->b_map_count = map_count;
187
188 if (map_count == 1) {
Mark Tinguelyf4b42422012-12-04 17:18:02 -0600189 bp->b_maps = &bp->__b_map;
Dave Chinner3e85c862012-06-22 18:50:09 +1000190 return 0;
191 }
192
193 bp->b_maps = kmem_zalloc(map_count * sizeof(struct xfs_buf_map),
194 KM_NOFS);
195 if (!bp->b_maps)
Dave Chinner24513372014-06-25 14:58:08 +1000196 return -ENOMEM;
Dave Chinner3e85c862012-06-22 18:50:09 +1000197 return 0;
198}
199
200/*
201 * Frees b_pages if it was allocated.
202 */
203static void
204xfs_buf_free_maps(
205 struct xfs_buf *bp)
206{
Mark Tinguelyf4b42422012-12-04 17:18:02 -0600207 if (bp->b_maps != &bp->__b_map) {
Dave Chinner3e85c862012-06-22 18:50:09 +1000208 kmem_free(bp->b_maps);
209 bp->b_maps = NULL;
210 }
211}
212
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000213struct xfs_buf *
Dave Chinner3e85c862012-06-22 18:50:09 +1000214_xfs_buf_alloc(
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000215 struct xfs_buftarg *target,
Dave Chinner3e85c862012-06-22 18:50:09 +1000216 struct xfs_buf_map *map,
217 int nmaps,
Nathan Scottce8e9222006-01-11 15:39:08 +1100218 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000220 struct xfs_buf *bp;
Dave Chinner3e85c862012-06-22 18:50:09 +1000221 int error;
222 int i;
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000223
Dave Chinneraa5c1582012-04-23 15:58:56 +1000224 bp = kmem_zone_zalloc(xfs_buf_zone, KM_NOFS);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000225 if (unlikely(!bp))
226 return NULL;
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 /*
Dave Chinner12bcb3f2012-04-23 15:59:05 +1000229 * We don't want certain flags to appear in b_flags unless they are
230 * specifically set by later operations on the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 */
Dave Chinner611c9942012-04-23 15:59:07 +1000232 flags &= ~(XBF_UNMAPPED | XBF_TRYLOCK | XBF_ASYNC | XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Nathan Scottce8e9222006-01-11 15:39:08 +1100234 atomic_set(&bp->b_hold, 1);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100235 atomic_set(&bp->b_lru_ref, 1);
David Chinnerb4dd3302008-08-13 16:36:11 +1000236 init_completion(&bp->b_iowait);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100237 INIT_LIST_HEAD(&bp->b_lru);
Nathan Scottce8e9222006-01-11 15:39:08 +1100238 INIT_LIST_HEAD(&bp->b_list);
Carlos Maiolino643c8c02018-01-24 13:38:49 -0800239 INIT_LIST_HEAD(&bp->b_li_list);
Thomas Gleixnera731cd12010-09-07 14:33:15 +0000240 sema_init(&bp->b_sema, 0); /* held, no waiters */
Dave Chinnera4082352013-08-28 10:18:06 +1000241 spin_lock_init(&bp->b_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100242 XB_SET_OWNER(bp);
243 bp->b_target = target;
Dave Chinner3e85c862012-06-22 18:50:09 +1000244 bp->b_flags = flags;
Dave Chinnerde1cbee2012-04-23 15:58:50 +1000245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /*
Dave Chinneraa0e8832012-04-23 15:58:52 +1000247 * Set length and io_length to the same value initially.
248 * I/O routines should use io_length, which will be the same in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 * most cases but may be reset (e.g. XFS recovery).
250 */
Dave Chinner3e85c862012-06-22 18:50:09 +1000251 error = xfs_buf_get_maps(bp, nmaps);
252 if (error) {
253 kmem_zone_free(xfs_buf_zone, bp);
254 return NULL;
255 }
256
257 bp->b_bn = map[0].bm_bn;
258 bp->b_length = 0;
259 for (i = 0; i < nmaps; i++) {
260 bp->b_maps[i].bm_bn = map[i].bm_bn;
261 bp->b_maps[i].bm_len = map[i].bm_len;
262 bp->b_length += map[i].bm_len;
263 }
264 bp->b_io_length = bp->b_length;
265
Nathan Scottce8e9222006-01-11 15:39:08 +1100266 atomic_set(&bp->b_pin_count, 0);
267 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100269 XFS_STATS_INC(target->bt_mount, xb_create);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000270 trace_xfs_buf_init(bp, _RET_IP_);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000271
272 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
275/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100276 * Allocate a page array capable of holding a specified number
277 * of pages, and point the page buf at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 */
279STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100280_xfs_buf_get_pages(
281 xfs_buf_t *bp,
Eric Sandeen87937bf2014-04-14 19:01:20 +1000282 int page_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 /* Make sure that we have a page list */
Nathan Scottce8e9222006-01-11 15:39:08 +1100285 if (bp->b_pages == NULL) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100286 bp->b_page_count = page_count;
287 if (page_count <= XB_PAGES) {
288 bp->b_pages = bp->b_page_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 } else {
Nathan Scottce8e9222006-01-11 15:39:08 +1100290 bp->b_pages = kmem_alloc(sizeof(struct page *) *
Dave Chinneraa5c1582012-04-23 15:58:56 +1000291 page_count, KM_NOFS);
Nathan Scottce8e9222006-01-11 15:39:08 +1100292 if (bp->b_pages == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 return -ENOMEM;
294 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100295 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297 return 0;
298}
299
300/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100301 * Frees b_pages if it was allocated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 */
303STATIC void
Nathan Scottce8e9222006-01-11 15:39:08 +1100304_xfs_buf_free_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 xfs_buf_t *bp)
306{
Nathan Scottce8e9222006-01-11 15:39:08 +1100307 if (bp->b_pages != bp->b_page_array) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000308 kmem_free(bp->b_pages);
Dave Chinner3fc98b12009-12-14 23:11:57 +0000309 bp->b_pages = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311}
312
313/*
314 * Releases the specified buffer.
315 *
316 * The modification state of any associated pages is left unchanged.
Zhi Yong Wub46fe822013-08-07 10:10:59 +0000317 * The buffer must not be on any hash - use xfs_buf_rele instead for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 * hashed and refcounted buffers
319 */
320void
Nathan Scottce8e9222006-01-11 15:39:08 +1100321xfs_buf_free(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 xfs_buf_t *bp)
323{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000324 trace_xfs_buf_free(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Dave Chinner430cbeb2010-12-02 16:30:55 +1100326 ASSERT(list_empty(&bp->b_lru));
327
Dave Chinner0e6e8472011-03-26 09:16:45 +1100328 if (bp->b_flags & _XBF_PAGES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 uint i;
330
James Bottomley73c77e22010-01-25 11:42:24 -0600331 if (xfs_buf_is_vmapped(bp))
Alex Elder8a262e52010-03-16 18:55:56 +0000332 vm_unmap_ram(bp->b_addr - bp->b_offset,
333 bp->b_page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Nathan Scott948ecdb2006-09-28 11:03:13 +1000335 for (i = 0; i < bp->b_page_count; i++) {
336 struct page *page = bp->b_pages[i];
337
Dave Chinner0e6e8472011-03-26 09:16:45 +1100338 __free_page(page);
Nathan Scott948ecdb2006-09-28 11:03:13 +1000339 }
Dave Chinner0e6e8472011-03-26 09:16:45 +1100340 } else if (bp->b_flags & _XBF_KMEM)
341 kmem_free(bp->b_addr);
Dave Chinner3fc98b12009-12-14 23:11:57 +0000342 _xfs_buf_free_pages(bp);
Dave Chinner3e85c862012-06-22 18:50:09 +1000343 xfs_buf_free_maps(bp);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000344 kmem_zone_free(xfs_buf_zone, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
347/*
Dave Chinner0e6e8472011-03-26 09:16:45 +1100348 * Allocates all the pages for buffer in question and builds it's page list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 */
350STATIC int
Dave Chinner0e6e8472011-03-26 09:16:45 +1100351xfs_buf_allocate_memory(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 xfs_buf_t *bp,
353 uint flags)
354{
Dave Chinneraa0e8832012-04-23 15:58:52 +1000355 size_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 size_t nbytes, offset;
Nathan Scottce8e9222006-01-11 15:39:08 +1100357 gfp_t gfp_mask = xb_to_gfp(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 unsigned short page_count, i;
Dave Chinner795cac72012-04-23 15:58:53 +1000359 xfs_off_t start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 int error;
361
Dave Chinner0e6e8472011-03-26 09:16:45 +1100362 /*
363 * for buffers that are contained within a single page, just allocate
364 * the memory from the heap - there's no need for the complexity of
365 * page arrays to keep allocation down to order 0.
366 */
Dave Chinner795cac72012-04-23 15:58:53 +1000367 size = BBTOB(bp->b_length);
368 if (size < PAGE_SIZE) {
Dave Chinneraa5c1582012-04-23 15:58:56 +1000369 bp->b_addr = kmem_alloc(size, KM_NOFS);
Dave Chinner0e6e8472011-03-26 09:16:45 +1100370 if (!bp->b_addr) {
371 /* low memory - use alloc_page loop instead */
372 goto use_alloc_page;
373 }
374
Dave Chinner795cac72012-04-23 15:58:53 +1000375 if (((unsigned long)(bp->b_addr + size - 1) & PAGE_MASK) !=
Dave Chinner0e6e8472011-03-26 09:16:45 +1100376 ((unsigned long)bp->b_addr & PAGE_MASK)) {
377 /* b_addr spans two pages - use alloc_page instead */
378 kmem_free(bp->b_addr);
379 bp->b_addr = NULL;
380 goto use_alloc_page;
381 }
382 bp->b_offset = offset_in_page(bp->b_addr);
383 bp->b_pages = bp->b_page_array;
384 bp->b_pages[0] = virt_to_page(bp->b_addr);
385 bp->b_page_count = 1;
Dave Chinner611c9942012-04-23 15:59:07 +1000386 bp->b_flags |= _XBF_KMEM;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100387 return 0;
388 }
389
390use_alloc_page:
Mark Tinguelyf4b42422012-12-04 17:18:02 -0600391 start = BBTOB(bp->b_maps[0].bm_bn) >> PAGE_SHIFT;
392 end = (BBTOB(bp->b_maps[0].bm_bn + bp->b_length) + PAGE_SIZE - 1)
Dave Chinnercbb7baa2012-06-22 18:50:08 +1000393 >> PAGE_SHIFT;
Dave Chinner795cac72012-04-23 15:58:53 +1000394 page_count = end - start;
Eric Sandeen87937bf2014-04-14 19:01:20 +1000395 error = _xfs_buf_get_pages(bp, page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (unlikely(error))
397 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Nathan Scottce8e9222006-01-11 15:39:08 +1100399 offset = bp->b_offset;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100400 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Nathan Scottce8e9222006-01-11 15:39:08 +1100402 for (i = 0; i < bp->b_page_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 struct page *page;
404 uint retries = 0;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100405retry:
406 page = alloc_page(gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (unlikely(page == NULL)) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100408 if (flags & XBF_READ_AHEAD) {
409 bp->b_page_count = i;
Dave Chinner24513372014-06-25 14:58:08 +1000410 error = -ENOMEM;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100411 goto out_free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413
414 /*
415 * This could deadlock.
416 *
417 * But until all the XFS lowlevel code is revamped to
418 * handle buffer allocation failures we can't do much.
419 */
420 if (!(++retries % 100))
Dave Chinner4f107002011-03-07 10:00:35 +1100421 xfs_err(NULL,
Tetsuo Handa5bf97b12015-10-12 15:41:29 +1100422 "%s(%u) possible memory allocation deadlock in %s (mode:0x%x)",
423 current->comm, current->pid,
Harvey Harrison34a622b2008-04-10 12:19:21 +1000424 __func__, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100426 XFS_STATS_INC(bp->b_target->bt_mount, xb_page_retries);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200427 congestion_wait(BLK_RW_ASYNC, HZ/50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 goto retry;
429 }
430
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100431 XFS_STATS_INC(bp->b_target->bt_mount, xb_page_found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Dave Chinner0e6e8472011-03-26 09:16:45 +1100433 nbytes = min_t(size_t, size, PAGE_SIZE - offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 size -= nbytes;
Nathan Scottce8e9222006-01-11 15:39:08 +1100435 bp->b_pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 offset = 0;
437 }
Dave Chinner0e6e8472011-03-26 09:16:45 +1100438 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Dave Chinner0e6e8472011-03-26 09:16:45 +1100440out_free_pages:
441 for (i = 0; i < bp->b_page_count; i++)
442 __free_page(bp->b_pages[i]);
Darrick J. Wong2aa6ba7b2017-01-25 20:24:57 -0800443 bp->b_flags &= ~_XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return error;
445}
446
447/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300448 * Map buffer into kernel address-space if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 */
450STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100451_xfs_buf_map_pages(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 xfs_buf_t *bp,
453 uint flags)
454{
Dave Chinner0e6e8472011-03-26 09:16:45 +1100455 ASSERT(bp->b_flags & _XBF_PAGES);
Nathan Scottce8e9222006-01-11 15:39:08 +1100456 if (bp->b_page_count == 1) {
Dave Chinner0e6e8472011-03-26 09:16:45 +1100457 /* A single page buffer is always mappable */
Nathan Scottce8e9222006-01-11 15:39:08 +1100458 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
Dave Chinner611c9942012-04-23 15:59:07 +1000459 } else if (flags & XBF_UNMAPPED) {
460 bp->b_addr = NULL;
461 } else {
Dave Chinnera19fb382011-03-26 09:13:42 +1100462 int retried = 0;
Michal Hocko9ba1fb22017-05-03 14:53:19 -0700463 unsigned nofs_flag;
Dave Chinnera19fb382011-03-26 09:13:42 +1100464
Dave Chinnerae687e52014-03-07 16:19:14 +1100465 /*
466 * vm_map_ram() will allocate auxillary structures (e.g.
467 * pagetables) with GFP_KERNEL, yet we are likely to be under
468 * GFP_NOFS context here. Hence we need to tell memory reclaim
Michal Hocko9ba1fb22017-05-03 14:53:19 -0700469 * that we are in such a context via PF_MEMALLOC_NOFS to prevent
Dave Chinnerae687e52014-03-07 16:19:14 +1100470 * memory reclaim re-entering the filesystem here and
471 * potentially deadlocking.
472 */
Michal Hocko9ba1fb22017-05-03 14:53:19 -0700473 nofs_flag = memalloc_nofs_save();
Dave Chinnera19fb382011-03-26 09:13:42 +1100474 do {
475 bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
476 -1, PAGE_KERNEL);
477 if (bp->b_addr)
478 break;
479 vm_unmap_aliases();
480 } while (retried++ <= 1);
Michal Hocko9ba1fb22017-05-03 14:53:19 -0700481 memalloc_nofs_restore(nofs_flag);
Dave Chinnera19fb382011-03-26 09:13:42 +1100482
483 if (!bp->b_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return -ENOMEM;
Nathan Scottce8e9222006-01-11 15:39:08 +1100485 bp->b_addr += bp->b_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487
488 return 0;
489}
490
491/*
492 * Finding and Reading Buffers
493 */
Lucas Stach6031e732016-12-07 17:36:36 +1100494static int
495_xfs_buf_obj_cmp(
496 struct rhashtable_compare_arg *arg,
497 const void *obj)
498{
499 const struct xfs_buf_map *map = arg->key;
500 const struct xfs_buf *bp = obj;
501
502 /*
503 * The key hashing in the lookup path depends on the key being the
504 * first element of the compare_arg, make sure to assert this.
505 */
506 BUILD_BUG_ON(offsetof(struct xfs_buf_map, bm_bn) != 0);
507
508 if (bp->b_bn != map->bm_bn)
509 return 1;
510
511 if (unlikely(bp->b_length != map->bm_len)) {
512 /*
513 * found a block number match. If the range doesn't
514 * match, the only way this is allowed is if the buffer
515 * in the cache is stale and the transaction that made
516 * it stale has not yet committed. i.e. we are
517 * reallocating a busy extent. Skip this buffer and
518 * continue searching for an exact match.
519 */
520 ASSERT(bp->b_flags & XBF_STALE);
521 return 1;
522 }
523 return 0;
524}
525
526static const struct rhashtable_params xfs_buf_hash_params = {
527 .min_size = 32, /* empty AGs have minimal footprint */
528 .nelem_hint = 16,
529 .key_len = sizeof(xfs_daddr_t),
530 .key_offset = offsetof(struct xfs_buf, b_bn),
531 .head_offset = offsetof(struct xfs_buf, b_rhash_head),
532 .automatic_shrinking = true,
533 .obj_cmpfn = _xfs_buf_obj_cmp,
534};
535
536int
537xfs_buf_hash_init(
538 struct xfs_perag *pag)
539{
540 spin_lock_init(&pag->pag_buf_lock);
541 return rhashtable_init(&pag->pag_buf_hash, &xfs_buf_hash_params);
542}
543
544void
545xfs_buf_hash_destroy(
546 struct xfs_perag *pag)
547{
548 rhashtable_destroy(&pag->pag_buf_hash);
549}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100552 * Look up, and creates if absent, a lockable buffer for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 * a given range of an inode. The buffer is returned
Chandra Seetharamaneabbaf12011-09-08 20:18:50 +0000554 * locked. No I/O is implied by this call.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 */
556xfs_buf_t *
Nathan Scottce8e9222006-01-11 15:39:08 +1100557_xfs_buf_find(
Dave Chinnere70b73f2012-04-23 15:58:49 +1000558 struct xfs_buftarg *btp,
Dave Chinner3e85c862012-06-22 18:50:09 +1000559 struct xfs_buf_map *map,
560 int nmaps,
Nathan Scottce8e9222006-01-11 15:39:08 +1100561 xfs_buf_flags_t flags,
562 xfs_buf_t *new_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Dave Chinner74f75a02010-09-24 19:59:04 +1000564 struct xfs_perag *pag;
Dave Chinner74f75a02010-09-24 19:59:04 +1000565 xfs_buf_t *bp;
Lucas Stach6031e732016-12-07 17:36:36 +1100566 struct xfs_buf_map cmap = { .bm_bn = map[0].bm_bn };
Dave Chinner10616b802013-01-21 23:53:52 +1100567 xfs_daddr_t eofs;
Dave Chinner3e85c862012-06-22 18:50:09 +1000568 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Dave Chinner3e85c862012-06-22 18:50:09 +1000570 for (i = 0; i < nmaps; i++)
Lucas Stach6031e732016-12-07 17:36:36 +1100571 cmap.bm_len += map[i].bm_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 /* Check for IOs smaller than the sector size / not sector aligned */
Lucas Stach6031e732016-12-07 17:36:36 +1100574 ASSERT(!(BBTOB(cmap.bm_len) < btp->bt_meta_sectorsize));
575 ASSERT(!(BBTOB(cmap.bm_bn) & (xfs_off_t)btp->bt_meta_sectormask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Dave Chinner10616b802013-01-21 23:53:52 +1100577 /*
578 * Corrupted block numbers can get through to here, unfortunately, so we
579 * have to check that the buffer falls within the filesystem bounds.
580 */
581 eofs = XFS_FSB_TO_BB(btp->bt_mount, btp->bt_mount->m_sb.sb_dblocks);
Lucas Stach6031e732016-12-07 17:36:36 +1100582 if (cmap.bm_bn < 0 || cmap.bm_bn >= eofs) {
Dave Chinner10616b802013-01-21 23:53:52 +1100583 /*
Dave Chinner24513372014-06-25 14:58:08 +1000584 * XXX (dgc): we should really be returning -EFSCORRUPTED here,
Dave Chinner10616b802013-01-21 23:53:52 +1100585 * but none of the higher level infrastructure supports
586 * returning a specific error on buffer lookup failures.
587 */
588 xfs_alert(btp->bt_mount,
Darrick J. Wongc219b012018-01-08 11:39:18 -0800589 "%s: daddr 0x%llx out of range, EOFS 0x%llx",
Lucas Stach6031e732016-12-07 17:36:36 +1100590 __func__, cmap.bm_bn, eofs);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000591 WARN_ON(1);
Dave Chinner10616b802013-01-21 23:53:52 +1100592 return NULL;
593 }
594
Dave Chinner74f75a02010-09-24 19:59:04 +1000595 pag = xfs_perag_get(btp->bt_mount,
Lucas Stach6031e732016-12-07 17:36:36 +1100596 xfs_daddr_to_agno(btp->bt_mount, cmap.bm_bn));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Dave Chinner74f75a02010-09-24 19:59:04 +1000598 spin_lock(&pag->pag_buf_lock);
Lucas Stach6031e732016-12-07 17:36:36 +1100599 bp = rhashtable_lookup_fast(&pag->pag_buf_hash, &cmap,
600 xfs_buf_hash_params);
601 if (bp) {
602 atomic_inc(&bp->b_hold);
603 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605
606 /* No match found */
Nathan Scottce8e9222006-01-11 15:39:08 +1100607 if (new_bp) {
Dave Chinner74f75a02010-09-24 19:59:04 +1000608 /* the buffer keeps the perag reference until it is freed */
609 new_bp->b_pag = pag;
Lucas Stach6031e732016-12-07 17:36:36 +1100610 rhashtable_insert_fast(&pag->pag_buf_hash,
611 &new_bp->b_rhash_head,
612 xfs_buf_hash_params);
Dave Chinner74f75a02010-09-24 19:59:04 +1000613 spin_unlock(&pag->pag_buf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 } else {
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100615 XFS_STATS_INC(btp->bt_mount, xb_miss_locked);
Dave Chinner74f75a02010-09-24 19:59:04 +1000616 spin_unlock(&pag->pag_buf_lock);
617 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
Nathan Scottce8e9222006-01-11 15:39:08 +1100619 return new_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621found:
Dave Chinner74f75a02010-09-24 19:59:04 +1000622 spin_unlock(&pag->pag_buf_lock);
623 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200625 if (!xfs_buf_trylock(bp)) {
626 if (flags & XBF_TRYLOCK) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100627 xfs_buf_rele(bp);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100628 XFS_STATS_INC(btp->bt_mount, xb_busy_locked);
Nathan Scottce8e9222006-01-11 15:39:08 +1100629 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200631 xfs_buf_lock(bp);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100632 XFS_STATS_INC(btp->bt_mount, xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634
Dave Chinner0e6e8472011-03-26 09:16:45 +1100635 /*
636 * if the buffer is stale, clear all the external state associated with
637 * it. We need to keep flags such as how we allocated the buffer memory
638 * intact here.
639 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100640 if (bp->b_flags & XBF_STALE) {
641 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
Dave Chinnercfb02852012-11-12 22:54:19 +1100642 ASSERT(bp->b_iodone == NULL);
Dave Chinner611c9942012-04-23 15:59:07 +1000643 bp->b_flags &= _XBF_KMEM | _XBF_PAGES;
Dave Chinner1813dd62012-11-14 17:54:40 +1100644 bp->b_ops = NULL;
David Chinner2f926582005-09-05 08:33:35 +1000645 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000646
647 trace_xfs_buf_find(bp, flags, _RET_IP_);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100648 XFS_STATS_INC(btp->bt_mount, xb_get_locked);
Nathan Scottce8e9222006-01-11 15:39:08 +1100649 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
652/*
Dave Chinner38158322011-09-30 04:45:02 +0000653 * Assembles a buffer covering the specified range. The code is optimised for
654 * cache hits, as metadata intensive workloads will see 3 orders of magnitude
655 * more hits than misses.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
Dave Chinner38158322011-09-30 04:45:02 +0000657struct xfs_buf *
Dave Chinner6dde2702012-06-22 18:50:10 +1000658xfs_buf_get_map(
659 struct xfs_buftarg *target,
660 struct xfs_buf_map *map,
661 int nmaps,
Nathan Scottce8e9222006-01-11 15:39:08 +1100662 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Dave Chinner38158322011-09-30 04:45:02 +0000664 struct xfs_buf *bp;
665 struct xfs_buf *new_bp;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100666 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Dave Chinner6dde2702012-06-22 18:50:10 +1000668 bp = _xfs_buf_find(target, map, nmaps, flags, NULL);
Dave Chinner38158322011-09-30 04:45:02 +0000669 if (likely(bp))
670 goto found;
671
Dave Chinner6dde2702012-06-22 18:50:10 +1000672 new_bp = _xfs_buf_alloc(target, map, nmaps, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100673 if (unlikely(!new_bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return NULL;
675
Dave Chinnerfe2429b2012-04-23 15:58:45 +1000676 error = xfs_buf_allocate_memory(new_bp, flags);
677 if (error) {
Dave Chinner3e85c862012-06-22 18:50:09 +1000678 xfs_buf_free(new_bp);
Dave Chinner38158322011-09-30 04:45:02 +0000679 return NULL;
680 }
681
Dave Chinner6dde2702012-06-22 18:50:10 +1000682 bp = _xfs_buf_find(target, map, nmaps, flags, new_bp);
Dave Chinnerfe2429b2012-04-23 15:58:45 +1000683 if (!bp) {
684 xfs_buf_free(new_bp);
685 return NULL;
686 }
687
688 if (bp != new_bp)
689 xfs_buf_free(new_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Dave Chinner38158322011-09-30 04:45:02 +0000691found:
Dave Chinner611c9942012-04-23 15:59:07 +1000692 if (!bp->b_addr) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100693 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100695 xfs_warn(target->bt_mount,
Eric Sandeen08e96e12013-10-11 20:59:05 -0500696 "%s: failed to map pagesn", __func__);
Dave Chinnera8acad72012-04-23 15:58:54 +1000697 xfs_buf_relse(bp);
698 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
700 }
701
Dave Chinnerb79f4a12016-01-12 07:03:44 +1100702 /*
703 * Clear b_error if this is a lookup from a caller that doesn't expect
704 * valid data to be found in the buffer.
705 */
706 if (!(flags & XBF_READ))
707 xfs_buf_ioerror(bp, 0);
708
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100709 XFS_STATS_INC(target->bt_mount, xb_get);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000710 trace_xfs_buf_get(bp, flags, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100711 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100714STATIC int
715_xfs_buf_read(
716 xfs_buf_t *bp,
717 xfs_buf_flags_t flags)
718{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000719 ASSERT(!(flags & XBF_WRITE));
Mark Tinguelyf4b42422012-12-04 17:18:02 -0600720 ASSERT(bp->b_maps[0].bm_bn != XFS_BUF_DADDR_NULL);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100721
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000722 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_READ_AHEAD);
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +0200723 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | XBF_READ_AHEAD);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100724
Dave Chinner595bff72014-10-02 09:05:14 +1000725 if (flags & XBF_ASYNC) {
726 xfs_buf_submit(bp);
Dave Chinner0e95f192012-04-23 15:58:46 +1000727 return 0;
Dave Chinner595bff72014-10-02 09:05:14 +1000728 }
729 return xfs_buf_submit_wait(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100730}
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732xfs_buf_t *
Dave Chinner6dde2702012-06-22 18:50:10 +1000733xfs_buf_read_map(
734 struct xfs_buftarg *target,
735 struct xfs_buf_map *map,
736 int nmaps,
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100737 xfs_buf_flags_t flags,
Dave Chinner1813dd62012-11-14 17:54:40 +1100738 const struct xfs_buf_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Dave Chinner6dde2702012-06-22 18:50:10 +1000740 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Nathan Scottce8e9222006-01-11 15:39:08 +1100742 flags |= XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Dave Chinner6dde2702012-06-22 18:50:10 +1000744 bp = xfs_buf_get_map(target, map, nmaps, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100745 if (bp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000746 trace_xfs_buf_read(bp, flags, _RET_IP_);
747
Dave Chinnerb0388bf2016-02-10 15:01:11 +1100748 if (!(bp->b_flags & XBF_DONE)) {
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100749 XFS_STATS_INC(target->bt_mount, xb_get_read);
Dave Chinner1813dd62012-11-14 17:54:40 +1100750 bp->b_ops = ops;
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100751 _xfs_buf_read(bp, flags);
Nathan Scottce8e9222006-01-11 15:39:08 +1100752 } else if (flags & XBF_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /*
754 * Read ahead call which is already satisfied,
755 * drop the buffer
756 */
Dave Chinnera8acad72012-04-23 15:58:54 +1000757 xfs_buf_relse(bp);
758 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /* We do not want read in the flags */
Nathan Scottce8e9222006-01-11 15:39:08 +1100761 bp->b_flags &= ~XBF_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763 }
764
Nathan Scottce8e9222006-01-11 15:39:08 +1100765 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
768/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100769 * If we are not low on memory then do the readahead in a deadlock
770 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 */
772void
Dave Chinner6dde2702012-06-22 18:50:10 +1000773xfs_buf_readahead_map(
774 struct xfs_buftarg *target,
775 struct xfs_buf_map *map,
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100776 int nmaps,
Dave Chinner1813dd62012-11-14 17:54:40 +1100777 const struct xfs_buf_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Jan Karaefa7c9f2017-02-02 15:56:53 +0100779 if (bdi_read_congested(target->bt_bdev->bd_bdi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return;
781
Dave Chinner6dde2702012-06-22 18:50:10 +1000782 xfs_buf_read_map(target, map, nmaps,
Dave Chinner1813dd62012-11-14 17:54:40 +1100783 XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD, ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
Dave Chinner5adc94c2010-09-24 21:58:31 +1000786/*
787 * Read an uncached buffer from disk. Allocates and returns a locked
788 * buffer containing the disk contents or nothing.
789 */
Dave Chinnerba372672014-10-02 09:05:32 +1000790int
Dave Chinner5adc94c2010-09-24 21:58:31 +1000791xfs_buf_read_uncached(
Dave Chinner5adc94c2010-09-24 21:58:31 +1000792 struct xfs_buftarg *target,
793 xfs_daddr_t daddr,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000794 size_t numblks,
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100795 int flags,
Dave Chinnerba372672014-10-02 09:05:32 +1000796 struct xfs_buf **bpp,
Dave Chinner1813dd62012-11-14 17:54:40 +1100797 const struct xfs_buf_ops *ops)
Dave Chinner5adc94c2010-09-24 21:58:31 +1000798{
Dave Chinnereab4e632012-11-12 22:54:02 +1100799 struct xfs_buf *bp;
Dave Chinner5adc94c2010-09-24 21:58:31 +1000800
Dave Chinnerba372672014-10-02 09:05:32 +1000801 *bpp = NULL;
802
Dave Chinnere70b73f2012-04-23 15:58:49 +1000803 bp = xfs_buf_get_uncached(target, numblks, flags);
Dave Chinner5adc94c2010-09-24 21:58:31 +1000804 if (!bp)
Dave Chinnerba372672014-10-02 09:05:32 +1000805 return -ENOMEM;
Dave Chinner5adc94c2010-09-24 21:58:31 +1000806
807 /* set up the buffer for a read IO */
Dave Chinner3e85c862012-06-22 18:50:09 +1000808 ASSERT(bp->b_map_count == 1);
Dave Chinnerba372672014-10-02 09:05:32 +1000809 bp->b_bn = XFS_BUF_DADDR_NULL; /* always null for uncached buffers */
Dave Chinner3e85c862012-06-22 18:50:09 +1000810 bp->b_maps[0].bm_bn = daddr;
Dave Chinnercbb7baa2012-06-22 18:50:08 +1000811 bp->b_flags |= XBF_READ;
Dave Chinner1813dd62012-11-14 17:54:40 +1100812 bp->b_ops = ops;
Dave Chinner5adc94c2010-09-24 21:58:31 +1000813
Dave Chinner595bff72014-10-02 09:05:14 +1000814 xfs_buf_submit_wait(bp);
Dave Chinnerba372672014-10-02 09:05:32 +1000815 if (bp->b_error) {
816 int error = bp->b_error;
Christoph Hellwig83a0adc2013-12-17 00:03:52 -0800817 xfs_buf_relse(bp);
Dave Chinnerba372672014-10-02 09:05:32 +1000818 return error;
Christoph Hellwig83a0adc2013-12-17 00:03:52 -0800819 }
Dave Chinnerba372672014-10-02 09:05:32 +1000820
821 *bpp = bp;
822 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
Dave Chinner44396472011-04-21 09:34:27 +0000825/*
826 * Return a buffer allocated as an empty buffer and associated to external
827 * memory via xfs_buf_associate_memory() back to it's empty state.
828 */
829void
830xfs_buf_set_empty(
831 struct xfs_buf *bp,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000832 size_t numblks)
Dave Chinner44396472011-04-21 09:34:27 +0000833{
834 if (bp->b_pages)
835 _xfs_buf_free_pages(bp);
836
837 bp->b_pages = NULL;
838 bp->b_page_count = 0;
839 bp->b_addr = NULL;
Dave Chinner4e94b712012-04-23 15:58:51 +1000840 bp->b_length = numblks;
Dave Chinneraa0e8832012-04-23 15:58:52 +1000841 bp->b_io_length = numblks;
Dave Chinner3e85c862012-06-22 18:50:09 +1000842
843 ASSERT(bp->b_map_count == 1);
Dave Chinner44396472011-04-21 09:34:27 +0000844 bp->b_bn = XFS_BUF_DADDR_NULL;
Dave Chinner3e85c862012-06-22 18:50:09 +1000845 bp->b_maps[0].bm_bn = XFS_BUF_DADDR_NULL;
846 bp->b_maps[0].bm_len = bp->b_length;
Dave Chinner44396472011-04-21 09:34:27 +0000847}
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849static inline struct page *
850mem_to_page(
851 void *addr)
852{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800853 if ((!is_vmalloc_addr(addr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return virt_to_page(addr);
855 } else {
856 return vmalloc_to_page(addr);
857 }
858}
859
860int
Nathan Scottce8e9222006-01-11 15:39:08 +1100861xfs_buf_associate_memory(
862 xfs_buf_t *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 void *mem,
864 size_t len)
865{
866 int rval;
867 int i = 0;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100868 unsigned long pageaddr;
869 unsigned long offset;
870 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 int page_count;
872
Dave Chinner0e6e8472011-03-26 09:16:45 +1100873 pageaddr = (unsigned long)mem & PAGE_MASK;
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100874 offset = (unsigned long)mem - pageaddr;
Dave Chinner0e6e8472011-03-26 09:16:45 +1100875 buflen = PAGE_ALIGN(len + offset);
876 page_count = buflen >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 /* Free any previous set of page pointers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100879 if (bp->b_pages)
880 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Nathan Scottce8e9222006-01-11 15:39:08 +1100882 bp->b_pages = NULL;
883 bp->b_addr = mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Eric Sandeen87937bf2014-04-14 19:01:20 +1000885 rval = _xfs_buf_get_pages(bp, page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (rval)
887 return rval;
888
Nathan Scottce8e9222006-01-11 15:39:08 +1100889 bp->b_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Lachlan McIlroyd1afb672007-11-27 17:01:24 +1100891 for (i = 0; i < bp->b_page_count; i++) {
892 bp->b_pages[i] = mem_to_page((void *)pageaddr);
Dave Chinner0e6e8472011-03-26 09:16:45 +1100893 pageaddr += PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Dave Chinneraa0e8832012-04-23 15:58:52 +1000896 bp->b_io_length = BTOBB(len);
Dave Chinner4e94b712012-04-23 15:58:51 +1000897 bp->b_length = BTOBB(buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 return 0;
900}
901
902xfs_buf_t *
Dave Chinner686865f2010-09-24 20:07:47 +1000903xfs_buf_get_uncached(
904 struct xfs_buftarg *target,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000905 size_t numblks,
Dave Chinner686865f2010-09-24 20:07:47 +1000906 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Dave Chinnere70b73f2012-04-23 15:58:49 +1000908 unsigned long page_count;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000909 int error, i;
Dave Chinner3e85c862012-06-22 18:50:09 +1000910 struct xfs_buf *bp;
911 DEFINE_SINGLE_BUF_MAP(map, XFS_BUF_DADDR_NULL, numblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Brian Fosterc891c302016-07-20 11:13:43 +1000913 /* flags might contain irrelevant bits, pass only what we care about */
914 bp = _xfs_buf_alloc(target, &map, 1, flags & XBF_NO_IOACCT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (unlikely(bp == NULL))
916 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Dave Chinnere70b73f2012-04-23 15:58:49 +1000918 page_count = PAGE_ALIGN(numblks << BBSHIFT) >> PAGE_SHIFT;
Eric Sandeen87937bf2014-04-14 19:01:20 +1000919 error = _xfs_buf_get_pages(bp, page_count);
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000920 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 goto fail_free_buf;
922
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000923 for (i = 0; i < page_count; i++) {
Dave Chinner686865f2010-09-24 20:07:47 +1000924 bp->b_pages[i] = alloc_page(xb_to_gfp(flags));
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000925 if (!bp->b_pages[i])
926 goto fail_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000928 bp->b_flags |= _XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Dave Chinner611c9942012-04-23 15:59:07 +1000930 error = _xfs_buf_map_pages(bp, 0);
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000931 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100932 xfs_warn(target->bt_mount,
Eric Sandeen08e96e12013-10-11 20:59:05 -0500933 "%s: failed to map pages", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 goto fail_free_mem;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Dave Chinner686865f2010-09-24 20:07:47 +1000937 trace_xfs_buf_get_uncached(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return bp;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 fail_free_mem:
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000941 while (--i >= 0)
942 __free_page(bp->b_pages[i]);
Christoph Hellwigca165b82007-05-24 15:21:11 +1000943 _xfs_buf_free_pages(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 fail_free_buf:
Dave Chinner3e85c862012-06-22 18:50:09 +1000945 xfs_buf_free_maps(bp);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000946 kmem_zone_free(xfs_buf_zone, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 fail:
948 return NULL;
949}
950
951/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 * Increment reference count on buffer, to hold the buffer concurrently
953 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 * Must hold the buffer already to call this function.
955 */
956void
Nathan Scottce8e9222006-01-11 15:39:08 +1100957xfs_buf_hold(
958 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000960 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100961 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
964/*
Brian Foster9c7504a2016-07-20 11:15:28 +1000965 * Release a hold on the specified buffer. If the hold count is 1, the buffer is
966 * placed on LRU or freed (depending on b_lru_ref).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 */
968void
Nathan Scottce8e9222006-01-11 15:39:08 +1100969xfs_buf_rele(
970 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
Dave Chinner74f75a02010-09-24 19:59:04 +1000972 struct xfs_perag *pag = bp->b_pag;
Brian Foster9c7504a2016-07-20 11:15:28 +1000973 bool release;
974 bool freebuf = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000976 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Dave Chinner74f75a02010-09-24 19:59:04 +1000978 if (!pag) {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100979 ASSERT(list_empty(&bp->b_lru));
Brian Foster9c7504a2016-07-20 11:15:28 +1000980 if (atomic_dec_and_test(&bp->b_hold)) {
981 xfs_buf_ioacct_dec(bp);
Nathan Scottfad3aa12006-02-01 12:14:52 +1100982 xfs_buf_free(bp);
Brian Foster9c7504a2016-07-20 11:15:28 +1000983 }
Nathan Scottfad3aa12006-02-01 12:14:52 +1100984 return;
985 }
986
Lachlan McIlroy37906892008-08-13 15:42:10 +1000987 ASSERT(atomic_read(&bp->b_hold) > 0);
Dave Chinnera4082352013-08-28 10:18:06 +1000988
Brian Foster9c7504a2016-07-20 11:15:28 +1000989 release = atomic_dec_and_lock(&bp->b_hold, &pag->pag_buf_lock);
990 spin_lock(&bp->b_lock);
991 if (!release) {
992 /*
993 * Drop the in-flight state if the buffer is already on the LRU
994 * and it holds the only reference. This is racy because we
995 * haven't acquired the pag lock, but the use of _XBF_IN_FLIGHT
996 * ensures the decrement occurs only once per-buf.
997 */
998 if ((atomic_read(&bp->b_hold) == 1) && !list_empty(&bp->b_lru))
Brian Foster63db7c82017-05-31 08:22:52 -0700999 __xfs_buf_ioacct_dec(bp);
Brian Foster9c7504a2016-07-20 11:15:28 +10001000 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
Brian Foster9c7504a2016-07-20 11:15:28 +10001002
1003 /* the last reference has been dropped ... */
Brian Foster63db7c82017-05-31 08:22:52 -07001004 __xfs_buf_ioacct_dec(bp);
Brian Foster9c7504a2016-07-20 11:15:28 +10001005 if (!(bp->b_flags & XBF_STALE) && atomic_read(&bp->b_lru_ref)) {
1006 /*
1007 * If the buffer is added to the LRU take a new reference to the
1008 * buffer for the LRU and clear the (now stale) dispose list
1009 * state flag
1010 */
1011 if (list_lru_add(&bp->b_target->bt_lru, &bp->b_lru)) {
1012 bp->b_state &= ~XFS_BSTATE_DISPOSE;
1013 atomic_inc(&bp->b_hold);
1014 }
1015 spin_unlock(&pag->pag_buf_lock);
1016 } else {
1017 /*
1018 * most of the time buffers will already be removed from the
1019 * LRU, so optimise that case by checking for the
1020 * XFS_BSTATE_DISPOSE flag indicating the last list the buffer
1021 * was on was the disposal list
1022 */
1023 if (!(bp->b_state & XFS_BSTATE_DISPOSE)) {
1024 list_lru_del(&bp->b_target->bt_lru, &bp->b_lru);
1025 } else {
1026 ASSERT(list_empty(&bp->b_lru));
1027 }
1028
1029 ASSERT(!(bp->b_flags & _XBF_DELWRI_Q));
Lucas Stach6031e732016-12-07 17:36:36 +11001030 rhashtable_remove_fast(&pag->pag_buf_hash, &bp->b_rhash_head,
1031 xfs_buf_hash_params);
Brian Foster9c7504a2016-07-20 11:15:28 +10001032 spin_unlock(&pag->pag_buf_lock);
1033 xfs_perag_put(pag);
1034 freebuf = true;
1035 }
1036
1037out_unlock:
1038 spin_unlock(&bp->b_lock);
1039
1040 if (freebuf)
1041 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
1044
1045/*
Dave Chinner0e6e8472011-03-26 09:16:45 +11001046 * Lock a buffer object, if it is not already locked.
Dave Chinner90810b92010-11-30 15:16:16 +11001047 *
1048 * If we come across a stale, pinned, locked buffer, we know that we are
1049 * being asked to lock a buffer that has been reallocated. Because it is
1050 * pinned, we know that the log has not been pushed to disk and hence it
1051 * will still be locked. Rather than continuing to have trylock attempts
1052 * fail until someone else pushes the log, push it ourselves before
1053 * returning. This means that the xfsaild will not get stuck trying
1054 * to push on stale inode buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 */
1056int
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001057xfs_buf_trylock(
1058 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
1060 int locked;
1061
Nathan Scottce8e9222006-01-11 15:39:08 +11001062 locked = down_trylock(&bp->b_sema) == 0;
Darrick J. Wong479c6412016-06-21 11:53:28 +10001063 if (locked) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001064 XB_SET_OWNER(bp);
Darrick J. Wong479c6412016-06-21 11:53:28 +10001065 trace_xfs_buf_trylock(bp, _RET_IP_);
1066 } else {
1067 trace_xfs_buf_trylock_fail(bp, _RET_IP_);
1068 }
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001069 return locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072/*
Dave Chinner0e6e8472011-03-26 09:16:45 +11001073 * Lock a buffer object.
Dave Chinnered3b4d62010-05-21 12:07:08 +10001074 *
1075 * If we come across a stale, pinned, locked buffer, we know that we
1076 * are being asked to lock a buffer that has been reallocated. Because
1077 * it is pinned, we know that the log has not been pushed to disk and
1078 * hence it will still be locked. Rather than sleeping until someone
1079 * else pushes the log, push it ourselves before trying to get the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001081void
1082xfs_buf_lock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001083 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001085 trace_xfs_buf_lock(bp, _RET_IP_);
1086
Dave Chinnered3b4d62010-05-21 12:07:08 +10001087 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
Dave Chinnerebad8612010-09-22 10:47:20 +10001088 xfs_log_force(bp->b_target->bt_mount, 0);
Nathan Scottce8e9222006-01-11 15:39:08 +11001089 down(&bp->b_sema);
1090 XB_SET_OWNER(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001091
1092 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095void
Nathan Scottce8e9222006-01-11 15:39:08 +11001096xfs_buf_unlock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001097 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
Brian Foster20e8a062017-04-21 12:40:44 -07001099 ASSERT(xfs_buf_islocked(bp));
1100
Nathan Scottce8e9222006-01-11 15:39:08 +11001101 XB_CLEAR_OWNER(bp);
1102 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001103
1104 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
Nathan Scottce8e9222006-01-11 15:39:08 +11001107STATIC void
1108xfs_buf_wait_unpin(
1109 xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
1111 DECLARE_WAITQUEUE (wait, current);
1112
Nathan Scottce8e9222006-01-11 15:39:08 +11001113 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 return;
1115
Nathan Scottce8e9222006-01-11 15:39:08 +11001116 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 for (;;) {
1118 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +11001119 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 break;
Jens Axboe7eaceac2011-03-10 08:52:07 +01001121 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001123 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 set_current_state(TASK_RUNNING);
1125}
1126
1127/*
1128 * Buffer Utility Routines
1129 */
1130
Dave Chinnere8aaba92014-10-02 09:04:22 +10001131void
1132xfs_buf_ioend(
1133 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
Dave Chinnere8aaba92014-10-02 09:04:22 +10001135 bool read = bp->b_flags & XBF_READ;
1136
1137 trace_xfs_buf_iodone(bp, _RET_IP_);
Dave Chinner1813dd62012-11-14 17:54:40 +11001138
1139 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
Dave Chinnerd5929de2013-02-27 13:25:54 +11001140
Dave Chinner61be9c52014-10-02 09:04:31 +10001141 /*
1142 * Pull in IO completion errors now. We are guaranteed to be running
1143 * single threaded, so we don't need the lock to read b_io_error.
1144 */
1145 if (!bp->b_error && bp->b_io_error)
1146 xfs_buf_ioerror(bp, bp->b_io_error);
1147
Dave Chinnere8aaba92014-10-02 09:04:22 +10001148 /* Only validate buffers that were read without errors */
1149 if (read && !bp->b_error && bp->b_ops) {
1150 ASSERT(!bp->b_iodone);
Dave Chinner1813dd62012-11-14 17:54:40 +11001151 bp->b_ops->verify_read(bp);
Dave Chinnere8aaba92014-10-02 09:04:22 +10001152 }
1153
1154 if (!bp->b_error)
1155 bp->b_flags |= XBF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Christoph Hellwig80f6c292010-08-18 05:29:11 -04001157 if (bp->b_iodone)
Nathan Scottce8e9222006-01-11 15:39:08 +11001158 (*(bp->b_iodone))(bp);
1159 else if (bp->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 xfs_buf_relse(bp);
Dave Chinner595bff72014-10-02 09:05:14 +10001161 else
Dave Chinner1813dd62012-11-14 17:54:40 +11001162 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163}
1164
Dave Chinnere8aaba92014-10-02 09:04:22 +10001165static void
1166xfs_buf_ioend_work(
1167 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
Dave Chinnere8aaba92014-10-02 09:04:22 +10001169 struct xfs_buf *bp =
Brian Fosterb29c70f2014-12-04 09:43:17 +11001170 container_of(work, xfs_buf_t, b_ioend_work);
Dave Chinner1813dd62012-11-14 17:54:40 +11001171
Dave Chinnere8aaba92014-10-02 09:04:22 +10001172 xfs_buf_ioend(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
1174
Alexander Kuleshov211fe1a2016-01-04 16:10:42 +11001175static void
Dave Chinnere8aaba92014-10-02 09:04:22 +10001176xfs_buf_ioend_async(
1177 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Brian Fosterb29c70f2014-12-04 09:43:17 +11001179 INIT_WORK(&bp->b_ioend_work, xfs_buf_ioend_work);
1180 queue_work(bp->b_ioend_wq, &bp->b_ioend_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183void
Darrick J. Wong31ca03c2018-01-08 10:51:02 -08001184__xfs_buf_ioerror(
Nathan Scottce8e9222006-01-11 15:39:08 +11001185 xfs_buf_t *bp,
Darrick J. Wong31ca03c2018-01-08 10:51:02 -08001186 int error,
1187 xfs_failaddr_t failaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
Dave Chinner24513372014-06-25 14:58:08 +10001189 ASSERT(error <= 0 && error >= -1000);
1190 bp->b_error = error;
Darrick J. Wong31ca03c2018-01-08 10:51:02 -08001191 trace_xfs_buf_ioerror(bp, error, failaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193
Christoph Hellwig901796a2011-10-10 16:52:49 +00001194void
1195xfs_buf_ioerror_alert(
1196 struct xfs_buf *bp,
1197 const char *func)
1198{
1199 xfs_alert(bp->b_target->bt_mount,
Darrick J. Wongc219b012018-01-08 11:39:18 -08001200"metadata I/O error in \"%s\" at daddr 0x%llx len %d error %d",
1201 func, (uint64_t)XFS_BUF_ADDR(bp), bp->b_length,
1202 -bp->b_error);
Christoph Hellwig901796a2011-10-10 16:52:49 +00001203}
1204
Christoph Hellwiga2dcf5d2012-07-13 02:24:10 -04001205int
1206xfs_bwrite(
1207 struct xfs_buf *bp)
1208{
1209 int error;
1210
1211 ASSERT(xfs_buf_islocked(bp));
1212
1213 bp->b_flags |= XBF_WRITE;
Dave Chinner27187752014-10-02 09:04:56 +10001214 bp->b_flags &= ~(XBF_ASYNC | XBF_READ | _XBF_DELWRI_Q |
1215 XBF_WRITE_FAIL | XBF_DONE);
Christoph Hellwiga2dcf5d2012-07-13 02:24:10 -04001216
Dave Chinner595bff72014-10-02 09:05:14 +10001217 error = xfs_buf_submit_wait(bp);
Christoph Hellwiga2dcf5d2012-07-13 02:24:10 -04001218 if (error) {
1219 xfs_force_shutdown(bp->b_target->bt_mount,
1220 SHUTDOWN_META_IO_ERROR);
1221 }
1222 return error;
1223}
1224
Brian Foster9bdd9bd2016-05-18 10:56:41 +10001225static void
Nathan Scottce8e9222006-01-11 15:39:08 +11001226xfs_buf_bio_end_io(
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001227 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Brian Foster9bdd9bd2016-05-18 10:56:41 +10001229 struct xfs_buf *bp = (struct xfs_buf *)bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Dave Chinner37eb17e2012-11-12 22:09:46 +11001231 /*
1232 * don't overwrite existing errors - otherwise we can lose errors on
1233 * buffers that require multiple bios to complete.
1234 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001235 if (bio->bi_status) {
1236 int error = blk_status_to_errno(bio->bi_status);
1237
1238 cmpxchg(&bp->b_io_error, 0, error);
1239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Dave Chinner37eb17e2012-11-12 22:09:46 +11001241 if (!bp->b_error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
James Bottomley73c77e22010-01-25 11:42:24 -06001242 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1243
Dave Chinnere8aaba92014-10-02 09:04:22 +10001244 if (atomic_dec_and_test(&bp->b_io_remaining) == 1)
1245 xfs_buf_ioend_async(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Dave Chinner3e85c862012-06-22 18:50:09 +10001249static void
1250xfs_buf_ioapply_map(
1251 struct xfs_buf *bp,
1252 int map,
1253 int *buf_offset,
1254 int *count,
Mike Christie50bfcd02016-06-05 14:31:57 -05001255 int op,
1256 int op_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Dave Chinner3e85c862012-06-22 18:50:09 +10001258 int page_index;
1259 int total_nr_pages = bp->b_page_count;
1260 int nr_pages;
1261 struct bio *bio;
1262 sector_t sector = bp->b_maps[map].bm_bn;
1263 int size;
1264 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Dave Chinner3e85c862012-06-22 18:50:09 +10001266 /* skip the pages in the buffer before the start offset */
1267 page_index = 0;
1268 offset = *buf_offset;
1269 while (offset >= PAGE_SIZE) {
1270 page_index++;
1271 offset -= PAGE_SIZE;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001272 }
1273
Dave Chinner3e85c862012-06-22 18:50:09 +10001274 /*
1275 * Limit the IO size to the length of the current vector, and update the
1276 * remaining IO count for the next time around.
1277 */
1278 size = min_t(int, BBTOB(bp->b_maps[map].bm_len), *count);
1279 *count -= size;
1280 *buf_offset += size;
Christoph Hellwig34951f52011-07-26 15:06:44 +00001281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001283 atomic_inc(&bp->b_io_remaining);
Ming Leic908e382016-05-30 21:34:33 +08001284 nr_pages = min(total_nr_pages, BIO_MAX_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 bio = bio_alloc(GFP_NOIO, nr_pages);
Christoph Hellwig74d46992017-08-23 19:10:32 +02001287 bio_set_dev(bio, bp->b_target->bt_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001288 bio->bi_iter.bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001289 bio->bi_end_io = xfs_buf_bio_end_io;
1290 bio->bi_private = bp;
Mike Christie50bfcd02016-06-05 14:31:57 -05001291 bio_set_op_attrs(bio, op, op_flags);
Dave Chinner0e6e8472011-03-26 09:16:45 +11001292
Dave Chinner3e85c862012-06-22 18:50:09 +10001293 for (; size && nr_pages; nr_pages--, page_index++) {
Dave Chinner0e6e8472011-03-26 09:16:45 +11001294 int rbytes, nbytes = PAGE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 if (nbytes > size)
1297 nbytes = size;
1298
Dave Chinner3e85c862012-06-22 18:50:09 +10001299 rbytes = bio_add_page(bio, bp->b_pages[page_index], nbytes,
1300 offset);
Nathan Scottce8e9222006-01-11 15:39:08 +11001301 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 break;
1303
1304 offset = 0;
Dave Chinneraa0e8832012-04-23 15:58:52 +10001305 sector += BTOBB(nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 size -= nbytes;
1307 total_nr_pages--;
1308 }
1309
Kent Overstreet4f024f32013-10-11 15:44:27 -07001310 if (likely(bio->bi_iter.bi_size)) {
James Bottomley73c77e22010-01-25 11:42:24 -06001311 if (xfs_buf_is_vmapped(bp)) {
1312 flush_kernel_vmap_range(bp->b_addr,
1313 xfs_buf_vmap_len(bp));
1314 }
Mike Christie4e49ea42016-06-05 14:31:41 -05001315 submit_bio(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if (size)
1317 goto next_chunk;
1318 } else {
Dave Chinner37eb17e2012-11-12 22:09:46 +11001319 /*
1320 * This is guaranteed not to be the last io reference count
Dave Chinner595bff72014-10-02 09:05:14 +10001321 * because the caller (xfs_buf_submit) holds a count itself.
Dave Chinner37eb17e2012-11-12 22:09:46 +11001322 */
1323 atomic_dec(&bp->b_io_remaining);
Dave Chinner24513372014-06-25 14:58:08 +10001324 xfs_buf_ioerror(bp, -EIO);
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001325 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
Dave Chinner3e85c862012-06-22 18:50:09 +10001327
1328}
1329
1330STATIC void
1331_xfs_buf_ioapply(
1332 struct xfs_buf *bp)
1333{
1334 struct blk_plug plug;
Mike Christie50bfcd02016-06-05 14:31:57 -05001335 int op;
1336 int op_flags = 0;
Dave Chinner3e85c862012-06-22 18:50:09 +10001337 int offset;
1338 int size;
1339 int i;
1340
Dave Chinnerc163f9a2013-03-12 23:30:34 +11001341 /*
1342 * Make sure we capture only current IO errors rather than stale errors
1343 * left over from previous use of the buffer (e.g. failed readahead).
1344 */
1345 bp->b_error = 0;
1346
Brian Fosterb29c70f2014-12-04 09:43:17 +11001347 /*
1348 * Initialize the I/O completion workqueue if we haven't yet or the
1349 * submitter has not opted to specify a custom one.
1350 */
1351 if (!bp->b_ioend_wq)
1352 bp->b_ioend_wq = bp->b_target->bt_mount->m_buf_workqueue;
1353
Dave Chinner3e85c862012-06-22 18:50:09 +10001354 if (bp->b_flags & XBF_WRITE) {
Mike Christie50bfcd02016-06-05 14:31:57 -05001355 op = REQ_OP_WRITE;
Dave Chinner3e85c862012-06-22 18:50:09 +10001356 if (bp->b_flags & XBF_SYNCIO)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06001357 op_flags = REQ_SYNC;
Dave Chinner3e85c862012-06-22 18:50:09 +10001358 if (bp->b_flags & XBF_FUA)
Mike Christie50bfcd02016-06-05 14:31:57 -05001359 op_flags |= REQ_FUA;
Dave Chinner3e85c862012-06-22 18:50:09 +10001360 if (bp->b_flags & XBF_FLUSH)
Mike Christie28a8f0d2016-06-05 14:32:25 -05001361 op_flags |= REQ_PREFLUSH;
Dave Chinner1813dd62012-11-14 17:54:40 +11001362
1363 /*
1364 * Run the write verifier callback function if it exists. If
1365 * this function fails it will mark the buffer with an error and
1366 * the IO should not be dispatched.
1367 */
1368 if (bp->b_ops) {
1369 bp->b_ops->verify_write(bp);
1370 if (bp->b_error) {
1371 xfs_force_shutdown(bp->b_target->bt_mount,
1372 SHUTDOWN_CORRUPT_INCORE);
1373 return;
1374 }
Dave Chinner400b9d82014-08-04 12:42:40 +10001375 } else if (bp->b_bn != XFS_BUF_DADDR_NULL) {
1376 struct xfs_mount *mp = bp->b_target->bt_mount;
1377
1378 /*
1379 * non-crc filesystems don't attach verifiers during
1380 * log recovery, so don't warn for such filesystems.
1381 */
1382 if (xfs_sb_version_hascrc(&mp->m_sb)) {
1383 xfs_warn(mp,
Darrick J. Wongc219b012018-01-08 11:39:18 -08001384 "%s: no buf ops on daddr 0x%llx len %d",
Dave Chinner400b9d82014-08-04 12:42:40 +10001385 __func__, bp->b_bn, bp->b_length);
Darrick J. Wong9c712a12018-01-08 10:51:26 -08001386 xfs_hex_dump(bp->b_addr,
1387 XFS_CORRUPTION_DUMP_LEN);
Dave Chinner400b9d82014-08-04 12:42:40 +10001388 dump_stack();
1389 }
Dave Chinner1813dd62012-11-14 17:54:40 +11001390 }
Dave Chinner3e85c862012-06-22 18:50:09 +10001391 } else if (bp->b_flags & XBF_READ_AHEAD) {
Mike Christie50bfcd02016-06-05 14:31:57 -05001392 op = REQ_OP_READ;
1393 op_flags = REQ_RAHEAD;
Dave Chinner3e85c862012-06-22 18:50:09 +10001394 } else {
Mike Christie50bfcd02016-06-05 14:31:57 -05001395 op = REQ_OP_READ;
Dave Chinner3e85c862012-06-22 18:50:09 +10001396 }
1397
1398 /* we only use the buffer cache for meta-data */
Mike Christie50bfcd02016-06-05 14:31:57 -05001399 op_flags |= REQ_META;
Dave Chinner3e85c862012-06-22 18:50:09 +10001400
1401 /*
1402 * Walk all the vectors issuing IO on them. Set up the initial offset
1403 * into the buffer and the desired IO size before we start -
1404 * _xfs_buf_ioapply_vec() will modify them appropriately for each
1405 * subsequent call.
1406 */
1407 offset = bp->b_offset;
1408 size = BBTOB(bp->b_io_length);
1409 blk_start_plug(&plug);
1410 for (i = 0; i < bp->b_map_count; i++) {
Mike Christie50bfcd02016-06-05 14:31:57 -05001411 xfs_buf_ioapply_map(bp, i, &offset, &size, op, op_flags);
Dave Chinner3e85c862012-06-22 18:50:09 +10001412 if (bp->b_error)
1413 break;
1414 if (size <= 0)
1415 break; /* all done */
1416 }
1417 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
Dave Chinner595bff72014-10-02 09:05:14 +10001420/*
1421 * Asynchronous IO submission path. This transfers the buffer lock ownership and
1422 * the current reference to the IO. It is not safe to reference the buffer after
1423 * a call to this function unless the caller holds an additional reference
1424 * itself.
1425 */
Dave Chinner0e95f192012-04-23 15:58:46 +10001426void
Dave Chinner595bff72014-10-02 09:05:14 +10001427xfs_buf_submit(
1428 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Dave Chinner595bff72014-10-02 09:05:14 +10001430 trace_xfs_buf_submit(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001432 ASSERT(!(bp->b_flags & _XBF_DELWRI_Q));
Dave Chinner595bff72014-10-02 09:05:14 +10001433 ASSERT(bp->b_flags & XBF_ASYNC);
1434
1435 /* on shutdown we stale and complete the buffer immediately */
1436 if (XFS_FORCED_SHUTDOWN(bp->b_target->bt_mount)) {
1437 xfs_buf_ioerror(bp, -EIO);
1438 bp->b_flags &= ~XBF_DONE;
1439 xfs_buf_stale(bp);
1440 xfs_buf_ioend(bp);
1441 return;
1442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Christoph Hellwig375ec692011-08-23 08:28:03 +00001444 if (bp->b_flags & XBF_WRITE)
Nathan Scottce8e9222006-01-11 15:39:08 +11001445 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Dave Chinner61be9c52014-10-02 09:04:31 +10001447 /* clear the internal error state to avoid spurious errors */
1448 bp->b_io_error = 0;
1449
Eric Sandeen8d6c1212014-04-17 08:15:28 +10001450 /*
Dave Chinner595bff72014-10-02 09:05:14 +10001451 * The caller's reference is released during I/O completion.
1452 * This occurs some time after the last b_io_remaining reference is
1453 * released, so after we drop our Io reference we have to have some
1454 * other reference to ensure the buffer doesn't go away from underneath
1455 * us. Take a direct reference to ensure we have safe access to the
1456 * buffer until we are finished with it.
Dave Chinnere11bb802014-10-02 09:04:11 +10001457 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 xfs_buf_hold(bp);
1459
Eric Sandeen8d6c1212014-04-17 08:15:28 +10001460 /*
Dave Chinnere11bb802014-10-02 09:04:11 +10001461 * Set the count to 1 initially, this will stop an I/O completion
1462 * callout which happens before we have started all the I/O from calling
1463 * xfs_buf_ioend too early.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001465 atomic_set(&bp->b_io_remaining, 1);
Brian Foster9c7504a2016-07-20 11:15:28 +10001466 xfs_buf_ioacct_inc(bp);
Nathan Scottce8e9222006-01-11 15:39:08 +11001467 _xfs_buf_ioapply(bp);
Dave Chinnere11bb802014-10-02 09:04:11 +10001468
Eric Sandeen8d6c1212014-04-17 08:15:28 +10001469 /*
Dave Chinner595bff72014-10-02 09:05:14 +10001470 * If _xfs_buf_ioapply failed, we can get back here with only the IO
1471 * reference we took above. If we drop it to zero, run completion so
1472 * that we don't return to the caller with completion still pending.
Eric Sandeen8d6c1212014-04-17 08:15:28 +10001473 */
Dave Chinnere8aaba92014-10-02 09:04:22 +10001474 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
Dave Chinner595bff72014-10-02 09:05:14 +10001475 if (bp->b_error)
Dave Chinnere8aaba92014-10-02 09:04:22 +10001476 xfs_buf_ioend(bp);
1477 else
1478 xfs_buf_ioend_async(bp);
1479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Nathan Scottce8e9222006-01-11 15:39:08 +11001481 xfs_buf_rele(bp);
Dave Chinner595bff72014-10-02 09:05:14 +10001482 /* Note: it is not safe to reference bp now we've dropped our ref */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
1485/*
Dave Chinner595bff72014-10-02 09:05:14 +10001486 * Synchronous buffer IO submission path, read or write.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 */
1488int
Dave Chinner595bff72014-10-02 09:05:14 +10001489xfs_buf_submit_wait(
1490 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Dave Chinner595bff72014-10-02 09:05:14 +10001492 int error;
1493
1494 trace_xfs_buf_submit_wait(bp, _RET_IP_);
1495
1496 ASSERT(!(bp->b_flags & (_XBF_DELWRI_Q | XBF_ASYNC)));
1497
1498 if (XFS_FORCED_SHUTDOWN(bp->b_target->bt_mount)) {
1499 xfs_buf_ioerror(bp, -EIO);
1500 xfs_buf_stale(bp);
1501 bp->b_flags &= ~XBF_DONE;
1502 return -EIO;
1503 }
1504
1505 if (bp->b_flags & XBF_WRITE)
1506 xfs_buf_wait_unpin(bp);
1507
1508 /* clear the internal error state to avoid spurious errors */
1509 bp->b_io_error = 0;
1510
1511 /*
1512 * For synchronous IO, the IO does not inherit the submitters reference
1513 * count, nor the buffer lock. Hence we cannot release the reference we
1514 * are about to take until we've waited for all IO completion to occur,
1515 * including any xfs_buf_ioend_async() work that may be pending.
1516 */
1517 xfs_buf_hold(bp);
1518
1519 /*
1520 * Set the count to 1 initially, this will stop an I/O completion
1521 * callout which happens before we have started all the I/O from calling
1522 * xfs_buf_ioend too early.
1523 */
1524 atomic_set(&bp->b_io_remaining, 1);
1525 _xfs_buf_ioapply(bp);
1526
1527 /*
1528 * make sure we run completion synchronously if it raced with us and is
1529 * already complete.
1530 */
1531 if (atomic_dec_and_test(&bp->b_io_remaining) == 1)
1532 xfs_buf_ioend(bp);
1533
1534 /* wait for completion before gathering the error from the buffer */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001535 trace_xfs_buf_iowait(bp, _RET_IP_);
Dave Chinner595bff72014-10-02 09:05:14 +10001536 wait_for_completion(&bp->b_iowait);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001537 trace_xfs_buf_iowait_done(bp, _RET_IP_);
Dave Chinner595bff72014-10-02 09:05:14 +10001538 error = bp->b_error;
1539
1540 /*
1541 * all done now, we can release the hold that keeps the buffer
1542 * referenced for the entire IO.
1543 */
1544 xfs_buf_rele(bp);
1545 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
Christoph Hellwig88ee2df2015-06-22 09:44:29 +10001548void *
Nathan Scottce8e9222006-01-11 15:39:08 +11001549xfs_buf_offset(
Christoph Hellwig88ee2df2015-06-22 09:44:29 +10001550 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 size_t offset)
1552{
1553 struct page *page;
1554
Dave Chinner611c9942012-04-23 15:59:07 +10001555 if (bp->b_addr)
Chandra Seetharaman62926042011-07-22 23:40:15 +00001556 return bp->b_addr + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Nathan Scottce8e9222006-01-11 15:39:08 +11001558 offset += bp->b_offset;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001559 page = bp->b_pages[offset >> PAGE_SHIFT];
Christoph Hellwig88ee2df2015-06-22 09:44:29 +10001560 return page_address(page) + (offset & (PAGE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
1563/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 * Move data into or out of a buffer.
1565 */
1566void
Nathan Scottce8e9222006-01-11 15:39:08 +11001567xfs_buf_iomove(
1568 xfs_buf_t *bp, /* buffer to process */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 size_t boff, /* starting buffer offset */
1570 size_t bsize, /* length to copy */
Dave Chinnerb9c48642010-01-20 10:47:39 +11001571 void *data, /* data address */
Nathan Scottce8e9222006-01-11 15:39:08 +11001572 xfs_buf_rw_t mode) /* read/write/zero flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573{
Dave Chinner795cac72012-04-23 15:58:53 +10001574 size_t bend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 bend = boff + bsize;
1577 while (boff < bend) {
Dave Chinner795cac72012-04-23 15:58:53 +10001578 struct page *page;
1579 int page_index, page_offset, csize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Dave Chinner795cac72012-04-23 15:58:53 +10001581 page_index = (boff + bp->b_offset) >> PAGE_SHIFT;
1582 page_offset = (boff + bp->b_offset) & ~PAGE_MASK;
1583 page = bp->b_pages[page_index];
1584 csize = min_t(size_t, PAGE_SIZE - page_offset,
1585 BBTOB(bp->b_io_length) - boff);
1586
1587 ASSERT((csize + page_offset) <= PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
1589 switch (mode) {
Nathan Scottce8e9222006-01-11 15:39:08 +11001590 case XBRW_ZERO:
Dave Chinner795cac72012-04-23 15:58:53 +10001591 memset(page_address(page) + page_offset, 0, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001593 case XBRW_READ:
Dave Chinner795cac72012-04-23 15:58:53 +10001594 memcpy(data, page_address(page) + page_offset, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 break;
Nathan Scottce8e9222006-01-11 15:39:08 +11001596 case XBRW_WRITE:
Dave Chinner795cac72012-04-23 15:58:53 +10001597 memcpy(page_address(page) + page_offset, data, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
1599
1600 boff += csize;
1601 data += csize;
1602 }
1603}
1604
1605/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001606 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 */
1608
1609/*
Dave Chinner430cbeb2010-12-02 16:30:55 +11001610 * Wait for any bufs with callbacks that have been submitted but have not yet
1611 * returned. These buffers will have an elevated hold count, so wait on those
1612 * while freeing all the buffers only held by the LRU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 */
Dave Chinnere80dfa12013-08-28 10:18:05 +10001614static enum lru_status
1615xfs_buftarg_wait_rele(
1616 struct list_head *item,
Vladimir Davydov3f97b162015-02-12 14:59:35 -08001617 struct list_lru_one *lru,
Dave Chinnere80dfa12013-08-28 10:18:05 +10001618 spinlock_t *lru_lock,
1619 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Dave Chinnere80dfa12013-08-28 10:18:05 +10001621{
1622 struct xfs_buf *bp = container_of(item, struct xfs_buf, b_lru);
Dave Chinnera4082352013-08-28 10:18:06 +10001623 struct list_head *dispose = arg;
Dave Chinnere80dfa12013-08-28 10:18:05 +10001624
1625 if (atomic_read(&bp->b_hold) > 1) {
Dave Chinnera4082352013-08-28 10:18:06 +10001626 /* need to wait, so skip it this pass */
Dave Chinnere80dfa12013-08-28 10:18:05 +10001627 trace_xfs_buf_wait_buftarg(bp, _RET_IP_);
Dave Chinnera4082352013-08-28 10:18:06 +10001628 return LRU_SKIP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 }
Dave Chinnera4082352013-08-28 10:18:06 +10001630 if (!spin_trylock(&bp->b_lock))
1631 return LRU_SKIP;
Dave Chinnere80dfa12013-08-28 10:18:05 +10001632
Dave Chinnera4082352013-08-28 10:18:06 +10001633 /*
1634 * clear the LRU reference count so the buffer doesn't get
1635 * ignored in xfs_buf_rele().
1636 */
1637 atomic_set(&bp->b_lru_ref, 0);
1638 bp->b_state |= XFS_BSTATE_DISPOSE;
Vladimir Davydov3f97b162015-02-12 14:59:35 -08001639 list_lru_isolate_move(lru, item, dispose);
Dave Chinnera4082352013-08-28 10:18:06 +10001640 spin_unlock(&bp->b_lock);
1641 return LRU_REMOVED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
Dave Chinnere80dfa12013-08-28 10:18:05 +10001644void
1645xfs_wait_buftarg(
1646 struct xfs_buftarg *btp)
1647{
Dave Chinnera4082352013-08-28 10:18:06 +10001648 LIST_HEAD(dispose);
1649 int loop = 0;
1650
Dave Chinner85bec542016-01-19 08:28:10 +11001651 /*
Brian Foster9c7504a2016-07-20 11:15:28 +10001652 * First wait on the buftarg I/O count for all in-flight buffers to be
1653 * released. This is critical as new buffers do not make the LRU until
1654 * they are released.
1655 *
1656 * Next, flush the buffer workqueue to ensure all completion processing
1657 * has finished. Just waiting on buffer locks is not sufficient for
1658 * async IO as the reference count held over IO is not released until
1659 * after the buffer lock is dropped. Hence we need to ensure here that
1660 * all reference counts have been dropped before we start walking the
1661 * LRU list.
Dave Chinner85bec542016-01-19 08:28:10 +11001662 */
Brian Foster9c7504a2016-07-20 11:15:28 +10001663 while (percpu_counter_sum(&btp->bt_io_count))
1664 delay(100);
Brian Foster800b2692016-08-26 16:01:59 +10001665 flush_workqueue(btp->bt_mount->m_buf_workqueue);
Dave Chinner85bec542016-01-19 08:28:10 +11001666
Dave Chinnera4082352013-08-28 10:18:06 +10001667 /* loop until there is nothing left on the lru list. */
1668 while (list_lru_count(&btp->bt_lru)) {
Dave Chinnere80dfa12013-08-28 10:18:05 +10001669 list_lru_walk(&btp->bt_lru, xfs_buftarg_wait_rele,
Dave Chinnera4082352013-08-28 10:18:06 +10001670 &dispose, LONG_MAX);
1671
1672 while (!list_empty(&dispose)) {
1673 struct xfs_buf *bp;
1674 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1675 list_del_init(&bp->b_lru);
Dave Chinnerac8809f2013-12-12 16:34:38 +11001676 if (bp->b_flags & XBF_WRITE_FAIL) {
1677 xfs_alert(btp->bt_mount,
Darrick J. Wongc219b012018-01-08 11:39:18 -08001678"Corruption Alert: Buffer at daddr 0x%llx had permanent write failures!",
Dave Chinnerac8809f2013-12-12 16:34:38 +11001679 (long long)bp->b_bn);
Joe Perchesf41febd2015-07-29 11:52:04 +10001680 xfs_alert(btp->bt_mount,
1681"Please run xfs_repair to determine the extent of the problem.");
Dave Chinnerac8809f2013-12-12 16:34:38 +11001682 }
Dave Chinnera4082352013-08-28 10:18:06 +10001683 xfs_buf_rele(bp);
1684 }
1685 if (loop++ != 0)
1686 delay(100);
1687 }
Dave Chinnere80dfa12013-08-28 10:18:05 +10001688}
1689
1690static enum lru_status
1691xfs_buftarg_isolate(
1692 struct list_head *item,
Vladimir Davydov3f97b162015-02-12 14:59:35 -08001693 struct list_lru_one *lru,
Dave Chinnere80dfa12013-08-28 10:18:05 +10001694 spinlock_t *lru_lock,
1695 void *arg)
1696{
1697 struct xfs_buf *bp = container_of(item, struct xfs_buf, b_lru);
1698 struct list_head *dispose = arg;
1699
1700 /*
Dave Chinnera4082352013-08-28 10:18:06 +10001701 * we are inverting the lru lock/bp->b_lock here, so use a trylock.
1702 * If we fail to get the lock, just skip it.
1703 */
1704 if (!spin_trylock(&bp->b_lock))
1705 return LRU_SKIP;
1706 /*
Dave Chinnere80dfa12013-08-28 10:18:05 +10001707 * Decrement the b_lru_ref count unless the value is already
1708 * zero. If the value is already zero, we need to reclaim the
1709 * buffer, otherwise it gets another trip through the LRU.
1710 */
Dave Chinnera4082352013-08-28 10:18:06 +10001711 if (!atomic_add_unless(&bp->b_lru_ref, -1, 0)) {
1712 spin_unlock(&bp->b_lock);
Dave Chinnere80dfa12013-08-28 10:18:05 +10001713 return LRU_ROTATE;
Dave Chinnera4082352013-08-28 10:18:06 +10001714 }
Dave Chinnere80dfa12013-08-28 10:18:05 +10001715
Dave Chinnera4082352013-08-28 10:18:06 +10001716 bp->b_state |= XFS_BSTATE_DISPOSE;
Vladimir Davydov3f97b162015-02-12 14:59:35 -08001717 list_lru_isolate_move(lru, item, dispose);
Dave Chinnera4082352013-08-28 10:18:06 +10001718 spin_unlock(&bp->b_lock);
Dave Chinnere80dfa12013-08-28 10:18:05 +10001719 return LRU_REMOVED;
1720}
1721
Andrew Mortonaddbda42013-08-28 10:18:06 +10001722static unsigned long
Dave Chinnere80dfa12013-08-28 10:18:05 +10001723xfs_buftarg_shrink_scan(
Dave Chinnerff57ab22010-11-30 17:27:57 +11001724 struct shrinker *shrink,
Ying Han1495f232011-05-24 17:12:27 -07001725 struct shrink_control *sc)
David Chinnera6867a62006-01-11 15:37:58 +11001726{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001727 struct xfs_buftarg *btp = container_of(shrink,
1728 struct xfs_buftarg, bt_shrinker);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001729 LIST_HEAD(dispose);
Andrew Mortonaddbda42013-08-28 10:18:06 +10001730 unsigned long freed;
Dave Chinner430cbeb2010-12-02 16:30:55 +11001731
Vladimir Davydov503c3582015-02-12 14:58:47 -08001732 freed = list_lru_shrink_walk(&btp->bt_lru, sc,
1733 xfs_buftarg_isolate, &dispose);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001734
1735 while (!list_empty(&dispose)) {
Dave Chinnere80dfa12013-08-28 10:18:05 +10001736 struct xfs_buf *bp;
Dave Chinner430cbeb2010-12-02 16:30:55 +11001737 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1738 list_del_init(&bp->b_lru);
1739 xfs_buf_rele(bp);
1740 }
1741
Dave Chinnere80dfa12013-08-28 10:18:05 +10001742 return freed;
1743}
1744
Andrew Mortonaddbda42013-08-28 10:18:06 +10001745static unsigned long
Dave Chinnere80dfa12013-08-28 10:18:05 +10001746xfs_buftarg_shrink_count(
1747 struct shrinker *shrink,
1748 struct shrink_control *sc)
1749{
1750 struct xfs_buftarg *btp = container_of(shrink,
1751 struct xfs_buftarg, bt_shrinker);
Vladimir Davydov503c3582015-02-12 14:58:47 -08001752 return list_lru_shrink_count(&btp->bt_lru, sc);
David Chinnera6867a62006-01-11 15:37:58 +11001753}
1754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755void
1756xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001757 struct xfs_mount *mp,
1758 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001760 unregister_shrinker(&btp->bt_shrinker);
Brian Foster9c7504a2016-07-20 11:15:28 +10001761 ASSERT(percpu_counter_sum(&btp->bt_io_count) == 0);
1762 percpu_counter_destroy(&btp->bt_io_count);
Glauber Costaf5e1dd32013-08-28 10:18:18 +10001763 list_lru_destroy(&btp->bt_lru);
Dave Chinnerff57ab22010-11-30 17:27:57 +11001764
Dave Chinner2291dab2016-12-09 16:49:54 +11001765 xfs_blkdev_issue_flush(btp);
David Chinnera6867a62006-01-11 15:37:58 +11001766
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001767 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
1769
Eric Sandeen3fefdee2013-11-13 14:53:45 -06001770int
1771xfs_setsize_buftarg(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 xfs_buftarg_t *btp,
Eric Sandeen3fefdee2013-11-13 14:53:45 -06001773 unsigned int sectorsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001775 /* Set up metadata sector size info */
Eric Sandeen6da54172014-01-21 16:45:52 -06001776 btp->bt_meta_sectorsize = sectorsize;
1777 btp->bt_meta_sectormask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Nathan Scottce8e9222006-01-11 15:39:08 +11001779 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Dave Chinner4f107002011-03-07 10:00:35 +11001780 xfs_warn(btp->bt_mount,
Dmitry Monakhova1c6f0572015-04-13 16:31:37 +04001781 "Cannot set_blocksize to %u on device %pg",
1782 sectorsize, btp->bt_bdev);
Dave Chinner24513372014-06-25 14:58:08 +10001783 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
1785
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001786 /* Set up device logical sector size mask */
1787 btp->bt_logical_sectorsize = bdev_logical_block_size(btp->bt_bdev);
1788 btp->bt_logical_sectormask = bdev_logical_block_size(btp->bt_bdev) - 1;
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return 0;
1791}
1792
1793/*
Eric Sandeen3fefdee2013-11-13 14:53:45 -06001794 * When allocating the initial buffer target we have not yet
1795 * read in the superblock, so don't know what sized sectors
1796 * are being used at this early stage. Play safe.
Nathan Scottce8e9222006-01-11 15:39:08 +11001797 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798STATIC int
1799xfs_setsize_buftarg_early(
1800 xfs_buftarg_t *btp,
1801 struct block_device *bdev)
1802{
Eric Sandeena96c4152014-04-14 19:00:29 +10001803 return xfs_setsize_buftarg(btp, bdev_logical_block_size(bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804}
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806xfs_buftarg_t *
1807xfs_alloc_buftarg(
Dave Chinnerebad8612010-09-22 10:47:20 +10001808 struct xfs_mount *mp,
Dan Williams486aff52017-08-24 15:12:50 -07001809 struct block_device *bdev,
1810 struct dax_device *dax_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
1812 xfs_buftarg_t *btp;
1813
Dave Chinnerb17cb362013-05-20 09:51:12 +10001814 btp = kmem_zalloc(sizeof(*btp), KM_SLEEP | KM_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Dave Chinnerebad8612010-09-22 10:47:20 +10001816 btp->bt_mount = mp;
Nathan Scottce8e9222006-01-11 15:39:08 +11001817 btp->bt_dev = bdev->bd_dev;
1818 btp->bt_bdev = bdev;
Dan Williams486aff52017-08-24 15:12:50 -07001819 btp->bt_daxdev = dax_dev;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 if (xfs_setsize_buftarg_early(btp, bdev))
Michal Hockod210a982017-11-23 17:13:40 +01001822 goto error_free;
Glauber Costa5ca302c2013-08-28 10:18:18 +10001823
1824 if (list_lru_init(&btp->bt_lru))
Michal Hockod210a982017-11-23 17:13:40 +01001825 goto error_free;
Glauber Costa5ca302c2013-08-28 10:18:18 +10001826
Brian Foster9c7504a2016-07-20 11:15:28 +10001827 if (percpu_counter_init(&btp->bt_io_count, 0, GFP_KERNEL))
Michal Hockod210a982017-11-23 17:13:40 +01001828 goto error_lru;
Brian Foster9c7504a2016-07-20 11:15:28 +10001829
Dave Chinnere80dfa12013-08-28 10:18:05 +10001830 btp->bt_shrinker.count_objects = xfs_buftarg_shrink_count;
1831 btp->bt_shrinker.scan_objects = xfs_buftarg_shrink_scan;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001832 btp->bt_shrinker.seeks = DEFAULT_SEEKS;
Dave Chinnere80dfa12013-08-28 10:18:05 +10001833 btp->bt_shrinker.flags = SHRINKER_NUMA_AWARE;
Michal Hockod210a982017-11-23 17:13:40 +01001834 if (register_shrinker(&btp->bt_shrinker))
1835 goto error_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return btp;
1837
Michal Hockod210a982017-11-23 17:13:40 +01001838error_pcpu:
1839 percpu_counter_destroy(&btp->bt_io_count);
1840error_lru:
1841 list_lru_destroy(&btp->bt_lru);
1842error_free:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001843 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 return NULL;
1845}
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847/*
Brian Foster20e8a062017-04-21 12:40:44 -07001848 * Cancel a delayed write list.
1849 *
1850 * Remove each buffer from the list, clear the delwri queue flag and drop the
1851 * associated buffer reference.
1852 */
1853void
1854xfs_buf_delwri_cancel(
1855 struct list_head *list)
1856{
1857 struct xfs_buf *bp;
1858
1859 while (!list_empty(list)) {
1860 bp = list_first_entry(list, struct xfs_buf, b_list);
1861
1862 xfs_buf_lock(bp);
1863 bp->b_flags &= ~_XBF_DELWRI_Q;
1864 list_del_init(&bp->b_list);
1865 xfs_buf_relse(bp);
1866 }
1867}
1868
1869/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001870 * Add a buffer to the delayed write list.
1871 *
1872 * This queues a buffer for writeout if it hasn't already been. Note that
1873 * neither this routine nor the buffer list submission functions perform
1874 * any internal synchronization. It is expected that the lists are thread-local
1875 * to the callers.
1876 *
1877 * Returns true if we queued up the buffer, or false if it already had
1878 * been on the buffer list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001880bool
Nathan Scottce8e9222006-01-11 15:39:08 +11001881xfs_buf_delwri_queue(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001882 struct xfs_buf *bp,
1883 struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001885 ASSERT(xfs_buf_islocked(bp));
1886 ASSERT(!(bp->b_flags & XBF_READ));
1887
1888 /*
1889 * If the buffer is already marked delwri it already is queued up
1890 * by someone else for imediate writeout. Just ignore it in that
1891 * case.
1892 */
1893 if (bp->b_flags & _XBF_DELWRI_Q) {
1894 trace_xfs_buf_delwri_queued(bp, _RET_IP_);
1895 return false;
1896 }
David Chinnera6867a62006-01-11 15:37:58 +11001897
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001898 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
1899
Dave Chinnerd808f612010-02-02 10:13:42 +11001900 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001901 * If a buffer gets written out synchronously or marked stale while it
1902 * is on a delwri list we lazily remove it. To do this, the other party
1903 * clears the _XBF_DELWRI_Q flag but otherwise leaves the buffer alone.
1904 * It remains referenced and on the list. In a rare corner case it
1905 * might get readded to a delwri list after the synchronous writeout, in
1906 * which case we need just need to re-add the flag here.
Dave Chinnerd808f612010-02-02 10:13:42 +11001907 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001908 bp->b_flags |= _XBF_DELWRI_Q;
1909 if (list_empty(&bp->b_list)) {
1910 atomic_inc(&bp->b_hold);
1911 list_add_tail(&bp->b_list, list);
David Chinner585e6d82007-02-10 18:32:29 +11001912 }
David Chinner585e6d82007-02-10 18:32:29 +11001913
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001914 return true;
David Chinner585e6d82007-02-10 18:32:29 +11001915}
1916
Dave Chinner089716a2010-01-26 15:13:25 +11001917/*
1918 * Compare function is more complex than it needs to be because
1919 * the return value is only 32 bits and we are doing comparisons
1920 * on 64 bit values
1921 */
1922static int
1923xfs_buf_cmp(
1924 void *priv,
1925 struct list_head *a,
1926 struct list_head *b)
1927{
1928 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1929 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1930 xfs_daddr_t diff;
1931
Mark Tinguelyf4b42422012-12-04 17:18:02 -06001932 diff = ap->b_maps[0].bm_bn - bp->b_maps[0].bm_bn;
Dave Chinner089716a2010-01-26 15:13:25 +11001933 if (diff < 0)
1934 return -1;
1935 if (diff > 0)
1936 return 1;
1937 return 0;
1938}
1939
Dave Chinner26f1fe82016-06-01 17:38:15 +10001940/*
1941 * submit buffers for write.
1942 *
1943 * When we have a large buffer list, we do not want to hold all the buffers
1944 * locked while we block on the request queue waiting for IO dispatch. To avoid
1945 * this problem, we lock and submit buffers in groups of 50, thereby minimising
1946 * the lock hold times for lists which may contain thousands of objects.
1947 *
1948 * To do this, we sort the buffer list before we walk the list to lock and
1949 * submit buffers, and we plug and unplug around each group of buffers we
1950 * submit.
1951 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001952static int
Dave Chinner26f1fe82016-06-01 17:38:15 +10001953xfs_buf_delwri_submit_buffers(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001954 struct list_head *buffer_list,
Dave Chinner26f1fe82016-06-01 17:38:15 +10001955 struct list_head *wait_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001957 struct xfs_buf *bp, *n;
Dave Chinner26f1fe82016-06-01 17:38:15 +10001958 LIST_HEAD (submit_list);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001959 int pinned = 0;
Dave Chinner26f1fe82016-06-01 17:38:15 +10001960 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Dave Chinner26f1fe82016-06-01 17:38:15 +10001962 list_sort(NULL, buffer_list, xfs_buf_cmp);
1963
1964 blk_start_plug(&plug);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001965 list_for_each_entry_safe(bp, n, buffer_list, b_list) {
Dave Chinner26f1fe82016-06-01 17:38:15 +10001966 if (!wait_list) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001967 if (xfs_buf_ispinned(bp)) {
1968 pinned++;
1969 continue;
1970 }
1971 if (!xfs_buf_trylock(bp))
1972 continue;
1973 } else {
1974 xfs_buf_lock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001977 /*
1978 * Someone else might have written the buffer synchronously or
1979 * marked it stale in the meantime. In that case only the
1980 * _XBF_DELWRI_Q flag got cleared, and we have to drop the
1981 * reference and remove it from the list here.
1982 */
1983 if (!(bp->b_flags & _XBF_DELWRI_Q)) {
1984 list_del_init(&bp->b_list);
1985 xfs_buf_relse(bp);
1986 continue;
1987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001989 trace_xfs_buf_delwri_split(bp, _RET_IP_);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001990
Dave Chinnercf53e992014-10-02 09:04:01 +10001991 /*
Dave Chinner26f1fe82016-06-01 17:38:15 +10001992 * We do all IO submission async. This means if we need
1993 * to wait for IO completion we need to take an extra
1994 * reference so the buffer is still valid on the other
1995 * side. We need to move the buffer onto the io_list
1996 * at this point so the caller can still access it.
Dave Chinnercf53e992014-10-02 09:04:01 +10001997 */
Dave Chinnerbbfeb612016-07-20 11:53:35 +10001998 bp->b_flags &= ~(_XBF_DELWRI_Q | XBF_WRITE_FAIL);
Dave Chinner26f1fe82016-06-01 17:38:15 +10001999 bp->b_flags |= XBF_WRITE | XBF_ASYNC;
2000 if (wait_list) {
Dave Chinnercf53e992014-10-02 09:04:01 +10002001 xfs_buf_hold(bp);
Dave Chinner26f1fe82016-06-01 17:38:15 +10002002 list_move_tail(&bp->b_list, wait_list);
2003 } else
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002004 list_del_init(&bp->b_list);
Dave Chinner8dac3922014-10-02 09:04:40 +10002005
Dave Chinner595bff72014-10-02 09:05:14 +10002006 xfs_buf_submit(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 }
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00002008 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002010 return pinned;
2011}
Nathan Scottf07c2252006-09-28 10:52:15 +10002012
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002013/*
2014 * Write out a buffer list asynchronously.
2015 *
2016 * This will take the @buffer_list, write all non-locked and non-pinned buffers
2017 * out and not wait for I/O completion on any of the buffers. This interface
2018 * is only safely useable for callers that can track I/O completion by higher
2019 * level means, e.g. AIL pushing as the @buffer_list is consumed in this
2020 * function.
2021 */
2022int
2023xfs_buf_delwri_submit_nowait(
2024 struct list_head *buffer_list)
2025{
Dave Chinner26f1fe82016-06-01 17:38:15 +10002026 return xfs_buf_delwri_submit_buffers(buffer_list, NULL);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002027}
2028
2029/*
2030 * Write out a buffer list synchronously.
2031 *
2032 * This will take the @buffer_list, write all buffers out and wait for I/O
2033 * completion on all of the buffers. @buffer_list is consumed by the function,
2034 * so callers must have some other way of tracking buffers if they require such
2035 * functionality.
2036 */
2037int
2038xfs_buf_delwri_submit(
2039 struct list_head *buffer_list)
2040{
Dave Chinner26f1fe82016-06-01 17:38:15 +10002041 LIST_HEAD (wait_list);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002042 int error = 0, error2;
2043 struct xfs_buf *bp;
2044
Dave Chinner26f1fe82016-06-01 17:38:15 +10002045 xfs_buf_delwri_submit_buffers(buffer_list, &wait_list);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002046
2047 /* Wait for IO to complete. */
Dave Chinner26f1fe82016-06-01 17:38:15 +10002048 while (!list_empty(&wait_list)) {
2049 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002050
2051 list_del_init(&bp->b_list);
Dave Chinnercf53e992014-10-02 09:04:01 +10002052
2053 /* locking the buffer will wait for async IO completion. */
2054 xfs_buf_lock(bp);
2055 error2 = bp->b_error;
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002056 xfs_buf_relse(bp);
2057 if (!error)
2058 error = error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 }
2060
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002061 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
Brian Foster7912e7f2017-06-14 21:21:45 -07002064/*
2065 * Push a single buffer on a delwri queue.
2066 *
2067 * The purpose of this function is to submit a single buffer of a delwri queue
2068 * and return with the buffer still on the original queue. The waiting delwri
2069 * buffer submission infrastructure guarantees transfer of the delwri queue
2070 * buffer reference to a temporary wait list. We reuse this infrastructure to
2071 * transfer the buffer back to the original queue.
2072 *
2073 * Note the buffer transitions from the queued state, to the submitted and wait
2074 * listed state and back to the queued state during this call. The buffer
2075 * locking and queue management logic between _delwri_pushbuf() and
2076 * _delwri_queue() guarantee that the buffer cannot be queued to another list
2077 * before returning.
2078 */
2079int
2080xfs_buf_delwri_pushbuf(
2081 struct xfs_buf *bp,
2082 struct list_head *buffer_list)
2083{
2084 LIST_HEAD (submit_list);
2085 int error;
2086
2087 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
2088
2089 trace_xfs_buf_delwri_pushbuf(bp, _RET_IP_);
2090
2091 /*
2092 * Isolate the buffer to a new local list so we can submit it for I/O
2093 * independently from the rest of the original list.
2094 */
2095 xfs_buf_lock(bp);
2096 list_move(&bp->b_list, &submit_list);
2097 xfs_buf_unlock(bp);
2098
2099 /*
2100 * Delwri submission clears the DELWRI_Q buffer flag and returns with
2101 * the buffer on the wait list with an associated reference. Rather than
2102 * bounce the buffer from a local wait list back to the original list
2103 * after I/O completion, reuse the original list as the wait list.
2104 */
2105 xfs_buf_delwri_submit_buffers(&submit_list, buffer_list);
2106
2107 /*
2108 * The buffer is now under I/O and wait listed as during typical delwri
2109 * submission. Lock the buffer to wait for I/O completion. Rather than
2110 * remove the buffer from the wait list and release the reference, we
2111 * want to return with the buffer queued to the original list. The
2112 * buffer already sits on the original list with a wait list reference,
2113 * however. If we let the queue inherit that wait list reference, all we
2114 * need to do is reset the DELWRI_Q flag.
2115 */
2116 xfs_buf_lock(bp);
2117 error = bp->b_error;
2118 bp->b_flags |= _XBF_DELWRI_Q;
2119 xfs_buf_unlock(bp);
2120
2121 return error;
2122}
2123
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002124int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11002125xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
Nathan Scott87582802006-03-14 13:18:19 +11002127 xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf",
2128 KM_ZONE_HWALIGN, NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11002129 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002130 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002131
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002132 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002134 out:
Nathan Scott87582802006-03-14 13:18:19 +11002135 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136}
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138void
Nathan Scottce8e9222006-01-11 15:39:08 +11002139xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
Nathan Scottce8e9222006-01-11 15:39:08 +11002141 kmem_zone_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142}
Brian Foster7561d272017-10-17 14:16:29 -07002143
2144void xfs_buf_set_ref(struct xfs_buf *bp, int lru_ref)
2145{
Brian Foster7561d272017-10-17 14:16:29 -07002146 /*
2147 * Set the lru reference count to 0 based on the error injection tag.
2148 * This allows userspace to disrupt buffer caching for debug/testing
2149 * purposes.
2150 */
Brian Foster4eadcf92017-10-27 09:20:28 -07002151 if (XFS_TEST_ERROR(false, bp->b_target->bt_mount,
2152 XFS_ERRTAG_BUF_LRU_REF))
Brian Foster7561d272017-10-17 14:16:29 -07002153 lru_ref = 0;
2154
2155 atomic_set(&bp->b_lru_ref, lru_ref);
2156}