aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/meta_io.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/gfs2/meta_io.c')
-rw-r--r--fs/gfs2/meta_io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/meta_io.c b/fs/gfs2/meta_io.c
index 091483e0ca76..b718447f7eb6 100644
--- a/fs/gfs2/meta_io.c
+++ b/fs/gfs2/meta_io.c
@@ -449,7 +449,7 @@ struct buffer_head *gfs2_meta_ra(struct gfs2_glock *gl, u64 dblock, u32 extlen)
449 if (buffer_uptodate(first_bh)) 449 if (buffer_uptodate(first_bh))
450 goto out; 450 goto out;
451 if (!buffer_locked(first_bh)) 451 if (!buffer_locked(first_bh))
452 ll_rw_block(READ_SYNC | REQ_META, 1, &first_bh); 452 ll_rw_block(REQ_OP_READ, READ_SYNC | REQ_META, 1, &first_bh);
453 453
454 dblock++; 454 dblock++;
455 extlen--; 455 extlen--;
@@ -458,7 +458,7 @@ struct buffer_head *gfs2_meta_ra(struct gfs2_glock *gl, u64 dblock, u32 extlen)
458 bh = gfs2_getbuf(gl, dblock, CREATE); 458 bh = gfs2_getbuf(gl, dblock, CREATE);
459 459
460 if (!buffer_uptodate(bh) && !buffer_locked(bh)) 460 if (!buffer_uptodate(bh) && !buffer_locked(bh))
461 ll_rw_block(READA | REQ_META, 1, &bh); 461 ll_rw_block(REQ_OP_READ, READA | REQ_META, 1, &bh);
462 brelse(bh); 462 brelse(bh);
463 dblock++; 463 dblock++;
464 extlen--; 464 extlen--;