blob: b1017eaa4fdc8dfbdcb3e442bf40c2e5cb96b241 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/hfsplus/extents.c
3 *
4 * Copyright (C) 2001
5 * Brad Boyer (flar@allandria.com)
6 * (C) 2003 Ardis Technologies <roman@ardistech.com>
7 *
8 * Handling of Extents both in catalog and extents overflow trees
9 */
10
11#include <linux/errno.h>
12#include <linux/fs.h>
13#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#include "hfsplus_fs.h"
16#include "hfsplus_raw.h"
17
18/* Compare two extents keys, returns 0 on same, pos/neg for difference */
David Elliott2179d372006-01-18 17:43:08 -080019int hfsplus_ext_cmp_key(const hfsplus_btree_key *k1,
20 const hfsplus_btree_key *k2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
22 __be32 k1id, k2id;
23 __be32 k1s, k2s;
24
25 k1id = k1->ext.cnid;
26 k2id = k2->ext.cnid;
27 if (k1id != k2id)
28 return be32_to_cpu(k1id) < be32_to_cpu(k2id) ? -1 : 1;
29
30 if (k1->ext.fork_type != k2->ext.fork_type)
31 return k1->ext.fork_type < k2->ext.fork_type ? -1 : 1;
32
33 k1s = k1->ext.start_block;
34 k2s = k2->ext.start_block;
35 if (k1s == k2s)
36 return 0;
37 return be32_to_cpu(k1s) < be32_to_cpu(k2s) ? -1 : 1;
38}
39
40static void hfsplus_ext_build_key(hfsplus_btree_key *key, u32 cnid,
41 u32 block, u8 type)
42{
43 key->key_len = cpu_to_be16(HFSPLUS_EXT_KEYLEN - 2);
44 key->ext.cnid = cpu_to_be32(cnid);
45 key->ext.start_block = cpu_to_be32(block);
46 key->ext.fork_type = type;
47 key->ext.pad = 0;
48}
49
50static u32 hfsplus_ext_find_block(struct hfsplus_extent *ext, u32 off)
51{
52 int i;
53 u32 count;
54
55 for (i = 0; i < 8; ext++, i++) {
56 count = be32_to_cpu(ext->block_count);
57 if (off < count)
58 return be32_to_cpu(ext->start_block) + off;
59 off -= count;
60 }
61 /* panic? */
62 return 0;
63}
64
65static int hfsplus_ext_block_count(struct hfsplus_extent *ext)
66{
67 int i;
68 u32 count = 0;
69
70 for (i = 0; i < 8; ext++, i++)
71 count += be32_to_cpu(ext->block_count);
72 return count;
73}
74
75static u32 hfsplus_ext_lastblock(struct hfsplus_extent *ext)
76{
77 int i;
78
79 ext += 7;
80 for (i = 0; i < 7; ext--, i++)
81 if (ext->block_count)
82 break;
83 return be32_to_cpu(ext->start_block) + be32_to_cpu(ext->block_count);
84}
85
86static void __hfsplus_ext_write_extent(struct inode *inode, struct hfs_find_data *fd)
87{
Christoph Hellwig6af502d2010-10-01 05:43:31 +020088 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 int res;
90
Christoph Hellwig6af502d2010-10-01 05:43:31 +020091 hfsplus_ext_build_key(fd->search_key, inode->i_ino, hip->cached_start,
92 HFSPLUS_IS_RSRC(inode) ?
93 HFSPLUS_TYPE_RSRC : HFSPLUS_TYPE_DATA);
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 res = hfs_brec_find(fd);
Christoph Hellwig6af502d2010-10-01 05:43:31 +020096 if (hip->flags & HFSPLUS_FLG_EXT_NEW) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (res != -ENOENT)
98 return;
Christoph Hellwig6af502d2010-10-01 05:43:31 +020099 hfs_brec_insert(fd, hip->cached_extents,
100 sizeof(hfsplus_extent_rec));
101 hip->flags &= ~(HFSPLUS_FLG_EXT_DIRTY | HFSPLUS_FLG_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 } else {
103 if (res)
104 return;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200105 hfs_bnode_write(fd->bnode, hip->cached_extents,
106 fd->entryoffset, fd->entrylength);
107 hip->flags &= ~HFSPLUS_FLG_EXT_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
109}
110
111void hfsplus_ext_write_extent(struct inode *inode)
112{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200113 if (HFSPLUS_I(inode)->flags & HFSPLUS_FLG_EXT_DIRTY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 struct hfs_find_data fd;
115
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200116 hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 __hfsplus_ext_write_extent(inode, &fd);
118 hfs_find_exit(&fd);
119 }
120}
121
122static inline int __hfsplus_ext_read_extent(struct hfs_find_data *fd,
123 struct hfsplus_extent *extent,
124 u32 cnid, u32 block, u8 type)
125{
126 int res;
127
128 hfsplus_ext_build_key(fd->search_key, cnid, block, type);
129 fd->key->ext.cnid = 0;
130 res = hfs_brec_find(fd);
131 if (res && res != -ENOENT)
132 return res;
133 if (fd->key->ext.cnid != fd->search_key->ext.cnid ||
134 fd->key->ext.fork_type != fd->search_key->ext.fork_type)
135 return -ENOENT;
136 if (fd->entrylength != sizeof(hfsplus_extent_rec))
137 return -EIO;
138 hfs_bnode_read(fd->bnode, extent, fd->entryoffset, sizeof(hfsplus_extent_rec));
139 return 0;
140}
141
142static inline int __hfsplus_ext_cache_extent(struct hfs_find_data *fd, struct inode *inode, u32 block)
143{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200144 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 int res;
146
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200147 if (hip->flags & HFSPLUS_FLG_EXT_DIRTY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 __hfsplus_ext_write_extent(inode, fd);
149
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200150 res = __hfsplus_ext_read_extent(fd, hip->cached_extents, inode->i_ino,
151 block, HFSPLUS_IS_RSRC(inode) ?
152 HFSPLUS_TYPE_RSRC :
153 HFSPLUS_TYPE_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200155 hip->cached_start = be32_to_cpu(fd->key->ext.start_block);
156 hip->cached_blocks = hfsplus_ext_block_count(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 } else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200158 hip->cached_start = hip->cached_blocks = 0;
159 hip->flags &= ~(HFSPLUS_FLG_EXT_DIRTY | HFSPLUS_FLG_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161 return res;
162}
163
164static int hfsplus_ext_read_extent(struct inode *inode, u32 block)
165{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200166 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 struct hfs_find_data fd;
168 int res;
169
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200170 if (block >= hip->cached_start &&
171 block < hip->cached_start + hip->cached_blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return 0;
173
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200174 hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 res = __hfsplus_ext_cache_extent(&fd, inode, block);
176 hfs_find_exit(&fd);
177 return res;
178}
179
180/* Get a block at iblock for inode, possibly allocating if create */
181int hfsplus_get_block(struct inode *inode, sector_t iblock,
182 struct buffer_head *bh_result, int create)
183{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200184 struct super_block *sb = inode->i_sb;
185 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200186 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 int res = -EIO;
188 u32 ablock, dblock, mask;
189 int shift;
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 /* Convert inode block to disk allocation block */
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200192 shift = sbi->alloc_blksz_shift - sb->s_blocksize_bits;
193 ablock = iblock >> sbi->fs_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200195 if (iblock >= hip->fs_blocks) {
196 if (iblock > hip->fs_blocks || !create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return -EIO;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200198 if (ablock >= hip->alloc_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 res = hfsplus_file_extend(inode);
200 if (res)
201 return res;
202 }
203 } else
204 create = 0;
205
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200206 if (ablock < hip->first_blocks) {
207 dblock = hfsplus_ext_find_block(hip->first_extents, ablock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 goto done;
209 }
210
Eric Sesterhenn248736c2008-10-18 20:28:02 -0700211 if (inode->i_ino == HFSPLUS_EXT_CNID)
212 return -EIO;
213
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200214 mutex_lock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 res = hfsplus_ext_read_extent(inode, ablock);
216 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200217 dblock = hfsplus_ext_find_block(hip->cached_extents,
218 ablock - hip->cached_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 } else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200220 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return -EIO;
222 }
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200223 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225done:
226 dprint(DBG_EXTENT, "get_block(%lu): %llu - %u\n", inode->i_ino, (long long)iblock, dblock);
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200227 mask = (1 << sbi->fs_shift) - 1;
228 map_bh(bh_result, sb, (dblock << sbi->fs_shift) + sbi->blockoffset + (iblock & mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (create) {
230 set_buffer_new(bh_result);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200231 hip->phys_size += sb->s_blocksize;
232 hip->fs_blocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 inode_add_bytes(inode, sb->s_blocksize);
234 mark_inode_dirty(inode);
235 }
236 return 0;
237}
238
239static void hfsplus_dump_extent(struct hfsplus_extent *extent)
240{
241 int i;
242
243 dprint(DBG_EXTENT, " ");
244 for (i = 0; i < 8; i++)
245 dprint(DBG_EXTENT, " %u:%u", be32_to_cpu(extent[i].start_block),
246 be32_to_cpu(extent[i].block_count));
247 dprint(DBG_EXTENT, "\n");
248}
249
250static int hfsplus_add_extent(struct hfsplus_extent *extent, u32 offset,
251 u32 alloc_block, u32 block_count)
252{
253 u32 count, start;
254 int i;
255
256 hfsplus_dump_extent(extent);
257 for (i = 0; i < 8; extent++, i++) {
258 count = be32_to_cpu(extent->block_count);
259 if (offset == count) {
260 start = be32_to_cpu(extent->start_block);
261 if (alloc_block != start + count) {
262 if (++i >= 8)
263 return -ENOSPC;
264 extent++;
265 extent->start_block = cpu_to_be32(alloc_block);
266 } else
267 block_count += count;
268 extent->block_count = cpu_to_be32(block_count);
269 return 0;
270 } else if (offset < count)
271 break;
272 offset -= count;
273 }
274 /* panic? */
275 return -EIO;
276}
277
278static int hfsplus_free_extents(struct super_block *sb,
279 struct hfsplus_extent *extent,
280 u32 offset, u32 block_nr)
281{
282 u32 count, start;
283 int i;
284
285 hfsplus_dump_extent(extent);
286 for (i = 0; i < 8; extent++, i++) {
287 count = be32_to_cpu(extent->block_count);
288 if (offset == count)
289 goto found;
290 else if (offset < count)
291 break;
292 offset -= count;
293 }
294 /* panic? */
295 return -EIO;
296found:
297 for (;;) {
298 start = be32_to_cpu(extent->start_block);
299 if (count <= block_nr) {
300 hfsplus_block_free(sb, start, count);
301 extent->block_count = 0;
302 extent->start_block = 0;
303 block_nr -= count;
304 } else {
305 count -= block_nr;
306 hfsplus_block_free(sb, start + count, block_nr);
307 extent->block_count = cpu_to_be32(count);
308 block_nr = 0;
309 }
310 if (!block_nr || !i)
311 return 0;
312 i--;
313 extent--;
314 count = be32_to_cpu(extent->block_count);
315 }
316}
317
318int hfsplus_free_fork(struct super_block *sb, u32 cnid, struct hfsplus_fork_raw *fork, int type)
319{
320 struct hfs_find_data fd;
321 hfsplus_extent_rec ext_entry;
322 u32 total_blocks, blocks, start;
323 int res, i;
324
325 total_blocks = be32_to_cpu(fork->total_blocks);
326 if (!total_blocks)
327 return 0;
328
329 blocks = 0;
330 for (i = 0; i < 8; i++)
331 blocks += be32_to_cpu(fork->extents[i].block_count);
332
333 res = hfsplus_free_extents(sb, fork->extents, blocks, blocks);
334 if (res)
335 return res;
336 if (total_blocks == blocks)
337 return 0;
338
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200339 hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 do {
341 res = __hfsplus_ext_read_extent(&fd, ext_entry, cnid,
342 total_blocks, type);
343 if (res)
344 break;
345 start = be32_to_cpu(fd.key->ext.start_block);
346 hfsplus_free_extents(sb, ext_entry,
347 total_blocks - start,
348 total_blocks);
349 hfs_brec_remove(&fd);
350 total_blocks = start;
351 } while (total_blocks > blocks);
352 hfs_find_exit(&fd);
353
354 return res;
355}
356
357int hfsplus_file_extend(struct inode *inode)
358{
359 struct super_block *sb = inode->i_sb;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200360 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200361 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 u32 start, len, goal;
363 int res;
364
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200365 if (sbi->alloc_file->i_size * 8 <
366 sbi->total_blocks - sbi->free_blocks + 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 // extend alloc file
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200368 printk(KERN_ERR "hfs: extend alloc file! (%Lu,%u,%u)\n",
369 sbi->alloc_file->i_size * 8,
370 sbi->total_blocks, sbi->free_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
373
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200374 mutex_lock(&hip->extents_lock);
375 if (hip->alloc_blocks == hip->first_blocks)
376 goal = hfsplus_ext_lastblock(hip->first_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200378 res = hfsplus_ext_read_extent(inode, hip->alloc_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (res)
380 goto out;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200381 goal = hfsplus_ext_lastblock(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200384 len = hip->clump_blocks;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200385 start = hfsplus_block_allocate(sb, sbi->total_blocks, goal, &len);
386 if (start >= sbi->total_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 start = hfsplus_block_allocate(sb, goal, 0, &len);
388 if (start >= goal) {
389 res = -ENOSPC;
390 goto out;
391 }
392 }
393
394 dprint(DBG_EXTENT, "extend %lu: %u,%u\n", inode->i_ino, start, len);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200395
396 if (hip->alloc_blocks <= hip->first_blocks) {
397 if (!hip->first_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 dprint(DBG_EXTENT, "first extents\n");
399 /* no extents yet */
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200400 hip->first_extents[0].start_block = cpu_to_be32(start);
401 hip->first_extents[0].block_count = cpu_to_be32(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 res = 0;
403 } else {
404 /* try to append to extents in inode */
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200405 res = hfsplus_add_extent(hip->first_extents,
406 hip->alloc_blocks,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 start, len);
408 if (res == -ENOSPC)
409 goto insert_extent;
410 }
411 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200412 hfsplus_dump_extent(hip->first_extents);
413 hip->first_blocks += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415 } else {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200416 res = hfsplus_add_extent(hip->cached_extents,
417 hip->alloc_blocks - hip->cached_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 start, len);
419 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200420 hfsplus_dump_extent(hip->cached_extents);
421 hip->flags |= HFSPLUS_FLG_EXT_DIRTY;
422 hip->cached_blocks += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 } else if (res == -ENOSPC)
424 goto insert_extent;
425 }
426out:
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200427 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (!res) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200429 hip->alloc_blocks += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 mark_inode_dirty(inode);
431 }
432 return res;
433
434insert_extent:
435 dprint(DBG_EXTENT, "insert new extent\n");
436 hfsplus_ext_write_extent(inode);
437
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200438 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
439 hip->cached_extents[0].start_block = cpu_to_be32(start);
440 hip->cached_extents[0].block_count = cpu_to_be32(len);
441 hfsplus_dump_extent(hip->cached_extents);
442 hip->flags |= HFSPLUS_FLG_EXT_DIRTY | HFSPLUS_FLG_EXT_NEW;
443 hip->cached_start = hip->alloc_blocks;
444 hip->cached_blocks = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 res = 0;
447 goto out;
448}
449
450void hfsplus_file_truncate(struct inode *inode)
451{
452 struct super_block *sb = inode->i_sb;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200453 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 struct hfs_find_data fd;
455 u32 alloc_cnt, blk_cnt, start;
456 int res;
457
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200458 dprint(DBG_INODE, "truncate: %lu, %Lu -> %Lu\n",
459 inode->i_ino, (long long)hip->phys_size, inode->i_size);
460
461 if (inode->i_size > hip->phys_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 struct address_space *mapping = inode->i_mapping;
463 struct page *page;
Nick Piggin7c0efc62007-10-16 01:25:09 -0700464 void *fsdata;
465 u32 size = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 int res;
467
Nick Piggin7c0efc62007-10-16 01:25:09 -0700468 res = pagecache_write_begin(NULL, mapping, size, 0,
469 AOP_FLAG_UNINTERRUPTIBLE,
470 &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (res)
Nick Piggin7c0efc62007-10-16 01:25:09 -0700472 return;
473 res = pagecache_write_end(NULL, mapping, size, 0, 0, page, fsdata);
474 if (res < 0)
475 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 mark_inode_dirty(inode);
477 return;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200478 } else if (inode->i_size == hip->phys_size)
Roman Zippelf76d28d2005-08-01 21:11:40 -0700479 return;
480
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200481 blk_cnt = (inode->i_size + HFSPLUS_SB(sb)->alloc_blksz - 1) >>
482 HFSPLUS_SB(sb)->alloc_blksz_shift;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200483 alloc_cnt = hip->alloc_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (blk_cnt == alloc_cnt)
485 goto out;
486
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200487 mutex_lock(&hip->extents_lock);
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200488 hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 while (1) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200490 if (alloc_cnt == hip->first_blocks) {
491 hfsplus_free_extents(sb, hip->first_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 alloc_cnt, alloc_cnt - blk_cnt);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200493 hfsplus_dump_extent(hip->first_extents);
494 hip->first_blocks = blk_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 break;
496 }
497 res = __hfsplus_ext_cache_extent(&fd, inode, alloc_cnt);
498 if (res)
499 break;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200500 start = hip->cached_start;
501 hfsplus_free_extents(sb, hip->cached_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 alloc_cnt - start, alloc_cnt - blk_cnt);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200503 hfsplus_dump_extent(hip->cached_extents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (blk_cnt > start) {
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200505 hip->flags |= HFSPLUS_FLG_EXT_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 break;
507 }
508 alloc_cnt = start;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200509 hip->cached_start = hip->cached_blocks = 0;
510 hip->flags &= ~(HFSPLUS_FLG_EXT_DIRTY | HFSPLUS_FLG_EXT_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 hfs_brec_remove(&fd);
512 }
513 hfs_find_exit(&fd);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200514 mutex_unlock(&hip->extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200516 hip->alloc_blocks = blk_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517out:
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200518 hip->phys_size = inode->i_size;
519 hip->fs_blocks = (inode->i_size + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
520 inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 mark_inode_dirty(inode);
522}