]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/hfsplus/bitmap.c
Merge tag 'powerpc-4.13-5' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[mirror_ubuntu-artful-kernel.git] / fs / hfsplus / bitmap.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/hfsplus/bitmap.c
3 *
4 * Copyright (C) 2001
5 * Brad Boyer (flar@allandria.com)
6 * (C) 2003 Ardis Technologies <roman@ardistech.com>
7 *
8 * Handling of allocation file
9 */
10
11#include <linux/pagemap.h>
12
13#include "hfsplus_fs.h"
14#include "hfsplus_raw.h"
15
09cbfeaf 16#define PAGE_CACHE_BITS (PAGE_SIZE * 8)
1da177e4 17
2753cc28
AS
18int hfsplus_block_allocate(struct super_block *sb, u32 size,
19 u32 offset, u32 *max)
1da177e4 20{
dd73a01a 21 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
1da177e4
LT
22 struct page *page;
23 struct address_space *mapping;
24 __be32 *pptr, *curr, *end;
25 u32 mask, start, len, n;
26 __be32 val;
27 int i;
28
29 len = *max;
30 if (!len)
31 return size;
32
c2b3e1f7 33 hfs_dbg(BITMAP, "block_allocate: %u,%u,%u\n", size, offset, len);
dd73a01a
CH
34 mutex_lock(&sbi->alloc_mutex);
35 mapping = sbi->alloc_file->i_mapping;
090d2b18 36 page = read_mapping_page(mapping, offset / PAGE_CACHE_BITS, NULL);
649f1ee6
ES
37 if (IS_ERR(page)) {
38 start = size;
39 goto out;
40 }
1da177e4
LT
41 pptr = kmap(page);
42 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32;
43 i = offset % 32;
44 offset &= ~(PAGE_CACHE_BITS - 1);
45 if ((size ^ offset) / PAGE_CACHE_BITS)
46 end = pptr + PAGE_CACHE_BITS / 32;
47 else
48 end = pptr + ((size + 31) & (PAGE_CACHE_BITS - 1)) / 32;
49
50 /* scan the first partial u32 for zero bits */
51 val = *curr;
52 if (~val) {
53 n = be32_to_cpu(val);
54 mask = (1U << 31) >> i;
55 for (; i < 32; mask >>= 1, i++) {
56 if (!(n & mask))
57 goto found;
58 }
59 }
60 curr++;
61
62 /* scan complete u32s for the first zero bit */
63 while (1) {
64 while (curr < end) {
65 val = *curr;
66 if (~val) {
67 n = be32_to_cpu(val);
68 mask = 1 << 31;
69 for (i = 0; i < 32; mask >>= 1, i++) {
70 if (!(n & mask))
71 goto found;
72 }
73 }
74 curr++;
75 }
76 kunmap(page);
77 offset += PAGE_CACHE_BITS;
78 if (offset >= size)
79 break;
090d2b18
PE
80 page = read_mapping_page(mapping, offset / PAGE_CACHE_BITS,
81 NULL);
649f1ee6
ES
82 if (IS_ERR(page)) {
83 start = size;
84 goto out;
85 }
1da177e4
LT
86 curr = pptr = kmap(page);
87 if ((size ^ offset) / PAGE_CACHE_BITS)
88 end = pptr + PAGE_CACHE_BITS / 32;
89 else
90 end = pptr + ((size + 31) & (PAGE_CACHE_BITS - 1)) / 32;
91 }
c2b3e1f7 92 hfs_dbg(BITMAP, "bitmap full\n");
1da177e4
LT
93 start = size;
94 goto out;
95
96found:
97 start = offset + (curr - pptr) * 32 + i;
98 if (start >= size) {
c2b3e1f7 99 hfs_dbg(BITMAP, "bitmap full\n");
1da177e4
LT
100 goto out;
101 }
102 /* do any partial u32 at the start */
103 len = min(size - start, len);
104 while (1) {
105 n |= mask;
106 if (++i >= 32)
107 break;
108 mask >>= 1;
109 if (!--len || n & mask)
110 goto done;
111 }
112 if (!--len)
113 goto done;
114 *curr++ = cpu_to_be32(n);
115 /* do full u32s */
116 while (1) {
117 while (curr < end) {
118 n = be32_to_cpu(*curr);
119 if (len < 32)
120 goto last;
121 if (n) {
122 len = 32;
123 goto last;
124 }
125 *curr++ = cpu_to_be32(0xffffffff);
126 len -= 32;
127 }
128 set_page_dirty(page);
129 kunmap(page);
130 offset += PAGE_CACHE_BITS;
090d2b18
PE
131 page = read_mapping_page(mapping, offset / PAGE_CACHE_BITS,
132 NULL);
649f1ee6
ES
133 if (IS_ERR(page)) {
134 start = size;
135 goto out;
136 }
1da177e4
LT
137 pptr = kmap(page);
138 curr = pptr;
139 end = pptr + PAGE_CACHE_BITS / 32;
140 }
141last:
142 /* do any partial u32 at end */
143 mask = 1U << 31;
144 for (i = 0; i < len; i++) {
145 if (n & mask)
146 break;
147 n |= mask;
148 mask >>= 1;
149 }
150done:
151 *curr = cpu_to_be32(n);
152 set_page_dirty(page);
153 kunmap(page);
154 *max = offset + (curr - pptr) * 32 + i - start;
dd73a01a 155 sbi->free_blocks -= *max;
9e6c5829 156 hfsplus_mark_mdb_dirty(sb);
c2b3e1f7 157 hfs_dbg(BITMAP, "-> %u,%u\n", start, *max);
1da177e4 158out:
dd73a01a 159 mutex_unlock(&sbi->alloc_mutex);
1da177e4
LT
160 return start;
161}
162
163int hfsplus_block_free(struct super_block *sb, u32 offset, u32 count)
164{
dd73a01a 165 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
1da177e4
LT
166 struct page *page;
167 struct address_space *mapping;
168 __be32 *pptr, *curr, *end;
169 u32 mask, len, pnr;
170 int i;
171
172 /* is there any actual work to be done? */
173 if (!count)
174 return 0;
175
c2b3e1f7 176 hfs_dbg(BITMAP, "block_free: %u,%u\n", offset, count);
1da177e4 177 /* are all of the bits in range? */
dd73a01a 178 if ((offset + count) > sbi->total_blocks)
5daa669c 179 return -ENOENT;
1da177e4 180
dd73a01a
CH
181 mutex_lock(&sbi->alloc_mutex);
182 mapping = sbi->alloc_file->i_mapping;
1da177e4 183 pnr = offset / PAGE_CACHE_BITS;
090d2b18 184 page = read_mapping_page(mapping, pnr, NULL);
5daa669c
AC
185 if (IS_ERR(page))
186 goto kaboom;
1da177e4
LT
187 pptr = kmap(page);
188 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32;
189 end = pptr + PAGE_CACHE_BITS / 32;
190 len = count;
191
192 /* do any partial u32 at the start */
193 i = offset % 32;
194 if (i) {
195 int j = 32 - i;
196 mask = 0xffffffffU << j;
197 if (j > count) {
198 mask |= 0xffffffffU >> (i + count);
199 *curr++ &= cpu_to_be32(mask);
200 goto out;
201 }
202 *curr++ &= cpu_to_be32(mask);
203 count -= j;
204 }
205
206 /* do full u32s */
207 while (1) {
208 while (curr < end) {
209 if (count < 32)
210 goto done;
211 *curr++ = 0;
212 count -= 32;
213 }
214 if (!count)
215 break;
216 set_page_dirty(page);
217 kunmap(page);
090d2b18 218 page = read_mapping_page(mapping, ++pnr, NULL);
5daa669c
AC
219 if (IS_ERR(page))
220 goto kaboom;
1da177e4
LT
221 pptr = kmap(page);
222 curr = pptr;
223 end = pptr + PAGE_CACHE_BITS / 32;
224 }
225done:
226 /* do any partial u32 at end */
227 if (count) {
228 mask = 0xffffffffU >> count;
229 *curr &= cpu_to_be32(mask);
230 }
231out:
232 set_page_dirty(page);
233 kunmap(page);
dd73a01a 234 sbi->free_blocks += len;
9e6c5829 235 hfsplus_mark_mdb_dirty(sb);
dd73a01a 236 mutex_unlock(&sbi->alloc_mutex);
1da177e4
LT
237
238 return 0;
5daa669c
AC
239
240kaboom:
865f38a3 241 pr_crit("unable to mark blocks free: error %ld\n", PTR_ERR(page));
5daa669c
AC
242 mutex_unlock(&sbi->alloc_mutex);
243
244 return -EIO;
1da177e4 245}