summaryrefslogtreecommitdiffstats
path: root/fs/udf/symlink.c
diff options
context:
space:
mode:
authorJan Kara2007-05-08 09:35:16 +0200
committerLinus Torvalds2007-05-08 20:15:21 +0200
commit3bf25cb40d899eeb5a471f497e56ddfe2c96c019 (patch)
tree98d425edd6392d3037218851084dde6736e7ba32 /fs/udf/symlink.c
parentUDF: introduce struct extent_position (diff)
downloadkernel-qcow2-linux-3bf25cb40d899eeb5a471f497e56ddfe2c96c019.tar.gz
kernel-qcow2-linux-3bf25cb40d899eeb5a471f497e56ddfe2c96c019.tar.xz
kernel-qcow2-linux-3bf25cb40d899eeb5a471f497e56ddfe2c96c019.zip
udf: use get_bh()
Make UDF use get_bh() instead of directly accessing b_count and use brelse() instead of udf_release_data() which does just brelse()... Signed-off-by: Jan Kara <jack@suse.cz> Acked-by: Christoph Hellwig <hch@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/udf/symlink.c')
-rw-r--r--fs/udf/symlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/symlink.c b/fs/udf/symlink.c
index ba068a786563..12613b680cc4 100644
--- a/fs/udf/symlink.c
+++ b/fs/udf/symlink.c
@@ -95,7 +95,7 @@ static int udf_symlink_filler(struct file *file, struct page *page)
}
udf_pc_to_char(inode->i_sb, symlink, inode->i_size, p);
- udf_release_data(bh);
+ brelse(bh);
unlock_kernel();
SetPageUptodate(page);