aboutsummaryrefslogtreecommitdiffstats
path: root/fs/hfs/hfs_fs.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2010-10-06 04:49:17 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2010-10-25 21:18:21 -0400
commit3072b90c4726396e38160cc1f7c93191e2f4a566 (patch)
tree9c90f93bd00fa31c3b70e0e7a6ef1d88b0c71b38 /fs/hfs/hfs_fs.h
parent4a3956c790290efeb647bbb0c3a90476bb57800e (diff)
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>
Diffstat (limited to 'fs/hfs/hfs_fs.h')
-rw-r--r--fs/hfs/hfs_fs.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/fs/hfs/hfs_fs.h b/fs/hfs/hfs_fs.h
index 4f55651aaa5..1efcbc765d3 100644
--- a/fs/hfs/hfs_fs.h
+++ b/fs/hfs/hfs_fs.h
@@ -254,17 +254,6 @@ static inline void hfs_bitmap_dirty(struct super_block *sb)
254 sb->s_dirt = 1; 254 sb->s_dirt = 1;
255} 255}
256 256
257static inline void hfs_buffer_sync(struct buffer_head *bh)
258{
259 while (buffer_locked(bh)) {
260 wait_on_buffer(bh);
261 }
262 if (buffer_dirty(bh)) {
263 ll_rw_block(WRITE, 1, &bh);
264 wait_on_buffer(bh);
265 }
266}
267
268#define sb_bread512(sb, sec, data) ({ \ 257#define sb_bread512(sb, sec, data) ({ \
269 struct buffer_head *__bh; \ 258 struct buffer_head *__bh; \
270 sector_t __block; \ 259 sector_t __block; \