Commit 2fa24f92 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Alex Elder

xfs: remove the all_bh flag from xfs_convert_page

The all_bh flag is always set when entering the page clustering
machinery with a regular written extent, which means the check for
it is superflous.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarDave Chinner <dchinner@redhat.com>
Signed-off-by: default avatarAlex Elder <aelder@sgi.com>
parent ed1e7b7e
...@@ -682,8 +682,7 @@ xfs_convert_page( ...@@ -682,8 +682,7 @@ xfs_convert_page(
loff_t tindex, loff_t tindex,
struct xfs_bmbt_irec *imap, struct xfs_bmbt_irec *imap,
xfs_ioend_t **ioendp, xfs_ioend_t **ioendp,
struct writeback_control *wbc, struct writeback_control *wbc)
int all_bh)
{ {
struct buffer_head *bh, *head; struct buffer_head *bh, *head;
xfs_off_t end_offset; xfs_off_t end_offset;
...@@ -738,11 +737,14 @@ xfs_convert_page( ...@@ -738,11 +737,14 @@ xfs_convert_page(
continue; continue;
} }
if (buffer_unwritten(bh) || buffer_delay(bh)) { if (buffer_unwritten(bh) || buffer_delay(bh) ||
buffer_mapped(bh)) {
if (buffer_unwritten(bh)) if (buffer_unwritten(bh))
type = IO_UNWRITTEN; type = IO_UNWRITTEN;
else else if (buffer_delay(bh))
type = IO_DELALLOC; type = IO_DELALLOC;
else
type = IO_OVERWRITE;
if (!xfs_imap_valid(inode, imap, offset)) { if (!xfs_imap_valid(inode, imap, offset)) {
done = 1; done = 1;
...@@ -752,24 +754,18 @@ xfs_convert_page( ...@@ -752,24 +754,18 @@ xfs_convert_page(
ASSERT(imap->br_startblock != HOLESTARTBLOCK); ASSERT(imap->br_startblock != HOLESTARTBLOCK);
ASSERT(imap->br_startblock != DELAYSTARTBLOCK); ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
if (type == IO_OVERWRITE)
lock_buffer(bh);
else
xfs_map_at_offset(inode, bh, imap, offset); xfs_map_at_offset(inode, bh, imap, offset);
xfs_add_to_ioend(inode, bh, offset, type, xfs_add_to_ioend(inode, bh, offset, type,
ioendp, done); ioendp, done);
page_dirty--; page_dirty--;
count++; count++;
} else {
type = IO_OVERWRITE;
if (buffer_mapped(bh) && all_bh) {
lock_buffer(bh);
xfs_add_to_ioend(inode, bh, offset,
type, ioendp, done);
count++;
page_dirty--;
} else { } else {
done = 1; done = 1;
} }
}
} while (offset += len, (bh = bh->b_this_page) != head); } while (offset += len, (bh = bh->b_this_page) != head);
if (uptodate && bh == head) if (uptodate && bh == head)
...@@ -800,7 +796,6 @@ xfs_cluster_write( ...@@ -800,7 +796,6 @@ xfs_cluster_write(
struct xfs_bmbt_irec *imap, struct xfs_bmbt_irec *imap,
xfs_ioend_t **ioendp, xfs_ioend_t **ioendp,
struct writeback_control *wbc, struct writeback_control *wbc,
int all_bh,
pgoff_t tlast) pgoff_t tlast)
{ {
struct pagevec pvec; struct pagevec pvec;
...@@ -815,7 +810,7 @@ xfs_cluster_write( ...@@ -815,7 +810,7 @@ xfs_cluster_write(
for (i = 0; i < pagevec_count(&pvec); i++) { for (i = 0; i < pagevec_count(&pvec); i++) {
done = xfs_convert_page(inode, pvec.pages[i], tindex++, done = xfs_convert_page(inode, pvec.pages[i], tindex++,
imap, ioendp, wbc, all_bh); imap, ioendp, wbc);
if (done) if (done)
break; break;
} }
...@@ -929,7 +924,6 @@ xfs_vm_writepage( ...@@ -929,7 +924,6 @@ xfs_vm_writepage(
ssize_t len; ssize_t len;
int err, imap_valid = 0, uptodate = 1; int err, imap_valid = 0, uptodate = 1;
int count = 0; int count = 0;
int all_bh = 0;
int nonblocking = 0; int nonblocking = 0;
trace_xfs_writepage(inode, page, 0); trace_xfs_writepage(inode, page, 0);
...@@ -1065,7 +1059,6 @@ xfs_vm_writepage( ...@@ -1065,7 +1059,6 @@ xfs_vm_writepage(
} }
if (imap_valid) { if (imap_valid) {
all_bh = 1;
lock_buffer(bh); lock_buffer(bh);
xfs_add_to_ioend(inode, bh, offset, type, xfs_add_to_ioend(inode, bh, offset, type,
&ioend, new_ioend); &ioend, new_ioend);
...@@ -1102,7 +1095,7 @@ xfs_vm_writepage( ...@@ -1102,7 +1095,7 @@ xfs_vm_writepage(
end_index = last_index; end_index = last_index;
xfs_cluster_write(inode, page->index + 1, &imap, &ioend, xfs_cluster_write(inode, page->index + 1, &imap, &ioend,
wbc, all_bh, end_index); wbc, end_index);
} }
if (iohead) if (iohead)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment