| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * balloc.c | 
|  | 3 | * | 
|  | 4 | * PURPOSE | 
|  | 5 | *	Block allocation handling routines for the OSTA-UDF(tm) filesystem. | 
|  | 6 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * COPYRIGHT | 
|  | 8 | *	This file is distributed under the terms of the GNU General Public | 
|  | 9 | *	License (GPL). Copies of the GPL can be obtained from: | 
|  | 10 | *		ftp://prep.ai.mit.edu/pub/gnu/GPL | 
|  | 11 | *	Each contributing author retains all rights to their own work. | 
|  | 12 | * | 
|  | 13 | *  (C) 1999-2001 Ben Fennema | 
|  | 14 | *  (C) 1999 Stelias Computing Inc | 
|  | 15 | * | 
|  | 16 | * HISTORY | 
|  | 17 | * | 
|  | 18 | *  02/24/99 blf  Created. | 
|  | 19 | * | 
|  | 20 | */ | 
|  | 21 |  | 
|  | 22 | #include "udfdecl.h" | 
|  | 23 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/buffer_head.h> | 
|  | 25 | #include <linux/bitops.h> | 
|  | 26 |  | 
|  | 27 | #include "udf_i.h" | 
|  | 28 | #include "udf_sb.h" | 
|  | 29 |  | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 30 | #define udf_clear_bit(nr, addr) ext2_clear_bit(nr, addr) | 
|  | 31 | #define udf_set_bit(nr, addr) ext2_set_bit(nr, addr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #define udf_test_bit(nr, addr) ext2_test_bit(nr, addr) | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 33 | #define udf_find_next_one_bit(addr, size, offset) \ | 
| Akinobu Mita | 3a065fc | 2010-02-23 23:11:13 +0900 | [diff] [blame] | 34 | ext2_find_next_bit(addr, size, offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 36 | static int read_block_bitmap(struct super_block *sb, | 
|  | 37 | struct udf_bitmap *bitmap, unsigned int block, | 
|  | 38 | unsigned long bitmap_nr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | { | 
|  | 40 | struct buffer_head *bh = NULL; | 
|  | 41 | int retval = 0; | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 42 | struct kernel_lb_addr loc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 |  | 
|  | 44 | loc.logicalBlockNum = bitmap->s_extPosition; | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 45 | loc.partitionReferenceNum = UDF_SB(sb)->s_partition; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 |  | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 47 | bh = udf_tread(sb, udf_get_lb_pblock(sb, &loc, block)); | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 48 | if (!bh) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | retval = -EIO; | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 50 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | bitmap->s_block_bitmap[bitmap_nr] = bh; | 
|  | 52 | return retval; | 
|  | 53 | } | 
|  | 54 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 55 | static int __load_block_bitmap(struct super_block *sb, | 
|  | 56 | struct udf_bitmap *bitmap, | 
|  | 57 | unsigned int block_group) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | { | 
|  | 59 | int retval = 0; | 
|  | 60 | int nr_groups = bitmap->s_nr_groups; | 
|  | 61 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 62 | if (block_group >= nr_groups) { | 
|  | 63 | udf_debug("block_group (%d) > nr_groups (%d)\n", block_group, | 
|  | 64 | nr_groups); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | } | 
|  | 66 |  | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 67 | if (bitmap->s_block_bitmap[block_group]) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | return block_group; | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 69 | } else { | 
|  | 70 | retval = read_block_bitmap(sb, bitmap, block_group, | 
|  | 71 | block_group); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | if (retval < 0) | 
|  | 73 | return retval; | 
|  | 74 | return block_group; | 
|  | 75 | } | 
|  | 76 | } | 
|  | 77 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 78 | static inline int load_block_bitmap(struct super_block *sb, | 
|  | 79 | struct udf_bitmap *bitmap, | 
|  | 80 | unsigned int block_group) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | { | 
|  | 82 | int slot; | 
|  | 83 |  | 
|  | 84 | slot = __load_block_bitmap(sb, bitmap, block_group); | 
|  | 85 |  | 
|  | 86 | if (slot < 0) | 
|  | 87 | return slot; | 
|  | 88 |  | 
|  | 89 | if (!bitmap->s_block_bitmap[slot]) | 
|  | 90 | return -EIO; | 
|  | 91 |  | 
|  | 92 | return slot; | 
|  | 93 | } | 
|  | 94 |  | 
| Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 95 | static void udf_add_free_space(struct super_block *sb, u16 partition, u32 cnt) | 
| Marcin Slusarz | 742ba02 | 2008-02-08 04:20:40 -0800 | [diff] [blame] | 96 | { | 
| Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 97 | struct udf_sb_info *sbi = UDF_SB(sb); | 
| Marcin Slusarz | 742ba02 | 2008-02-08 04:20:40 -0800 | [diff] [blame] | 98 | struct logicalVolIntegrityDesc *lvid; | 
|  | 99 |  | 
| Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 100 | if (!sbi->s_lvid_bh) | 
|  | 101 | return; | 
| Marcin Slusarz | 742ba02 | 2008-02-08 04:20:40 -0800 | [diff] [blame] | 102 |  | 
|  | 103 | lvid = (struct logicalVolIntegrityDesc *)sbi->s_lvid_bh->b_data; | 
| marcin.slusarz@gmail.com | c2104fd | 2008-01-30 22:03:57 +0100 | [diff] [blame] | 104 | le32_add_cpu(&lvid->freeSpaceTable[partition], cnt); | 
| Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 105 | udf_updated_lvid(sb); | 
| Marcin Slusarz | 742ba02 | 2008-02-08 04:20:40 -0800 | [diff] [blame] | 106 | } | 
|  | 107 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 108 | static void udf_bitmap_free_blocks(struct super_block *sb, | 
|  | 109 | struct inode *inode, | 
|  | 110 | struct udf_bitmap *bitmap, | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 111 | struct kernel_lb_addr *bloc, | 
|  | 112 | uint32_t offset, | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 113 | uint32_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | { | 
|  | 115 | struct udf_sb_info *sbi = UDF_SB(sb); | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 116 | struct buffer_head *bh = NULL; | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 117 | struct udf_part_map *partmap; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | unsigned long block; | 
|  | 119 | unsigned long block_group; | 
|  | 120 | unsigned long bit; | 
|  | 121 | unsigned long i; | 
|  | 122 | int bitmap_nr; | 
|  | 123 | unsigned long overflow; | 
|  | 124 |  | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 125 | mutex_lock(&sbi->s_alloc_mutex); | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 126 | partmap = &sbi->s_partmaps[bloc->partitionReferenceNum]; | 
| Dan Carpenter | 69ecbbe | 2010-03-15 11:21:13 +0300 | [diff] [blame] | 127 | if (bloc->logicalBlockNum + count < count || | 
|  | 128 | (bloc->logicalBlockNum + count) > partmap->s_partition_len) { | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 129 | udf_debug("%d < %d || %d + %d > %d\n", | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 130 | bloc->logicalBlockNum, 0, bloc->logicalBlockNum, | 
|  | 131 | count, partmap->s_partition_len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | goto error_return; | 
|  | 133 | } | 
|  | 134 |  | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 135 | block = bloc->logicalBlockNum + offset + | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 136 | (sizeof(struct spaceBitmapDesc) << 3); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 |  | 
| Marcin Slusarz | 4daa1b8 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 138 | do { | 
|  | 139 | overflow = 0; | 
|  | 140 | block_group = block >> (sb->s_blocksize_bits + 3); | 
|  | 141 | bit = block % (sb->s_blocksize << 3); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 |  | 
| Marcin Slusarz | 4daa1b8 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 143 | /* | 
|  | 144 | * Check to see if we are freeing blocks across a group boundary. | 
|  | 145 | */ | 
|  | 146 | if (bit + count > (sb->s_blocksize << 3)) { | 
|  | 147 | overflow = bit + count - (sb->s_blocksize << 3); | 
|  | 148 | count -= overflow; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } | 
| Marcin Slusarz | 4daa1b8 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 150 | bitmap_nr = load_block_bitmap(sb, bitmap, block_group); | 
|  | 151 | if (bitmap_nr < 0) | 
|  | 152 | goto error_return; | 
|  | 153 |  | 
|  | 154 | bh = bitmap->s_block_bitmap[bitmap_nr]; | 
|  | 155 | for (i = 0; i < count; i++) { | 
|  | 156 | if (udf_set_bit(bit + i, bh->b_data)) { | 
|  | 157 | udf_debug("bit %ld already set\n", bit + i); | 
|  | 158 | udf_debug("byte=%2x\n", | 
|  | 159 | ((char *)bh->b_data)[(bit + i) >> 3]); | 
|  | 160 | } else { | 
| Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 161 | udf_add_free_space(sb, sbi->s_partition, 1); | 
| Marcin Slusarz | 4daa1b8 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 162 | } | 
|  | 163 | } | 
|  | 164 | mark_buffer_dirty(bh); | 
|  | 165 | if (overflow) { | 
|  | 166 | block += count; | 
|  | 167 | count = overflow; | 
|  | 168 | } | 
|  | 169 | } while (overflow); | 
|  | 170 |  | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 171 | error_return: | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 172 | mutex_unlock(&sbi->s_alloc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } | 
|  | 174 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 175 | static int udf_bitmap_prealloc_blocks(struct super_block *sb, | 
|  | 176 | struct inode *inode, | 
|  | 177 | struct udf_bitmap *bitmap, | 
|  | 178 | uint16_t partition, uint32_t first_block, | 
|  | 179 | uint32_t block_count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | { | 
|  | 181 | struct udf_sb_info *sbi = UDF_SB(sb); | 
|  | 182 | int alloc_count = 0; | 
|  | 183 | int bit, block, block_group, group_start; | 
|  | 184 | int nr_groups, bitmap_nr; | 
|  | 185 | struct buffer_head *bh; | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 186 | __u32 part_len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 |  | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 188 | mutex_lock(&sbi->s_alloc_mutex); | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 189 | part_len = sbi->s_partmaps[partition].s_partition_len; | 
| Roel Kluin | 3391faa | 2009-06-22 23:12:29 +0200 | [diff] [blame] | 190 | if (first_block >= part_len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | goto out; | 
|  | 192 |  | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 193 | if (first_block + block_count > part_len) | 
|  | 194 | block_count = part_len - first_block; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 |  | 
| Marcin Slusarz | 4daa1b8 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 196 | do { | 
|  | 197 | nr_groups = udf_compute_nr_groups(sb, partition); | 
|  | 198 | block = first_block + (sizeof(struct spaceBitmapDesc) << 3); | 
|  | 199 | block_group = block >> (sb->s_blocksize_bits + 3); | 
|  | 200 | group_start = block_group ? 0 : sizeof(struct spaceBitmapDesc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 |  | 
| Marcin Slusarz | 4daa1b8 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 202 | bitmap_nr = load_block_bitmap(sb, bitmap, block_group); | 
|  | 203 | if (bitmap_nr < 0) | 
|  | 204 | goto out; | 
|  | 205 | bh = bitmap->s_block_bitmap[bitmap_nr]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 |  | 
| Marcin Slusarz | 4daa1b8 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 207 | bit = block % (sb->s_blocksize << 3); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 |  | 
| Marcin Slusarz | 4daa1b8 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 209 | while (bit < (sb->s_blocksize << 3) && block_count > 0) { | 
| Jan Kara | 3635046 | 2010-05-19 16:28:56 +0200 | [diff] [blame] | 210 | if (!udf_clear_bit(bit, bh->b_data)) | 
| Marcin Slusarz | 4daa1b8 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 211 | goto out; | 
| Marcin Slusarz | 4daa1b8 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 212 | block_count--; | 
|  | 213 | alloc_count++; | 
|  | 214 | bit++; | 
|  | 215 | block++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | } | 
| Marcin Slusarz | 4daa1b8 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 217 | mark_buffer_dirty(bh); | 
|  | 218 | } while (block_count > 0); | 
|  | 219 |  | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 220 | out: | 
| Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 221 | udf_add_free_space(sb, partition, -alloc_count); | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 222 | mutex_unlock(&sbi->s_alloc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | return alloc_count; | 
|  | 224 | } | 
|  | 225 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 226 | static int udf_bitmap_new_block(struct super_block *sb, | 
|  | 227 | struct inode *inode, | 
|  | 228 | struct udf_bitmap *bitmap, uint16_t partition, | 
|  | 229 | uint32_t goal, int *err) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | { | 
|  | 231 | struct udf_sb_info *sbi = UDF_SB(sb); | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 232 | int newbit, bit = 0, block, block_group, group_start; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | int end_goal, nr_groups, bitmap_nr, i; | 
|  | 234 | struct buffer_head *bh = NULL; | 
|  | 235 | char *ptr; | 
|  | 236 | int newblock = 0; | 
|  | 237 |  | 
|  | 238 | *err = -ENOSPC; | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 239 | mutex_lock(&sbi->s_alloc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 |  | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 241 | repeat: | 
| Roel Kluin | 3391faa | 2009-06-22 23:12:29 +0200 | [diff] [blame] | 242 | if (goal >= sbi->s_partmaps[partition].s_partition_len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | goal = 0; | 
|  | 244 |  | 
|  | 245 | nr_groups = bitmap->s_nr_groups; | 
|  | 246 | block = goal + (sizeof(struct spaceBitmapDesc) << 3); | 
|  | 247 | block_group = block >> (sb->s_blocksize_bits + 3); | 
|  | 248 | group_start = block_group ? 0 : sizeof(struct spaceBitmapDesc); | 
|  | 249 |  | 
|  | 250 | bitmap_nr = load_block_bitmap(sb, bitmap, block_group); | 
|  | 251 | if (bitmap_nr < 0) | 
|  | 252 | goto error_return; | 
|  | 253 | bh = bitmap->s_block_bitmap[bitmap_nr]; | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 254 | ptr = memscan((char *)bh->b_data + group_start, 0xFF, | 
|  | 255 | sb->s_blocksize - group_start); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 257 | if ((ptr - ((char *)bh->b_data)) < sb->s_blocksize) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | bit = block % (sb->s_blocksize << 3); | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 259 | if (udf_test_bit(bit, bh->b_data)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | goto got_block; | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 261 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | end_goal = (bit + 63) & ~63; | 
|  | 263 | bit = udf_find_next_one_bit(bh->b_data, end_goal, bit); | 
|  | 264 | if (bit < end_goal) | 
|  | 265 | goto got_block; | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 266 |  | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 267 | ptr = memscan((char *)bh->b_data + (bit >> 3), 0xFF, | 
|  | 268 | sb->s_blocksize - ((bit + 7) >> 3)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | newbit = (ptr - ((char *)bh->b_data)) << 3; | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 270 | if (newbit < sb->s_blocksize << 3) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | bit = newbit; | 
|  | 272 | goto search_back; | 
|  | 273 | } | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 274 |  | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 275 | newbit = udf_find_next_one_bit(bh->b_data, | 
|  | 276 | sb->s_blocksize << 3, bit); | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 277 | if (newbit < sb->s_blocksize << 3) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | bit = newbit; | 
|  | 279 | goto got_block; | 
|  | 280 | } | 
|  | 281 | } | 
|  | 282 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 283 | for (i = 0; i < (nr_groups * 2); i++) { | 
|  | 284 | block_group++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | if (block_group >= nr_groups) | 
|  | 286 | block_group = 0; | 
|  | 287 | group_start = block_group ? 0 : sizeof(struct spaceBitmapDesc); | 
|  | 288 |  | 
|  | 289 | bitmap_nr = load_block_bitmap(sb, bitmap, block_group); | 
|  | 290 | if (bitmap_nr < 0) | 
|  | 291 | goto error_return; | 
|  | 292 | bh = bitmap->s_block_bitmap[bitmap_nr]; | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 293 | if (i < nr_groups) { | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 294 | ptr = memscan((char *)bh->b_data + group_start, 0xFF, | 
|  | 295 | sb->s_blocksize - group_start); | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 296 | if ((ptr - ((char *)bh->b_data)) < sb->s_blocksize) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | bit = (ptr - ((char *)bh->b_data)) << 3; | 
|  | 298 | break; | 
|  | 299 | } | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 300 | } else { | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 301 | bit = udf_find_next_one_bit((char *)bh->b_data, | 
|  | 302 | sb->s_blocksize << 3, | 
|  | 303 | group_start << 3); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | if (bit < sb->s_blocksize << 3) | 
|  | 305 | break; | 
|  | 306 | } | 
|  | 307 | } | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 308 | if (i >= (nr_groups * 2)) { | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 309 | mutex_unlock(&sbi->s_alloc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | return newblock; | 
|  | 311 | } | 
|  | 312 | if (bit < sb->s_blocksize << 3) | 
|  | 313 | goto search_back; | 
|  | 314 | else | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 315 | bit = udf_find_next_one_bit(bh->b_data, sb->s_blocksize << 3, | 
|  | 316 | group_start << 3); | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 317 | if (bit >= sb->s_blocksize << 3) { | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 318 | mutex_unlock(&sbi->s_alloc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | return 0; | 
|  | 320 | } | 
|  | 321 |  | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 322 | search_back: | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 323 | i = 0; | 
|  | 324 | while (i < 7 && bit > (group_start << 3) && | 
|  | 325 | udf_test_bit(bit - 1, bh->b_data)) { | 
|  | 326 | ++i; | 
|  | 327 | --bit; | 
|  | 328 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 |  | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 330 | got_block: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | newblock = bit + (block_group << (sb->s_blocksize_bits + 3)) - | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 332 | (sizeof(struct spaceBitmapDesc) << 3); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 334 | if (!udf_clear_bit(bit, bh->b_data)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | udf_debug("bit already cleared for block %d\n", bit); | 
|  | 336 | goto repeat; | 
|  | 337 | } | 
|  | 338 |  | 
|  | 339 | mark_buffer_dirty(bh); | 
|  | 340 |  | 
| Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 341 | udf_add_free_space(sb, partition, -1); | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 342 | mutex_unlock(&sbi->s_alloc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | *err = 0; | 
|  | 344 | return newblock; | 
|  | 345 |  | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 346 | error_return: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | *err = -EIO; | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 348 | mutex_unlock(&sbi->s_alloc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | return 0; | 
|  | 350 | } | 
|  | 351 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 352 | static void udf_table_free_blocks(struct super_block *sb, | 
|  | 353 | struct inode *inode, | 
|  | 354 | struct inode *table, | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 355 | struct kernel_lb_addr *bloc, | 
|  | 356 | uint32_t offset, | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 357 | uint32_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | { | 
|  | 359 | struct udf_sb_info *sbi = UDF_SB(sb); | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 360 | struct udf_part_map *partmap; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | uint32_t start, end; | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 362 | uint32_t elen; | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 363 | struct kernel_lb_addr eloc; | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 364 | struct extent_position oepos, epos; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | int8_t etype; | 
|  | 366 | int i; | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 367 | struct udf_inode_info *iinfo; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 |  | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 369 | mutex_lock(&sbi->s_alloc_mutex); | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 370 | partmap = &sbi->s_partmaps[bloc->partitionReferenceNum]; | 
| Dan Carpenter | 69ecbbe | 2010-03-15 11:21:13 +0300 | [diff] [blame] | 371 | if (bloc->logicalBlockNum + count < count || | 
|  | 372 | (bloc->logicalBlockNum + count) > partmap->s_partition_len) { | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 373 | udf_debug("%d < %d || %d + %d > %d\n", | 
| Jan Kara | 1fefd08 | 2009-11-30 19:47:10 +0100 | [diff] [blame] | 374 | bloc->logicalBlockNum, 0, bloc->logicalBlockNum, count, | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 375 | partmap->s_partition_len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | goto error_return; | 
|  | 377 | } | 
|  | 378 |  | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 379 | iinfo = UDF_I(table); | 
| Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 380 | udf_add_free_space(sb, sbi->s_partition, count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 |  | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 382 | start = bloc->logicalBlockNum + offset; | 
|  | 383 | end = bloc->logicalBlockNum + offset + count - 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 |  | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 385 | epos.offset = oepos.offset = sizeof(struct unallocSpaceEntry); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | elen = 0; | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 387 | epos.block = oepos.block = iinfo->i_location; | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 388 | epos.bh = oepos.bh = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 |  | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 390 | while (count && | 
|  | 391 | (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) { | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 392 | if (((eloc.logicalBlockNum + | 
|  | 393 | (elen >> sb->s_blocksize_bits)) == start)) { | 
|  | 394 | if ((0x3FFFFFFF - elen) < | 
|  | 395 | (count << sb->s_blocksize_bits)) { | 
|  | 396 | uint32_t tmp = ((0x3FFFFFFF - elen) >> | 
|  | 397 | sb->s_blocksize_bits); | 
|  | 398 | count -= tmp; | 
|  | 399 | start += tmp; | 
|  | 400 | elen = (etype << 30) | | 
|  | 401 | (0x40000000 - sb->s_blocksize); | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 402 | } else { | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 403 | elen = (etype << 30) | | 
|  | 404 | (elen + | 
|  | 405 | (count << sb->s_blocksize_bits)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | start += count; | 
|  | 407 | count = 0; | 
|  | 408 | } | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 409 | udf_write_aext(table, &oepos, &eloc, elen, 1); | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 410 | } else if (eloc.logicalBlockNum == (end + 1)) { | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 411 | if ((0x3FFFFFFF - elen) < | 
|  | 412 | (count << sb->s_blocksize_bits)) { | 
|  | 413 | uint32_t tmp = ((0x3FFFFFFF - elen) >> | 
|  | 414 | sb->s_blocksize_bits); | 
|  | 415 | count -= tmp; | 
|  | 416 | end -= tmp; | 
|  | 417 | eloc.logicalBlockNum -= tmp; | 
|  | 418 | elen = (etype << 30) | | 
|  | 419 | (0x40000000 - sb->s_blocksize); | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 420 | } else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | eloc.logicalBlockNum = start; | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 422 | elen = (etype << 30) | | 
|  | 423 | (elen + | 
|  | 424 | (count << sb->s_blocksize_bits)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | end -= count; | 
|  | 426 | count = 0; | 
|  | 427 | } | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 428 | udf_write_aext(table, &oepos, &eloc, elen, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | } | 
|  | 430 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 431 | if (epos.bh != oepos.bh) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | i = -1; | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 433 | oepos.block = epos.block; | 
| Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 434 | brelse(oepos.bh); | 
|  | 435 | get_bh(epos.bh); | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 436 | oepos.bh = epos.bh; | 
|  | 437 | oepos.offset = 0; | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 438 | } else { | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 439 | oepos.offset = epos.offset; | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 440 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | } | 
|  | 442 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 443 | if (count) { | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 444 | /* | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 445 | * NOTE: we CANNOT use udf_add_aext here, as it can try to | 
|  | 446 | * allocate a new block, and since we hold the super block | 
|  | 447 | * lock already very bad things would happen :) | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 448 | * | 
|  | 449 | * We copy the behavior of udf_add_aext, but instead of | 
|  | 450 | * trying to allocate a new block close to the existing one, | 
|  | 451 | * we just steal a block from the extent we are trying to add. | 
|  | 452 | * | 
|  | 453 | * It would be nice if the blocks were close together, but it | 
|  | 454 | * isn't required. | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 455 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 |  | 
|  | 457 | int adsize; | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 458 | struct short_ad *sad = NULL; | 
|  | 459 | struct long_ad *lad = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | struct allocExtDesc *aed; | 
|  | 461 |  | 
|  | 462 | eloc.logicalBlockNum = start; | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 463 | elen = EXT_RECORDED_ALLOCATED | | 
|  | 464 | (count << sb->s_blocksize_bits); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 |  | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 466 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 467 | adsize = sizeof(struct short_ad); | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 468 | else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG) | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 469 | adsize = sizeof(struct long_ad); | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 470 | else { | 
| Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 471 | brelse(oepos.bh); | 
|  | 472 | brelse(epos.bh); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | goto error_return; | 
|  | 474 | } | 
|  | 475 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 476 | if (epos.offset + (2 * adsize) > sb->s_blocksize) { | 
| Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 477 | unsigned char *sptr, *dptr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | int loffset; | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 479 |  | 
| Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 480 | brelse(oepos.bh); | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 481 | oepos = epos; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 |  | 
|  | 483 | /* Steal a block from the extent being free'd */ | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 484 | epos.block.logicalBlockNum = eloc.logicalBlockNum; | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 485 | eloc.logicalBlockNum++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | elen -= sb->s_blocksize; | 
|  | 487 |  | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 488 | epos.bh = udf_tread(sb, | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 489 | udf_get_lb_pblock(sb, &epos.block, 0)); | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 490 | if (!epos.bh) { | 
| Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 491 | brelse(oepos.bh); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | goto error_return; | 
|  | 493 | } | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 494 | aed = (struct allocExtDesc *)(epos.bh->b_data); | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 495 | aed->previousAllocExtLocation = | 
|  | 496 | cpu_to_le32(oepos.block.logicalBlockNum); | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 497 | if (epos.offset + adsize > sb->s_blocksize) { | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 498 | loffset = epos.offset; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | aed->lengthAllocDescs = cpu_to_le32(adsize); | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 500 | sptr = iinfo->i_ext.i_data + epos.offset | 
| Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 501 | - adsize; | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 502 | dptr = epos.bh->b_data + | 
|  | 503 | sizeof(struct allocExtDesc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | memcpy(dptr, sptr, adsize); | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 505 | epos.offset = sizeof(struct allocExtDesc) + | 
|  | 506 | adsize; | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 507 | } else { | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 508 | loffset = epos.offset + adsize; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | aed->lengthAllocDescs = cpu_to_le32(0); | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 510 | if (oepos.bh) { | 
| Jan Kara | f5cc15d | 2007-08-30 23:56:22 -0700 | [diff] [blame] | 511 | sptr = oepos.bh->b_data + epos.offset; | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 512 | aed = (struct allocExtDesc *) | 
|  | 513 | oepos.bh->b_data; | 
| marcin.slusarz@gmail.com | c2104fd | 2008-01-30 22:03:57 +0100 | [diff] [blame] | 514 | le32_add_cpu(&aed->lengthAllocDescs, | 
|  | 515 | adsize); | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 516 | } else { | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 517 | sptr = iinfo->i_ext.i_data + | 
| Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 518 | epos.offset; | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 519 | iinfo->i_lenAlloc += adsize; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | mark_inode_dirty(table); | 
|  | 521 | } | 
| Jan Kara | f5cc15d | 2007-08-30 23:56:22 -0700 | [diff] [blame] | 522 | epos.offset = sizeof(struct allocExtDesc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | } | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 524 | if (sbi->s_udfrev >= 0x0200) | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 525 | udf_new_tag(epos.bh->b_data, TAG_IDENT_AED, | 
|  | 526 | 3, 1, epos.block.logicalBlockNum, | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 527 | sizeof(struct tag)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | else | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 529 | udf_new_tag(epos.bh->b_data, TAG_IDENT_AED, | 
|  | 530 | 2, 1, epos.block.logicalBlockNum, | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 531 | sizeof(struct tag)); | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 532 |  | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 533 | switch (iinfo->i_alloc_type) { | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 534 | case ICBTAG_FLAG_AD_SHORT: | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 535 | sad = (struct short_ad *)sptr; | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 536 | sad->extLength = cpu_to_le32( | 
|  | 537 | EXT_NEXT_EXTENT_ALLOCDECS | | 
|  | 538 | sb->s_blocksize); | 
|  | 539 | sad->extPosition = | 
|  | 540 | cpu_to_le32(epos.block.logicalBlockNum); | 
|  | 541 | break; | 
|  | 542 | case ICBTAG_FLAG_AD_LONG: | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 543 | lad = (struct long_ad *)sptr; | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 544 | lad->extLength = cpu_to_le32( | 
|  | 545 | EXT_NEXT_EXTENT_ALLOCDECS | | 
|  | 546 | sb->s_blocksize); | 
|  | 547 | lad->extLocation = | 
|  | 548 | cpu_to_lelb(epos.block); | 
|  | 549 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | } | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 551 | if (oepos.bh) { | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 552 | udf_update_tag(oepos.bh->b_data, loffset); | 
|  | 553 | mark_buffer_dirty(oepos.bh); | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 554 | } else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | mark_inode_dirty(table); | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 556 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | } | 
|  | 558 |  | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 559 | /* It's possible that stealing the block emptied the extent */ | 
|  | 560 | if (elen) { | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 561 | udf_write_aext(table, &epos, &eloc, elen, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 563 | if (!epos.bh) { | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 564 | iinfo->i_lenAlloc += adsize; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | mark_inode_dirty(table); | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 566 | } else { | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 567 | aed = (struct allocExtDesc *)epos.bh->b_data; | 
| marcin.slusarz@gmail.com | c2104fd | 2008-01-30 22:03:57 +0100 | [diff] [blame] | 568 | le32_add_cpu(&aed->lengthAllocDescs, adsize); | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 569 | udf_update_tag(epos.bh->b_data, epos.offset); | 
|  | 570 | mark_buffer_dirty(epos.bh); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | } | 
|  | 572 | } | 
|  | 573 | } | 
|  | 574 |  | 
| Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 575 | brelse(epos.bh); | 
|  | 576 | brelse(oepos.bh); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 |  | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 578 | error_return: | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 579 | mutex_unlock(&sbi->s_alloc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | return; | 
|  | 581 | } | 
|  | 582 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 583 | static int udf_table_prealloc_blocks(struct super_block *sb, | 
|  | 584 | struct inode *inode, | 
|  | 585 | struct inode *table, uint16_t partition, | 
|  | 586 | uint32_t first_block, uint32_t block_count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | { | 
|  | 588 | struct udf_sb_info *sbi = UDF_SB(sb); | 
|  | 589 | int alloc_count = 0; | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 590 | uint32_t elen, adsize; | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 591 | struct kernel_lb_addr eloc; | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 592 | struct extent_position epos; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | int8_t etype = -1; | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 594 | struct udf_inode_info *iinfo; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 |  | 
| Roel Kluin | 3391faa | 2009-06-22 23:12:29 +0200 | [diff] [blame] | 596 | if (first_block >= sbi->s_partmaps[partition].s_partition_len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | return 0; | 
|  | 598 |  | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 599 | iinfo = UDF_I(table); | 
|  | 600 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 601 | adsize = sizeof(struct short_ad); | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 602 | else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG) | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 603 | adsize = sizeof(struct long_ad); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | else | 
|  | 605 | return 0; | 
|  | 606 |  | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 607 | mutex_lock(&sbi->s_alloc_mutex); | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 608 | epos.offset = sizeof(struct unallocSpaceEntry); | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 609 | epos.block = iinfo->i_location; | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 610 | epos.bh = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | eloc.logicalBlockNum = 0xFFFFFFFF; | 
|  | 612 |  | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 613 | while (first_block != eloc.logicalBlockNum && | 
|  | 614 | (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | udf_debug("eloc=%d, elen=%d, first_block=%d\n", | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 616 | eloc.logicalBlockNum, elen, first_block); | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 617 | ; /* empty loop body */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | } | 
|  | 619 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 620 | if (first_block == eloc.logicalBlockNum) { | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 621 | epos.offset -= adsize; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 |  | 
|  | 623 | alloc_count = (elen >> sb->s_blocksize_bits); | 
| Jan Kara | 3635046 | 2010-05-19 16:28:56 +0200 | [diff] [blame] | 624 | if (alloc_count > block_count) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | alloc_count = block_count; | 
|  | 626 | eloc.logicalBlockNum += alloc_count; | 
|  | 627 | elen -= (alloc_count << sb->s_blocksize_bits); | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 628 | udf_write_aext(table, &epos, &eloc, | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 629 | (etype << 30) | elen, 1); | 
|  | 630 | } else | 
|  | 631 | udf_delete_aext(table, epos, eloc, | 
|  | 632 | (etype << 30) | elen); | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 633 | } else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | alloc_count = 0; | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 635 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 |  | 
| Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 637 | brelse(epos.bh); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 |  | 
| Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 639 | if (alloc_count) | 
|  | 640 | udf_add_free_space(sb, partition, -alloc_count); | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 641 | mutex_unlock(&sbi->s_alloc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | return alloc_count; | 
|  | 643 | } | 
|  | 644 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 645 | static int udf_table_new_block(struct super_block *sb, | 
|  | 646 | struct inode *inode, | 
|  | 647 | struct inode *table, uint16_t partition, | 
|  | 648 | uint32_t goal, int *err) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | { | 
|  | 650 | struct udf_sb_info *sbi = UDF_SB(sb); | 
|  | 651 | uint32_t spread = 0xFFFFFFFF, nspread = 0xFFFFFFFF; | 
|  | 652 | uint32_t newblock = 0, adsize; | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 653 | uint32_t elen, goal_elen = 0; | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 654 | struct kernel_lb_addr eloc, uninitialized_var(goal_eloc); | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 655 | struct extent_position epos, goal_epos; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | int8_t etype; | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 657 | struct udf_inode_info *iinfo = UDF_I(table); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 |  | 
|  | 659 | *err = -ENOSPC; | 
|  | 660 |  | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 661 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 662 | adsize = sizeof(struct short_ad); | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 663 | else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG) | 
| Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 664 | adsize = sizeof(struct long_ad); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | else | 
|  | 666 | return newblock; | 
|  | 667 |  | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 668 | mutex_lock(&sbi->s_alloc_mutex); | 
| Roel Kluin | 3391faa | 2009-06-22 23:12:29 +0200 | [diff] [blame] | 669 | if (goal >= sbi->s_partmaps[partition].s_partition_len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | goal = 0; | 
|  | 671 |  | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 672 | /* We search for the closest matching block to goal. If we find | 
|  | 673 | a exact hit, we stop. Otherwise we keep going till we run out | 
|  | 674 | of extents. We store the buffer_head, bloc, and extoffset | 
|  | 675 | of the current closest match and use that when we are done. | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 676 | */ | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 677 | epos.offset = sizeof(struct unallocSpaceEntry); | 
| Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 678 | epos.block = iinfo->i_location; | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 679 | epos.bh = goal_epos.bh = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 |  | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 681 | while (spread && | 
|  | 682 | (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) { | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 683 | if (goal >= eloc.logicalBlockNum) { | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 684 | if (goal < eloc.logicalBlockNum + | 
|  | 685 | (elen >> sb->s_blocksize_bits)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | nspread = 0; | 
|  | 687 | else | 
|  | 688 | nspread = goal - eloc.logicalBlockNum - | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 689 | (elen >> sb->s_blocksize_bits); | 
|  | 690 | } else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | nspread = eloc.logicalBlockNum - goal; | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 692 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 694 | if (nspread < spread) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | spread = nspread; | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 696 | if (goal_epos.bh != epos.bh) { | 
| Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 697 | brelse(goal_epos.bh); | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 698 | goal_epos.bh = epos.bh; | 
| Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 699 | get_bh(goal_epos.bh); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | } | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 701 | goal_epos.block = epos.block; | 
|  | 702 | goal_epos.offset = epos.offset - adsize; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | goal_eloc = eloc; | 
|  | 704 | goal_elen = (etype << 30) | elen; | 
|  | 705 | } | 
|  | 706 | } | 
|  | 707 |  | 
| Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 708 | brelse(epos.bh); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 710 | if (spread == 0xFFFFFFFF) { | 
| Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 711 | brelse(goal_epos.bh); | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 712 | mutex_unlock(&sbi->s_alloc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | return 0; | 
|  | 714 | } | 
|  | 715 |  | 
|  | 716 | /* Only allocate blocks from the beginning of the extent. | 
|  | 717 | That way, we only delete (empty) extents, never have to insert an | 
|  | 718 | extent because of splitting */ | 
|  | 719 | /* This works, but very poorly.... */ | 
|  | 720 |  | 
|  | 721 | newblock = goal_eloc.logicalBlockNum; | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 722 | goal_eloc.logicalBlockNum++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | goal_elen -= sb->s_blocksize; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 |  | 
|  | 725 | if (goal_elen) | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 726 | udf_write_aext(table, &goal_epos, &goal_eloc, goal_elen, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | else | 
| Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 728 | udf_delete_aext(table, goal_epos, goal_eloc, goal_elen); | 
| Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 729 | brelse(goal_epos.bh); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 |  | 
| Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 731 | udf_add_free_space(sb, partition, -1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 |  | 
| Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 733 | mutex_unlock(&sbi->s_alloc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | *err = 0; | 
|  | 735 | return newblock; | 
|  | 736 | } | 
|  | 737 |  | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 738 | void udf_free_blocks(struct super_block *sb, struct inode *inode, | 
|  | 739 | struct kernel_lb_addr *bloc, uint32_t offset, | 
|  | 740 | uint32_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | { | 
| Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 742 | uint16_t partition = bloc->partitionReferenceNum; | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 743 | struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 |  | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 745 | if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) { | 
| Jan Kara | e650b94 | 2008-12-01 13:06:10 +0100 | [diff] [blame] | 746 | udf_bitmap_free_blocks(sb, inode, map->s_uspace.s_bitmap, | 
|  | 747 | bloc, offset, count); | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 748 | } else if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) { | 
| Jan Kara | e650b94 | 2008-12-01 13:06:10 +0100 | [diff] [blame] | 749 | udf_table_free_blocks(sb, inode, map->s_uspace.s_table, | 
|  | 750 | bloc, offset, count); | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 751 | } else if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) { | 
| Jan Kara | e650b94 | 2008-12-01 13:06:10 +0100 | [diff] [blame] | 752 | udf_bitmap_free_blocks(sb, inode, map->s_fspace.s_bitmap, | 
|  | 753 | bloc, offset, count); | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 754 | } else if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) { | 
| Jan Kara | e650b94 | 2008-12-01 13:06:10 +0100 | [diff] [blame] | 755 | udf_table_free_blocks(sb, inode, map->s_fspace.s_table, | 
|  | 756 | bloc, offset, count); | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 757 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | } | 
|  | 759 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 760 | inline int udf_prealloc_blocks(struct super_block *sb, | 
|  | 761 | struct inode *inode, | 
|  | 762 | uint16_t partition, uint32_t first_block, | 
|  | 763 | uint32_t block_count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | { | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 765 | struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition]; | 
|  | 766 |  | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 767 | if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | return udf_bitmap_prealloc_blocks(sb, inode, | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 769 | map->s_uspace.s_bitmap, | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 770 | partition, first_block, | 
|  | 771 | block_count); | 
|  | 772 | else if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | return udf_table_prealloc_blocks(sb, inode, | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 774 | map->s_uspace.s_table, | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 775 | partition, first_block, | 
|  | 776 | block_count); | 
|  | 777 | else if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | return udf_bitmap_prealloc_blocks(sb, inode, | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 779 | map->s_fspace.s_bitmap, | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 780 | partition, first_block, | 
|  | 781 | block_count); | 
|  | 782 | else if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | return udf_table_prealloc_blocks(sb, inode, | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 784 | map->s_fspace.s_table, | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 785 | partition, first_block, | 
|  | 786 | block_count); | 
|  | 787 | else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | return 0; | 
|  | 789 | } | 
|  | 790 |  | 
| Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 791 | inline int udf_new_block(struct super_block *sb, | 
|  | 792 | struct inode *inode, | 
|  | 793 | uint16_t partition, uint32_t goal, int *err) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | { | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 795 | struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition]; | 
| Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 796 |  | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 797 | if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) | 
|  | 798 | return udf_bitmap_new_block(sb, inode, | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 799 | map->s_uspace.s_bitmap, | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 800 | partition, goal, err); | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 801 | else if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | return udf_table_new_block(sb, inode, | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 803 | map->s_uspace.s_table, | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 804 | partition, goal, err); | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 805 | else if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | return udf_bitmap_new_block(sb, inode, | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 807 | map->s_fspace.s_bitmap, | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 808 | partition, goal, err); | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 809 | else if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | return udf_table_new_block(sb, inode, | 
| Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 811 | map->s_fspace.s_table, | 
| Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 812 | partition, goal, err); | 
| Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 813 | else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | *err = -EIO; | 
|  | 815 | return 0; | 
|  | 816 | } | 
|  | 817 | } |