diff options
author | Christoph Hellwig <hch@lst.de> | 2010-09-30 23:41:39 -0400 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2010-09-30 23:41:39 -0400 |
commit | 40bf48afe92fcea61e7e164f0b2599fba8b88124 (patch) | |
tree | 233a48a5e2de1c469804f6745d8fd48e62c78abc /fs/hfsplus/bitmap.c | |
parent | 6333816ade7e04a96ec0a34a8378c455e4f7c4dd (diff) |
hfsplus: introduce alloc_mutex
Use a new per-sb alloc_mutex instead of abusing i_mutex of the alloc_file
to protect block allocations. This gets rid of lockdep nesting warnings
and prepares for extending the scope of alloc_mutex.
Signed-off-by: Christoph Hellwig <hch@tuxera.com>
Diffstat (limited to 'fs/hfsplus/bitmap.c')
-rw-r--r-- | fs/hfsplus/bitmap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/hfsplus/bitmap.c b/fs/hfsplus/bitmap.c index ea30afc2a03c..8a781769a901 100644 --- a/fs/hfsplus/bitmap.c +++ b/fs/hfsplus/bitmap.c | |||
@@ -29,7 +29,7 @@ int hfsplus_block_allocate(struct super_block *sb, u32 size, u32 offset, u32 *ma | |||
29 | return size; | 29 | return size; |
30 | 30 | ||
31 | dprint(DBG_BITMAP, "block_allocate: %u,%u,%u\n", size, offset, len); | 31 | dprint(DBG_BITMAP, "block_allocate: %u,%u,%u\n", size, offset, len); |
32 | mutex_lock(&HFSPLUS_SB(sb).alloc_file->i_mutex); | 32 | mutex_lock(&HFSPLUS_SB(sb).alloc_mutex); |
33 | mapping = HFSPLUS_SB(sb).alloc_file->i_mapping; | 33 | mapping = HFSPLUS_SB(sb).alloc_file->i_mapping; |
34 | page = read_mapping_page(mapping, offset / PAGE_CACHE_BITS, NULL); | 34 | page = read_mapping_page(mapping, offset / PAGE_CACHE_BITS, NULL); |
35 | if (IS_ERR(page)) { | 35 | if (IS_ERR(page)) { |
@@ -154,7 +154,7 @@ done: | |||
154 | sb->s_dirt = 1; | 154 | sb->s_dirt = 1; |
155 | dprint(DBG_BITMAP, "-> %u,%u\n", start, *max); | 155 | dprint(DBG_BITMAP, "-> %u,%u\n", start, *max); |
156 | out: | 156 | out: |
157 | mutex_unlock(&HFSPLUS_SB(sb).alloc_file->i_mutex); | 157 | mutex_unlock(&HFSPLUS_SB(sb).alloc_mutex); |
158 | return start; | 158 | return start; |
159 | } | 159 | } |
160 | 160 | ||
@@ -175,7 +175,7 @@ int hfsplus_block_free(struct super_block *sb, u32 offset, u32 count) | |||
175 | if ((offset + count) > HFSPLUS_SB(sb).total_blocks) | 175 | if ((offset + count) > HFSPLUS_SB(sb).total_blocks) |
176 | return -2; | 176 | return -2; |
177 | 177 | ||
178 | mutex_lock(&HFSPLUS_SB(sb).alloc_file->i_mutex); | 178 | mutex_lock(&HFSPLUS_SB(sb).alloc_mutex); |
179 | mapping = HFSPLUS_SB(sb).alloc_file->i_mapping; | 179 | mapping = HFSPLUS_SB(sb).alloc_file->i_mapping; |
180 | pnr = offset / PAGE_CACHE_BITS; | 180 | pnr = offset / PAGE_CACHE_BITS; |
181 | page = read_mapping_page(mapping, pnr, NULL); | 181 | page = read_mapping_page(mapping, pnr, NULL); |
@@ -226,7 +226,7 @@ out: | |||
226 | kunmap(page); | 226 | kunmap(page); |
227 | HFSPLUS_SB(sb).free_blocks += len; | 227 | HFSPLUS_SB(sb).free_blocks += len; |
228 | sb->s_dirt = 1; | 228 | sb->s_dirt = 1; |
229 | mutex_unlock(&HFSPLUS_SB(sb).alloc_file->i_mutex); | 229 | mutex_unlock(&HFSPLUS_SB(sb).alloc_mutex); |
230 | 230 | ||
231 | return 0; | 231 | return 0; |
232 | } | 232 | } |