blob: fabe1614f879525827290d05eb79ca53ad76a57e [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Peterson091806ed2008-04-29 12:35:48 -05003 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
15#include <linux/mm.h>
16#include <linux/pagemap.h>
17#include <linux/writeback.h>
18#include <linux/swap.h>
19#include <linux/delay.h>
Steven Whitehouse2e565bb2006-10-02 11:38:25 -040020#include <linux/bio.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050021#include <linux/gfs2_ondisk.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000022
23#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050024#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#include "glock.h"
26#include "glops.h"
27#include "inode.h"
28#include "log.h"
29#include "lops.h"
30#include "meta_io.h"
31#include "rgrp.h"
32#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050033#include "util.h"
Steven Whitehouse627c10b2011-04-14 14:09:52 +010034#include "trace_gfs2.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000035
Steven Whitehouse4a0f9a32009-04-20 08:16:26 +010036static int gfs2_aspace_writepage(struct page *page, struct writeback_control *wbc)
David Teiglandb3b94fa2006-01-16 16:50:04 +000037{
Steven Whitehouse4a0f9a32009-04-20 08:16:26 +010038 struct buffer_head *bh, *head;
39 int nr_underway = 0;
Jens Axboe76372412016-11-01 10:00:38 -060040 int write_flags = REQ_META | REQ_PRIO | wbc_to_write_flags(wbc);
David Teiglandb3b94fa2006-01-16 16:50:04 +000041
Steven Whitehouse4a0f9a32009-04-20 08:16:26 +010042 BUG_ON(!PageLocked(page));
43 BUG_ON(!page_has_buffers(page));
44
45 head = page_buffers(page);
46 bh = head;
47
48 do {
49 if (!buffer_mapped(bh))
50 continue;
51 /*
52 * If it's a fully non-blocking write attempt and we cannot
53 * lock the buffer then redirty the page. Note that this can
Artem Bityutskiye76e0ec2012-07-25 18:12:13 +030054 * potentially cause a busy-wait loop from flusher thread and kswapd
Steven Whitehouse4a0f9a32009-04-20 08:16:26 +010055 * activity, but those code paths have their own higher-level
56 * throttling.
57 */
Wu Fengguang1b430be2010-10-26 14:21:26 -070058 if (wbc->sync_mode != WB_SYNC_NONE) {
Steven Whitehouse4a0f9a32009-04-20 08:16:26 +010059 lock_buffer(bh);
60 } else if (!trylock_buffer(bh)) {
61 redirty_page_for_writepage(wbc, page);
62 continue;
63 }
64 if (test_clear_buffer_dirty(bh)) {
65 mark_buffer_async_write(bh);
66 } else {
67 unlock_buffer(bh);
68 }
69 } while ((bh = bh->b_this_page) != head);
70
71 /*
72 * The page and its buffers are protected by PageWriteback(), so we can
73 * drop the bh refcounts early.
74 */
75 BUG_ON(PageWriteback(page));
76 set_page_writeback(page);
77
78 do {
79 struct buffer_head *next = bh->b_this_page;
80 if (buffer_async_write(bh)) {
Mike Christie2a222ca2016-06-05 14:31:43 -050081 submit_bh(REQ_OP_WRITE, write_flags, bh);
Steven Whitehouse4a0f9a32009-04-20 08:16:26 +010082 nr_underway++;
83 }
84 bh = next;
85 } while (bh != head);
86 unlock_page(page);
87
Steven Whitehouse4a0f9a32009-04-20 08:16:26 +010088 if (nr_underway == 0)
89 end_page_writeback(page);
90
Bob Petersoneaefbf92010-05-11 17:35:34 -040091 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +000092}
93
Steven Whitehouse009d8512009-12-08 12:12:13 +000094const struct address_space_operations gfs2_meta_aops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +000095 .writepage = gfs2_aspace_writepage,
Steven Whitehouse4340fe62006-07-11 09:46:33 -040096 .releasepage = gfs2_releasepage,
David Teiglandb3b94fa2006-01-16 16:50:04 +000097};
98
Steven Whitehouse1b2ad412014-03-31 17:48:27 +010099const struct address_space_operations gfs2_rgrp_aops = {
100 .writepage = gfs2_aspace_writepage,
101 .releasepage = gfs2_releasepage,
102};
103
David Teiglandb3b94fa2006-01-16 16:50:04 +0000104/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100105 * gfs2_getbuf - Get a buffer with a given address space
Steven Whitehousecb4c0312006-11-23 11:16:32 -0500106 * @gl: the glock
David Teiglandb3b94fa2006-01-16 16:50:04 +0000107 * @blkno: the block number (filesystem scope)
108 * @create: 1 if the buffer should be created
109 *
110 * Returns: the buffer
111 */
112
Steven Whitehouse6802e342008-05-21 17:03:22 +0100113struct buffer_head *gfs2_getbuf(struct gfs2_glock *gl, u64 blkno, int create)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114{
Steven Whitehouse009d8512009-12-08 12:12:13 +0000115 struct address_space *mapping = gfs2_glock2aspace(gl);
Bob Peterson15562c42015-03-16 11:52:05 -0500116 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000117 struct page *page;
118 struct buffer_head *bh;
119 unsigned int shift;
120 unsigned long index;
121 unsigned int bufnum;
122
Steven Whitehouse70d4ee92013-12-06 16:19:54 +0000123 if (mapping == NULL)
124 mapping = &sdp->sd_aspace;
125
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300126 shift = PAGE_SHIFT - sdp->sd_sb.sb_bsize_shift;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000127 index = blkno >> shift; /* convert block to page */
128 bufnum = blkno - (index << shift); /* block buf index within page */
129
130 if (create) {
131 for (;;) {
Steven Whitehousecb4c0312006-11-23 11:16:32 -0500132 page = grab_cache_page(mapping, index);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000133 if (page)
134 break;
135 yield();
136 }
137 } else {
Mel Gorman2457aec2014-06-04 16:10:31 -0700138 page = find_get_page_flags(mapping, index,
139 FGP_LOCK|FGP_ACCESSED);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000140 if (!page)
141 return NULL;
142 }
143
144 if (!page_has_buffers(page))
145 create_empty_buffers(page, sdp->sd_sb.sb_bsize, 0);
146
147 /* Locate header for our buffer within our page */
148 for (bh = page_buffers(page); bufnum--; bh = bh->b_this_page)
149 /* Do nothing */;
150 get_bh(bh);
151
152 if (!buffer_mapped(bh))
153 map_bh(bh, sdp->sd_vfs, blkno);
154
155 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300156 put_page(page);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000157
158 return bh;
159}
160
161static void meta_prep_new(struct buffer_head *bh)
162{
163 struct gfs2_meta_header *mh = (struct gfs2_meta_header *)bh->b_data;
164
165 lock_buffer(bh);
166 clear_buffer_dirty(bh);
167 set_buffer_uptodate(bh);
168 unlock_buffer(bh);
169
170 mh->mh_magic = cpu_to_be32(GFS2_MAGIC);
171}
172
173/**
174 * gfs2_meta_new - Get a block
175 * @gl: The glock associated with this block
176 * @blkno: The block number
177 *
178 * Returns: The buffer
179 */
180
Steven Whitehousecd915492006-09-04 12:49:07 -0400181struct buffer_head *gfs2_meta_new(struct gfs2_glock *gl, u64 blkno)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000182{
183 struct buffer_head *bh;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100184 bh = gfs2_getbuf(gl, blkno, CREATE);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000185 meta_prep_new(bh);
186 return bh;
187}
188
Andreas Gruenbacher39b05552015-11-13 07:44:57 -0600189static void gfs2_meta_read_endio(struct bio *bio)
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600190{
Andreas Gruenbacher39b05552015-11-13 07:44:57 -0600191 struct bio_vec *bvec;
192 int i;
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600193
Andreas Gruenbacher39b05552015-11-13 07:44:57 -0600194 bio_for_each_segment_all(bvec, bio, i) {
195 struct page *page = bvec->bv_page;
196 struct buffer_head *bh = page_buffers(page);
197 unsigned int len = bvec->bv_len;
198
199 while (bh_offset(bh) < bvec->bv_offset)
200 bh = bh->b_this_page;
201 do {
202 struct buffer_head *next = bh->b_this_page;
203 len -= bh->b_size;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200204 bh->b_end_io(bh, !bio->bi_status);
Andreas Gruenbacher39b05552015-11-13 07:44:57 -0600205 bh = next;
206 } while (bh && len);
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600207 }
Andreas Gruenbacher39b05552015-11-13 07:44:57 -0600208 bio_put(bio);
209}
210
211/*
212 * Submit several consecutive buffer head I/O requests as a single bio I/O
213 * request. (See submit_bh_wbc.)
214 */
Mike Christiee1b1afa2016-06-05 14:31:56 -0500215static void gfs2_submit_bhs(int op, int op_flags, struct buffer_head *bhs[],
216 int num)
Andreas Gruenbacher39b05552015-11-13 07:44:57 -0600217{
Andreas Gruenbacher23e56712016-08-16 13:25:22 +0200218 while (num > 0) {
219 struct buffer_head *bh = *bhs;
220 struct bio *bio;
Andreas Gruenbacher39b05552015-11-13 07:44:57 -0600221
Andreas Gruenbacher23e56712016-08-16 13:25:22 +0200222 bio = bio_alloc(GFP_NOIO, num);
223 bio->bi_iter.bi_sector = bh->b_blocknr * (bh->b_size >> 9);
224 bio->bi_bdev = bh->b_bdev;
225 while (num > 0) {
226 bh = *bhs;
227 if (!bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh))) {
228 BUG_ON(bio->bi_iter.bi_size == 0);
229 break;
230 }
231 bhs++;
232 num--;
233 }
234 bio->bi_end_io = gfs2_meta_read_endio;
235 bio_set_op_attrs(bio, op, op_flags);
236 submit_bio(bio);
Andreas Gruenbacher39b05552015-11-13 07:44:57 -0600237 }
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600238}
239
David Teiglandb3b94fa2006-01-16 16:50:04 +0000240/**
241 * gfs2_meta_read - Read a block from disk
242 * @gl: The glock covering the block
243 * @blkno: The block number
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400244 * @flags: flags
David Teiglandb3b94fa2006-01-16 16:50:04 +0000245 * @bhp: the place where the buffer is returned (NULL on failure)
246 *
247 * Returns: errno
248 */
249
Steven Whitehousecd915492006-09-04 12:49:07 -0400250int gfs2_meta_read(struct gfs2_glock *gl, u64 blkno, int flags,
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600251 int rahead, struct buffer_head **bhp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000252{
Bob Peterson15562c42015-03-16 11:52:05 -0500253 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Andreas Gruenbacher39b05552015-11-13 07:44:57 -0600254 struct buffer_head *bh, *bhs[2];
255 int num = 0;
Steven Whitehousec969f58c2009-04-07 14:13:01 +0100256
Masatake YAMATO44b8db12012-06-18 16:31:31 +0900257 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) {
258 *bhp = NULL;
Steven Whitehousec969f58c2009-04-07 14:13:01 +0100259 return -EIO;
Masatake YAMATO44b8db12012-06-18 16:31:31 +0900260 }
Steven Whitehousec969f58c2009-04-07 14:13:01 +0100261
262 *bhp = bh = gfs2_getbuf(gl, blkno, CREATE);
263
264 lock_buffer(bh);
265 if (buffer_uptodate(bh)) {
266 unlock_buffer(bh);
Andreas Gruenbacher39b05552015-11-13 07:44:57 -0600267 flags &= ~DIO_WAIT;
268 } else {
269 bh->b_end_io = end_buffer_read_sync;
270 get_bh(bh);
271 bhs[num++] = bh;
Steven Whitehousec969f58c2009-04-07 14:13:01 +0100272 }
Andreas Gruenbacher39b05552015-11-13 07:44:57 -0600273
274 if (rahead) {
275 bh = gfs2_getbuf(gl, blkno + 1, CREATE);
276
277 lock_buffer(bh);
278 if (buffer_uptodate(bh)) {
279 unlock_buffer(bh);
280 brelse(bh);
281 } else {
282 bh->b_end_io = end_buffer_read_sync;
283 bhs[num++] = bh;
284 }
285 }
286
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600287 gfs2_submit_bhs(REQ_OP_READ, REQ_META | REQ_PRIO, bhs, num);
Steven Whitehousec969f58c2009-04-07 14:13:01 +0100288 if (!(flags & DIO_WAIT))
289 return 0;
290
Andreas Gruenbacher39b05552015-11-13 07:44:57 -0600291 bh = *bhp;
Steven Whitehousec969f58c2009-04-07 14:13:01 +0100292 wait_on_buffer(bh);
293 if (unlikely(!buffer_uptodate(bh))) {
294 struct gfs2_trans *tr = current->journal_info;
Bob Peterson9862ca02017-01-25 12:50:47 -0500295 if (tr && test_bit(TR_TOUCHED, &tr->tr_flags))
Steven Whitehousec969f58c2009-04-07 14:13:01 +0100296 gfs2_io_error_bh(sdp, bh);
297 brelse(bh);
Masatake YAMATO44b8db12012-06-18 16:31:31 +0900298 *bhp = NULL;
Steven Whitehousec969f58c2009-04-07 14:13:01 +0100299 return -EIO;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400300 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000301
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400302 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000303}
304
305/**
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400306 * gfs2_meta_wait - Reread a block from disk
David Teiglandb3b94fa2006-01-16 16:50:04 +0000307 * @sdp: the filesystem
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400308 * @bh: The block to wait for
David Teiglandb3b94fa2006-01-16 16:50:04 +0000309 *
310 * Returns: errno
311 */
312
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400313int gfs2_meta_wait(struct gfs2_sbd *sdp, struct buffer_head *bh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000314{
315 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
316 return -EIO;
317
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400318 wait_on_buffer(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000319
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400320 if (!buffer_uptodate(bh)) {
321 struct gfs2_trans *tr = current->journal_info;
Bob Peterson9862ca02017-01-25 12:50:47 -0500322 if (tr && test_bit(TR_TOUCHED, &tr->tr_flags))
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400323 gfs2_io_error_bh(sdp, bh);
324 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000325 }
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400326 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
327 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000328
329 return 0;
330}
331
Bob Peterson68cd4ce2016-05-02 11:53:35 -0500332void gfs2_remove_from_journal(struct buffer_head *bh, int meta)
Steven Whitehouse16615be2007-09-17 10:59:52 +0100333{
Steven Whitehouse009d8512009-12-08 12:12:13 +0000334 struct address_space *mapping = bh->b_page->mapping;
335 struct gfs2_sbd *sdp = gfs2_mapping2sbd(mapping);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100336 struct gfs2_bufdata *bd = bh->b_private;
Bob Peterson68cd4ce2016-05-02 11:53:35 -0500337 struct gfs2_trans *tr = current->journal_info;
Bob Peterson502be2a2013-12-13 08:31:06 -0500338 int was_pinned = 0;
Steven Whitehouse009d8512009-12-08 12:12:13 +0000339
Steven Whitehouse16615be2007-09-17 10:59:52 +0100340 if (test_clear_buffer_pinned(bh)) {
Steven Whitehouse627c10b2011-04-14 14:09:52 +0100341 trace_gfs2_pin(bd, 0);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500342 atomic_dec(&sdp->sd_log_pinned);
Bob Petersonc0752aa2012-05-01 12:00:34 -0400343 list_del_init(&bd->bd_list);
Bob Peterson68cd4ce2016-05-02 11:53:35 -0500344 if (meta == REMOVE_META)
Steven Whitehouse16615be2007-09-17 10:59:52 +0100345 tr->tr_num_buf_rm++;
Steven Whitehouse022ef4f2014-02-21 21:55:33 +0000346 else
Steven Whitehouse16615be2007-09-17 10:59:52 +0100347 tr->tr_num_databuf_rm++;
Bob Peterson9862ca02017-01-25 12:50:47 -0500348 set_bit(TR_TOUCHED, &tr->tr_flags);
Bob Peterson502be2a2013-12-13 08:31:06 -0500349 was_pinned = 1;
Steven Whitehouse16615be2007-09-17 10:59:52 +0100350 brelse(bh);
351 }
352 if (bd) {
Steven Whitehousec618e872011-03-14 12:40:29 +0000353 spin_lock(&sdp->sd_ail_lock);
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500354 if (bd->bd_tr) {
Steven Whitehouse16615be2007-09-17 10:59:52 +0100355 gfs2_trans_add_revoke(sdp, bd);
Bob Peterson502be2a2013-12-13 08:31:06 -0500356 } else if (was_pinned) {
357 bh->b_private = NULL;
358 kmem_cache_free(gfs2_bufdata_cachep, bd);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100359 }
Steven Whitehousec618e872011-03-14 12:40:29 +0000360 spin_unlock(&sdp->sd_ail_lock);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100361 }
362 clear_buffer_dirty(bh);
363 clear_buffer_uptodate(bh);
364}
365
David Teiglandb3b94fa2006-01-16 16:50:04 +0000366/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000367 * gfs2_meta_wipe - make inode's buffers so they aren't dirty/pinned anymore
368 * @ip: the inode who owns the buffers
369 * @bstart: the first buffer in the run
370 * @blen: the number of buffers in the run
371 *
372 */
373
Steven Whitehousecd915492006-09-04 12:49:07 -0400374void gfs2_meta_wipe(struct gfs2_inode *ip, u64 bstart, u32 blen)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000375{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400376 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000377 struct buffer_head *bh;
378
379 while (blen) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100380 bh = gfs2_getbuf(ip->i_gl, bstart, NO_CREATE);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000381 if (bh) {
Steven Whitehouse1ad38c42007-09-03 11:01:33 +0100382 lock_buffer(bh);
383 gfs2_log_lock(sdp);
Bob Peterson68cd4ce2016-05-02 11:53:35 -0500384 gfs2_remove_from_journal(bh, REMOVE_META);
Steven Whitehouse1ad38c42007-09-03 11:01:33 +0100385 gfs2_log_unlock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000386 unlock_buffer(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000387 brelse(bh);
388 }
389
390 bstart++;
391 blen--;
392 }
393}
394
395/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000396 * gfs2_meta_indirect_buffer - Get a metadata buffer
397 * @ip: The GFS2 inode
398 * @height: The level of this buf in the metadata (indir addr) tree (if any)
399 * @num: The block number (device relative) of the buffer
David Teiglandb3b94fa2006-01-16 16:50:04 +0000400 * @bhp: the buffer is returned here
401 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000402 * Returns: errno
403 */
404
Steven Whitehousecd915492006-09-04 12:49:07 -0400405int gfs2_meta_indirect_buffer(struct gfs2_inode *ip, int height, u64 num,
Bob Petersonf2f9c812012-05-10 08:33:55 -0400406 struct buffer_head **bhp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000407{
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400408 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
409 struct gfs2_glock *gl = ip->i_gl;
Steven Whitehousef91a0d32007-10-15 16:29:05 +0100410 struct buffer_head *bh;
411 int ret = 0;
Bob Petersonf2f9c812012-05-10 08:33:55 -0400412 u32 mtype = height ? GFS2_METATYPE_IN : GFS2_METATYPE_DI;
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600413 int rahead = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000414
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -0600415 if (num == ip->i_no_addr)
416 rahead = ip->i_rahead;
417
418 ret = gfs2_meta_read(gl, num, DIO_WAIT, rahead, &bh);
Bob Petersonf2f9c812012-05-10 08:33:55 -0400419 if (ret == 0 && gfs2_metatype_check(sdp, bh, mtype)) {
420 brelse(bh);
421 ret = -EIO;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400422 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000423 *bhp = bh;
Steven Whitehousef91a0d32007-10-15 16:29:05 +0100424 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000425}
426
427/**
428 * gfs2_meta_ra - start readahead on an extent of a file
429 * @gl: the glock the blocks belong to
430 * @dblock: the starting disk block
431 * @extlen: the number of blocks in the extent
432 *
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400433 * returns: the first buffer in the extent
David Teiglandb3b94fa2006-01-16 16:50:04 +0000434 */
435
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400436struct buffer_head *gfs2_meta_ra(struct gfs2_glock *gl, u64 dblock, u32 extlen)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000437{
Bob Peterson15562c42015-03-16 11:52:05 -0500438 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000439 struct buffer_head *first_bh, *bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400440 u32 max_ra = gfs2_tune_get(sdp, gt_max_readahead) >>
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500441 sdp->sd_sb.sb_bsize_shift;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000442
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400443 BUG_ON(!extlen);
444
445 if (max_ra < 1)
446 max_ra = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000447 if (extlen > max_ra)
448 extlen = max_ra;
449
Steven Whitehouse6802e342008-05-21 17:03:22 +0100450 first_bh = gfs2_getbuf(gl, dblock, CREATE);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000451
452 if (buffer_uptodate(first_bh))
453 goto out;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400454 if (!buffer_locked(first_bh))
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600455 ll_rw_block(REQ_OP_READ, REQ_META, 1, &first_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000456
457 dblock++;
458 extlen--;
459
460 while (extlen) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100461 bh = gfs2_getbuf(gl, dblock, CREATE);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000462
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400463 if (!buffer_uptodate(bh) && !buffer_locked(bh))
Christoph Hellwig70246282016-07-19 11:28:41 +0200464 ll_rw_block(REQ_OP_READ, REQ_RAHEAD | REQ_META, 1, &bh);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400465 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000466 dblock++;
467 extlen--;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400468 if (!buffer_locked(first_bh) && buffer_uptodate(first_bh))
469 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000470 }
471
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400472 wait_on_buffer(first_bh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400473out:
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400474 return first_bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000475}
476