diff options
author | Jan Kara <jack@suse.cz> | 2007-05-08 00:35:16 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 11:15:21 -0700 |
commit | 3bf25cb40d899eeb5a471f497e56ddfe2c96c019 (patch) | |
tree | 98d425edd6392d3037218851084dde6736e7ba32 /fs/udf/partition.c | |
parent | ff116fc8d1d43927c7651b91d5aec41eb30c4429 (diff) | |
download | linux-3.10-3bf25cb40d899eeb5a471f497e56ddfe2c96c019.tar.gz linux-3.10-3bf25cb40d899eeb5a471f497e56ddfe2c96c019.tar.bz2 linux-3.10-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/partition.c')
-rw-r--r-- | fs/udf/partition.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/partition.c b/fs/udf/partition.c index dabf2b841db..467a26171cd 100644 --- a/fs/udf/partition.c +++ b/fs/udf/partition.c @@ -81,7 +81,7 @@ uint32_t udf_get_pblock_virt15(struct super_block *sb, uint32_t block, uint16_t loc = le32_to_cpu(((__le32 *)bh->b_data)[index]); - udf_release_data(bh); + brelse(bh); if (UDF_I_LOCATION(UDF_SB_VAT(sb)).partitionReferenceNum == partition) { |