From: Zhi Yong Wu Date: Wed, 7 Aug 2013 10:11:09 +0000 (+0000) Subject: xfs: rename bio_add_buffer() to xfs_bio_add_buffer() X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=c7c1a7d8bb45479e01ae47a8e8dbf4e769028f07;p=deliverable%2Flinux.git xfs: rename bio_add_buffer() to xfs_bio_add_buffer() Follow up with xfs naming style. Signed-off-by: Zhi Yong Wu Reviewed-by: Mark Tinguely Signed-off-by: Ben Myers --- diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c index 1269434ceec1..2f9fb421915a 100644 --- a/fs/xfs/xfs_aops.c +++ b/fs/xfs/xfs_aops.c @@ -451,7 +451,7 @@ xfs_start_page_writeback( 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)); } @@ -525,7 +525,7 @@ xfs_submit_ioend( 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); goto retry; }