hfs: use sync_dirty_buffer

Use sync_dirty_buffer instead of the incorrect opencoding it.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Christoph Hellwig
2010-10-06 10:49:17 +02:00
committed by Al Viro
parent 4a3956c790
commit 3072b90c47
2 changed files with 2 additions and 13 deletions

View File

@@ -254,17 +254,6 @@ static inline void hfs_bitmap_dirty(struct super_block *sb)
sb->s_dirt = 1;
}
static inline void hfs_buffer_sync(struct buffer_head *bh)
{
while (buffer_locked(bh)) {
wait_on_buffer(bh);
}
if (buffer_dirty(bh)) {
ll_rw_block(WRITE, 1, &bh);
wait_on_buffer(bh);
}
}
#define sb_bread512(sb, sec, data) ({ \
struct buffer_head *__bh; \
sector_t __block; \