mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-22 12:33:59 +08:00
xfs: rename bio_add_buffer() to xfs_bio_add_buffer()
Follow up with xfs naming style. Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com> Reviewed-by: Mark Tinguely <tinguely@sgi.com> Signed-off-by: Ben Myers <bpm@sgi.com>
This commit is contained in:
parent
0a94da24b9
commit
c7c1a7d8bb
@ -451,7 +451,7 @@ xfs_start_page_writeback(
|
|||||||
end_page_writeback(page);
|
end_page_writeback(page);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int bio_add_buffer(struct bio *bio, struct buffer_head *bh)
|
static inline int xfs_bio_add_buffer(struct bio *bio, struct buffer_head *bh)
|
||||||
{
|
{
|
||||||
return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
|
return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
|
||||||
}
|
}
|
||||||
@ -525,7 +525,7 @@ xfs_submit_ioend(
|
|||||||
goto retry;
|
goto retry;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bio_add_buffer(bio, bh) != bh->b_size) {
|
if (xfs_bio_add_buffer(bio, bh) != bh->b_size) {
|
||||||
xfs_submit_ioend_bio(wbc, ioend, bio);
|
xfs_submit_ioend_bio(wbc, ioend, bio);
|
||||||
goto retry;
|
goto retry;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user