[GFS2] Fix a page lock / glock deadlock
[deliverable/linux.git] / fs / gfs2 / bmap.c
CommitLineData
b3b94faa
DT
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3a8a9a10 3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
b3b94faa
DT
4 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
e9fc2aa0 7 * of the GNU General Public License version 2.
b3b94faa
DT
8 */
9
b3b94faa
DT
10#include <linux/slab.h>
11#include <linux/spinlock.h>
12#include <linux/completion.h>
13#include <linux/buffer_head.h>
5c676f6d 14#include <linux/gfs2_ondisk.h>
71b86f56 15#include <linux/crc32.h>
7d308590 16#include <linux/lm_interface.h>
b3b94faa
DT
17
18#include "gfs2.h"
5c676f6d 19#include "incore.h"
b3b94faa
DT
20#include "bmap.h"
21#include "glock.h"
22#include "inode.h"
b3b94faa 23#include "meta_io.h"
b3b94faa
DT
24#include "quota.h"
25#include "rgrp.h"
26#include "trans.h"
18ec7d5c 27#include "dir.h"
5c676f6d 28#include "util.h"
ba7f7290 29#include "ops_address.h"
b3b94faa
DT
30
31/* This doesn't need to be that large as max 64 bit pointers in a 4k
32 * block is 512, so __u16 is fine for that. It saves stack space to
33 * keep it small.
34 */
35struct metapath {
dbac6710 36 struct buffer_head *mp_bh[GFS2_MAX_META_HEIGHT];
b3b94faa
DT
37 __u16 mp_list[GFS2_MAX_META_HEIGHT];
38};
39
40typedef int (*block_call_t) (struct gfs2_inode *ip, struct buffer_head *dibh,
b44b84d7
AV
41 struct buffer_head *bh, __be64 *top,
42 __be64 *bottom, unsigned int height,
b3b94faa
DT
43 void *data);
44
45struct strip_mine {
46 int sm_first;
47 unsigned int sm_height;
48};
49
f25ef0c1
SW
50/**
51 * gfs2_unstuffer_page - unstuff a stuffed inode into a block cached by a page
52 * @ip: the inode
53 * @dibh: the dinode buffer
54 * @block: the block number that was allocated
55 * @private: any locked page held by the caller process
56 *
57 * Returns: errno
58 */
59
60static int gfs2_unstuffer_page(struct gfs2_inode *ip, struct buffer_head *dibh,
cd915493 61 u64 block, struct page *page)
f25ef0c1 62{
f25ef0c1
SW
63 struct inode *inode = &ip->i_inode;
64 struct buffer_head *bh;
65 int release = 0;
66
67 if (!page || page->index) {
68 page = grab_cache_page(inode->i_mapping, 0);
69 if (!page)
70 return -ENOMEM;
71 release = 1;
72 }
73
74 if (!PageUptodate(page)) {
75 void *kaddr = kmap(page);
76
77 memcpy(kaddr, dibh->b_data + sizeof(struct gfs2_dinode),
78 ip->i_di.di_size);
79 memset(kaddr + ip->i_di.di_size, 0,
80 PAGE_CACHE_SIZE - ip->i_di.di_size);
81 kunmap(page);
82
83 SetPageUptodate(page);
84 }
85
86 if (!page_has_buffers(page))
87 create_empty_buffers(page, 1 << inode->i_blkbits,
88 (1 << BH_Uptodate));
89
90 bh = page_buffers(page);
91
92 if (!buffer_mapped(bh))
93 map_bh(bh, inode->i_sb, block);
94
95 set_buffer_uptodate(bh);
eaf96527
SW
96 if (!gfs2_is_jdata(ip))
97 mark_buffer_dirty(bh);
bf36a713 98 if (!gfs2_is_writeback(ip))
8475487b 99 gfs2_trans_add_bh(ip->i_gl, bh, 0);
f25ef0c1
SW
100
101 if (release) {
102 unlock_page(page);
103 page_cache_release(page);
104 }
105
106 return 0;
107}
108
b3b94faa
DT
109/**
110 * gfs2_unstuff_dinode - Unstuff a dinode when the data has grown too big
111 * @ip: The GFS2 inode to unstuff
112 * @unstuffer: the routine that handles unstuffing a non-zero length file
113 * @private: private data for the unstuffer
114 *
115 * This routine unstuffs a dinode and returns it to a "normal" state such
116 * that the height can be grown in the traditional way.
117 *
118 * Returns: errno
119 */
120
f25ef0c1 121int gfs2_unstuff_dinode(struct gfs2_inode *ip, struct page *page)
b3b94faa
DT
122{
123 struct buffer_head *bh, *dibh;
48516ced 124 struct gfs2_dinode *di;
cd915493 125 u64 block = 0;
18ec7d5c 126 int isdir = gfs2_is_dir(ip);
b3b94faa
DT
127 int error;
128
129 down_write(&ip->i_rw_mutex);
130
131 error = gfs2_meta_inode_buffer(ip, &dibh);
132 if (error)
133 goto out;
907b9bce 134
b3b94faa
DT
135 if (ip->i_di.di_size) {
136 /* Get a free block, fill it with the stuffed data,
137 and write it out to disk */
138
b45e41d7
SW
139 unsigned int n = 1;
140 block = gfs2_alloc_block(ip, &n);
18ec7d5c 141 if (isdir) {
5731be53 142 gfs2_trans_add_unrevoke(GFS2_SB(&ip->i_inode), block, 1);
61e085a8 143 error = gfs2_dir_get_new_buffer(ip, block, &bh);
b3b94faa
DT
144 if (error)
145 goto out_brelse;
48516ced 146 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_meta_header),
b3b94faa
DT
147 dibh, sizeof(struct gfs2_dinode));
148 brelse(bh);
149 } else {
f25ef0c1 150 error = gfs2_unstuffer_page(ip, dibh, block, page);
b3b94faa
DT
151 if (error)
152 goto out_brelse;
153 }
154 }
155
156 /* Set up the pointer to the new block */
157
d4e9c4c3 158 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
48516ced 159 di = (struct gfs2_dinode *)dibh->b_data;
b3b94faa
DT
160 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
161
162 if (ip->i_di.di_size) {
48516ced 163 *(__be64 *)(di + 1) = cpu_to_be64(block);
77658aad
SW
164 gfs2_add_inode_blocks(&ip->i_inode, 1);
165 di->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode));
b3b94faa
DT
166 }
167
ecc30c79 168 ip->i_height = 1;
48516ced 169 di->di_height = cpu_to_be16(1);
b3b94faa 170
a91ea69f 171out_brelse:
b3b94faa 172 brelse(dibh);
a91ea69f 173out:
b3b94faa 174 up_write(&ip->i_rw_mutex);
b3b94faa
DT
175 return error;
176}
177
b3b94faa
DT
178/**
179 * build_height - Build a metadata tree of the requested height
180 * @ip: The GFS2 inode
181 * @height: The height to build to
182 *
b3b94faa
DT
183 *
184 * Returns: errno
185 */
186
dbac6710 187static int build_height(struct inode *inode, struct metapath *mp, unsigned height)
b3b94faa 188{
feaa7bba 189 struct gfs2_inode *ip = GFS2_I(inode);
ecc30c79 190 unsigned new_height = height - ip->i_height;
e23159d2 191 struct buffer_head *dibh = mp->mp_bh[0];
48516ced 192 struct gfs2_dinode *di;
b44b84d7 193 __be64 *bp;
e90c01e1 194 u64 bn;
b45e41d7 195 unsigned n, i = 0;
b3b94faa 196
e23159d2 197 BUG_ON(height <= ip->i_height);
b3b94faa 198
b45e41d7
SW
199 do {
200 n = new_height - i;
201 bn = gfs2_alloc_block(ip, &n);
202 gfs2_trans_add_unrevoke(GFS2_SB(inode), bn, n);
203 do {
e23159d2
SW
204 mp->mp_bh[i + 1] = gfs2_meta_new(ip->i_gl, bn++);
205 gfs2_trans_add_bh(ip->i_gl, mp->mp_bh[i + 1], 1);
b45e41d7
SW
206 i++;
207 } while(i < n);
208 } while(i < new_height);
907b9bce 209
e90c01e1 210 n = 0;
e23159d2 211 bn = mp->mp_bh[1]->b_blocknr;
e90c01e1
SW
212 if (new_height > 1) {
213 for(; n < new_height-1; n++) {
e23159d2 214 gfs2_metatype_set(mp->mp_bh[n + 1], GFS2_METATYPE_IN,
b3b94faa 215 GFS2_FORMAT_IN);
e23159d2 216 gfs2_buffer_clear_tail(mp->mp_bh[n + 1],
e90c01e1 217 sizeof(struct gfs2_meta_header));
e23159d2 218 bp = (__be64 *)(mp->mp_bh[n + 1]->b_data +
e90c01e1 219 sizeof(struct gfs2_meta_header));
e23159d2
SW
220 *bp = cpu_to_be64(mp->mp_bh[n+2]->b_blocknr);
221 brelse(mp->mp_bh[n+1]);
222 mp->mp_bh[n+1] = NULL;
b3b94faa 223 }
b3b94faa 224 }
e23159d2
SW
225 gfs2_metatype_set(mp->mp_bh[n+1], GFS2_METATYPE_IN, GFS2_FORMAT_IN);
226 gfs2_buffer_copy_tail(mp->mp_bh[n+1], sizeof(struct gfs2_meta_header),
e90c01e1 227 dibh, sizeof(struct gfs2_dinode));
e23159d2
SW
228 brelse(mp->mp_bh[n+1]);
229 mp->mp_bh[n+1] = NULL;
e90c01e1 230 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
48516ced 231 di = (struct gfs2_dinode *)dibh->b_data;
e90c01e1 232 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
48516ced 233 *(__be64 *)(di + 1) = cpu_to_be64(bn);
ecc30c79 234 ip->i_height += new_height;
77658aad 235 gfs2_add_inode_blocks(&ip->i_inode, new_height);
ecc30c79 236 di->di_height = cpu_to_be16(ip->i_height);
77658aad 237 di->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode));
e23159d2 238 return 0;
b3b94faa
DT
239}
240
241/**
242 * find_metapath - Find path through the metadata tree
243 * @ip: The inode pointer
244 * @mp: The metapath to return the result in
245 * @block: The disk block to look up
246 *
247 * This routine returns a struct metapath structure that defines a path
248 * through the metadata of inode "ip" to get to block "block".
249 *
250 * Example:
251 * Given: "ip" is a height 3 file, "offset" is 101342453, and this is a
252 * filesystem with a blocksize of 4096.
253 *
254 * find_metapath() would return a struct metapath structure set to:
255 * mp_offset = 101342453, mp_height = 3, mp_list[0] = 0, mp_list[1] = 48,
256 * and mp_list[2] = 165.
257 *
258 * That means that in order to get to the block containing the byte at
259 * offset 101342453, we would load the indirect block pointed to by pointer
260 * 0 in the dinode. We would then load the indirect block pointed to by
261 * pointer 48 in that indirect block. We would then load the data block
262 * pointed to by pointer 165 in that indirect block.
263 *
264 * ----------------------------------------
265 * | Dinode | |
266 * | | 4|
267 * | |0 1 2 3 4 5 9|
268 * | | 6|
269 * ----------------------------------------
270 * |
271 * |
272 * V
273 * ----------------------------------------
274 * | Indirect Block |
275 * | 5|
276 * | 4 4 4 4 4 5 5 1|
277 * |0 5 6 7 8 9 0 1 2|
278 * ----------------------------------------
279 * |
280 * |
281 * V
282 * ----------------------------------------
283 * | Indirect Block |
284 * | 1 1 1 1 1 5|
285 * | 6 6 6 6 6 1|
286 * |0 3 4 5 6 7 2|
287 * ----------------------------------------
288 * |
289 * |
290 * V
291 * ----------------------------------------
292 * | Data block containing offset |
293 * | 101342453 |
294 * | |
295 * | |
296 * ----------------------------------------
297 *
298 */
299
cd915493 300static void find_metapath(struct gfs2_inode *ip, u64 block,
568f4c96 301 struct metapath *mp)
b3b94faa 302{
feaa7bba 303 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
b3b94faa
DT
304 unsigned int i;
305
ecc30c79 306 for (i = ip->i_height; i--;)
7eabb77e 307 mp->mp_list[i] = do_div(block, sdp->sd_inptrs);
b3b94faa
DT
308
309}
310
311/**
312 * metapointer - Return pointer to start of metadata in a buffer
b3b94faa
DT
313 * @height: The metadata height (0 = dinode)
314 * @mp: The metapath
315 *
316 * Return a pointer to the block number of the next height of the metadata
317 * tree given a buffer containing the pointer to the current height of the
318 * metadata tree.
319 */
320
dbac6710
SW
321static inline __be64 *metapointer(int *boundary, unsigned int height,
322 const struct metapath *mp)
b3b94faa 323{
dbac6710 324 struct buffer_head *bh = mp->mp_bh[height];
b3b94faa
DT
325 unsigned int head_size = (height > 0) ?
326 sizeof(struct gfs2_meta_header) : sizeof(struct gfs2_dinode);
b44b84d7 327 __be64 *ptr;
fd88de56 328 *boundary = 0;
b44b84d7
AV
329 ptr = ((__be64 *)(bh->b_data + head_size)) + mp->mp_list[height];
330 if (ptr + 1 == (__be64 *)(bh->b_data + bh->b_size))
fd88de56
SW
331 *boundary = 1;
332 return ptr;
b3b94faa
DT
333}
334
335/**
336 * lookup_block - Get the next metadata block in metadata tree
337 * @ip: The GFS2 inode
b3b94faa
DT
338 * @height: The height of the tree (0 = dinode)
339 * @mp: The metapath
340 * @create: Non-zero if we may create a new meatdata block
341 * @new: Used to indicate if we did create a new metadata block
342 * @block: the returned disk block number
343 *
344 * Given a metatree, complete to a particular height, checks to see if the next
345 * height of the tree exists. If not the next height of the tree is created.
346 * The block number of the next height of the metadata tree is returned.
347 *
348 */
349
dbac6710
SW
350static int lookup_block(struct gfs2_inode *ip, unsigned int height,
351 struct metapath *mp, int create,
cd915493 352 int *new, u64 *block)
b3b94faa 353{
fd88de56 354 int boundary;
dbac6710 355 __be64 *ptr = metapointer(&boundary, height, mp);
b45e41d7 356 unsigned int n = 1;
b3b94faa
DT
357
358 if (*ptr) {
359 *block = be64_to_cpu(*ptr);
fd88de56 360 return boundary;
b3b94faa
DT
361 }
362
363 *block = 0;
364
365 if (!create)
fd88de56 366 return 0;
b3b94faa 367
b45e41d7 368 *block = gfs2_alloc_block(ip, &n);
1639431a 369 if (height != ip->i_height - 1 || gfs2_is_dir(ip))
5731be53 370 gfs2_trans_add_unrevoke(GFS2_SB(&ip->i_inode), *block, 1);
b3b94faa 371
dbac6710 372 gfs2_trans_add_bh(ip->i_gl, mp->mp_bh[height], 1);
b3b94faa
DT
373
374 *ptr = cpu_to_be64(*block);
77658aad 375 gfs2_add_inode_blocks(&ip->i_inode, 1);
b3b94faa
DT
376
377 *new = 1;
fd88de56 378 return 0;
b3b94faa
DT
379}
380
11707ea0 381static int lookup_metapath(struct inode *inode, struct metapath *mp,
dbac6710 382 int create, int *new, u64 *dblock)
11707ea0 383{
dbac6710 384 struct buffer_head *bh;
11707ea0
SW
385 struct gfs2_inode *ip = GFS2_I(inode);
386 unsigned int end_of_metadata = ip->i_height - 1;
387 unsigned int x;
e23159d2 388 int ret;
11707ea0
SW
389
390 for (x = 0; x < end_of_metadata; x++) {
dbac6710 391 lookup_block(ip, x, mp, create, new, dblock);
c85a665f 392 if (!*dblock)
11707ea0
SW
393 return 0;
394
dbac6710 395 ret = gfs2_meta_indirect_buffer(ip, x+1, *dblock, *new, &mp->mp_bh[x+1]);
11707ea0
SW
396 if (ret)
397 return ret;
398 }
399
dbac6710
SW
400 return lookup_block(ip, end_of_metadata, mp, create, new, dblock);
401}
402
403static void release_metapath(struct metapath *mp)
404{
405 int i;
406
407 for (i = 0; i < GFS2_MAX_META_HEIGHT; i++)
408 if (mp->mp_bh[i])
409 brelse(mp->mp_bh[i]);
11707ea0
SW
410}
411
30cbf189
SW
412/**
413 * gfs2_extent_length - Returns length of an extent of blocks
414 * @start: Start of the buffer
415 * @len: Length of the buffer in bytes
416 * @ptr: Current position in the buffer
417 * @limit: Max extent length to return (0 = unlimited)
418 * @eob: Set to 1 if we hit "end of block"
419 *
420 * If the first block is zero (unallocated) it will return the number of
421 * unallocated blocks in the extent, otherwise it will return the number
422 * of contiguous blocks in the extent.
423 *
424 * Returns: The length of the extent (minimum of one block)
425 */
426
427static inline unsigned int gfs2_extent_length(void *start, unsigned int len, __be64 *ptr, unsigned limit, int *eob)
428{
429 const __be64 *end = (start + len);
430 const __be64 *first = ptr;
431 u64 d = be64_to_cpu(*ptr);
432
433 *eob = 0;
434 do {
435 ptr++;
436 if (ptr >= end)
437 break;
438 if (limit && --limit == 0)
439 break;
440 if (d)
441 d++;
442 } while(be64_to_cpu(*ptr) == d);
443 if (ptr >= end)
444 *eob = 1;
445 return (ptr - first);
446}
447
4cf1ed81
SW
448static inline void bmap_lock(struct inode *inode, int create)
449{
450 struct gfs2_inode *ip = GFS2_I(inode);
451 if (create)
452 down_write(&ip->i_rw_mutex);
453 else
454 down_read(&ip->i_rw_mutex);
455}
456
457static inline void bmap_unlock(struct inode *inode, int create)
458{
459 struct gfs2_inode *ip = GFS2_I(inode);
460 if (create)
461 up_write(&ip->i_rw_mutex);
462 else
463 up_read(&ip->i_rw_mutex);
464}
465
b3b94faa 466/**
4cf1ed81 467 * gfs2_block_map - Map a block from an inode to a disk block
fd88de56 468 * @inode: The inode
b3b94faa 469 * @lblock: The logical block number
4cf1ed81 470 * @bh_map: The bh to be mapped
b3b94faa
DT
471 *
472 * Find the block number on the current device which corresponds to an
473 * inode's block. If the block had to be created, "new" will be set.
474 *
475 * Returns: errno
476 */
477
e9e1ef2b
BP
478int gfs2_block_map(struct inode *inode, sector_t lblock,
479 struct buffer_head *bh_map, int create)
b3b94faa 480{
feaa7bba
SW
481 struct gfs2_inode *ip = GFS2_I(inode);
482 struct gfs2_sbd *sdp = GFS2_SB(inode);
ecc30c79 483 unsigned int bsize = sdp->sd_sb.sb_bsize;
b3b94faa 484 int error = 0;
7a6bbacb
SW
485 int new = 0;
486 u64 dblock = 0;
487 int boundary;
23591256 488 unsigned int maxlen = bh_map->b_size >> inode->i_blkbits;
4cf1ed81
SW
489 struct metapath mp;
490 u64 size;
ecc30c79 491 const u64 *arr = sdp->sd_heightsize;
7276b3b0
SW
492 BUG_ON(maxlen == 0);
493
b3b94faa 494 if (gfs2_assert_warn(sdp, !gfs2_is_stuffed(ip)))
7a6bbacb 495 return 0;
b3b94faa 496
dbac6710 497 memset(mp.mp_bh, 0, sizeof(mp.mp_bh));
4cf1ed81
SW
498 bmap_lock(inode, create);
499 clear_buffer_mapped(bh_map);
500 clear_buffer_new(bh_map);
501 clear_buffer_boundary(bh_map);
ecc30c79
SW
502 if (gfs2_is_dir(ip)) {
503 bsize = sdp->sd_jbsize;
504 arr = sdp->sd_jheightsize;
505 }
4cf1ed81
SW
506 size = (lblock + 1) * bsize;
507
e23159d2
SW
508 error = gfs2_meta_inode_buffer(ip, &mp.mp_bh[0]);
509 if (error)
510 goto out_fail;
511
ecc30c79
SW
512 if (size > arr[ip->i_height]) {
513 u8 height = ip->i_height;
514 if (!create)
515 goto out_ok;
516 while (size > arr[height])
517 height++;
dbac6710 518 error = build_height(inode, &mp, height);
ecc30c79
SW
519 if (error)
520 goto out_fail;
b3b94faa
DT
521 }
522
4cf1ed81 523 find_metapath(ip, lblock, &mp);
dbac6710 524 error = lookup_metapath(inode, &mp, create, &new, &dblock);
11707ea0 525 if (error < 0)
4cf1ed81 526 goto out_fail;
11707ea0 527 boundary = error;
b3b94faa 528
30cbf189
SW
529 if (new) {
530 map_bh(bh_map, inode->i_sb, dblock);
531 if (boundary)
532 set_buffer_boundary(bh_map);
533 gfs2_trans_add_bh(ip->i_gl, mp.mp_bh[0], 1);
534 gfs2_dinode_out(ip, mp.mp_bh[0]->b_data);
535 set_buffer_new(bh_map);
536 goto out_ok;
537 }
538
7a6bbacb 539 if (dblock) {
30cbf189
SW
540 unsigned int len;
541 struct buffer_head *bh = mp.mp_bh[ip->i_height - 1];
542 __be64 *ptr = metapointer(&boundary, ip->i_height - 1, &mp);
7a6bbacb 543 map_bh(bh_map, inode->i_sb, dblock);
30cbf189
SW
544 len = gfs2_extent_length(bh->b_data, bh->b_size, ptr, maxlen,
545 &boundary);
546 bh_map->b_size = (len << inode->i_blkbits);
7a6bbacb 547 if (boundary)
4cf1ed81 548 set_buffer_boundary(bh_map);
b3b94faa 549 }
4cf1ed81
SW
550out_ok:
551 error = 0;
552out_fail:
dbac6710 553 release_metapath(&mp);
fd88de56 554 bmap_unlock(inode, create);
4cf1ed81 555 return error;
fd88de56
SW
556}
557
941e6d7d
SW
558/*
559 * Deprecated: do not use in new code
560 */
fd88de56
SW
561int gfs2_extent_map(struct inode *inode, u64 lblock, int *new, u64 *dblock, unsigned *extlen)
562{
23591256 563 struct buffer_head bh = { .b_state = 0, .b_blocknr = 0 };
7a6bbacb 564 int ret;
fd88de56
SW
565 int create = *new;
566
567 BUG_ON(!extlen);
568 BUG_ON(!dblock);
569 BUG_ON(!new);
570
23591256 571 bh.b_size = 1 << (inode->i_blkbits + 5);
e9e1ef2b 572 ret = gfs2_block_map(inode, lblock, &bh, create);
7a6bbacb
SW
573 *extlen = bh.b_size >> inode->i_blkbits;
574 *dblock = bh.b_blocknr;
575 if (buffer_new(&bh))
576 *new = 1;
577 else
578 *new = 0;
579 return ret;
b3b94faa
DT
580}
581
582/**
583 * recursive_scan - recursively scan through the end of a file
584 * @ip: the inode
585 * @dibh: the dinode buffer
586 * @mp: the path through the metadata to the point to start
587 * @height: the height the recursion is at
588 * @block: the indirect block to look at
589 * @first: 1 if this is the first block
590 * @bc: the call to make for each piece of metadata
591 * @data: data opaque to this function to pass to @bc
592 *
593 * When this is first called @height and @block should be zero and
594 * @first should be 1.
595 *
596 * Returns: errno
597 */
598
599static int recursive_scan(struct gfs2_inode *ip, struct buffer_head *dibh,
600 struct metapath *mp, unsigned int height,
cd915493 601 u64 block, int first, block_call_t bc,
b3b94faa
DT
602 void *data)
603{
feaa7bba 604 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
b3b94faa 605 struct buffer_head *bh = NULL;
b44b84d7 606 __be64 *top, *bottom;
cd915493 607 u64 bn;
b3b94faa
DT
608 int error;
609 int mh_size = sizeof(struct gfs2_meta_header);
610
611 if (!height) {
612 error = gfs2_meta_inode_buffer(ip, &bh);
613 if (error)
614 return error;
615 dibh = bh;
616
b44b84d7
AV
617 top = (__be64 *)(bh->b_data + sizeof(struct gfs2_dinode)) + mp->mp_list[0];
618 bottom = (__be64 *)(bh->b_data + sizeof(struct gfs2_dinode)) + sdp->sd_diptrs;
b3b94faa
DT
619 } else {
620 error = gfs2_meta_indirect_buffer(ip, height, block, 0, &bh);
621 if (error)
622 return error;
623
b44b84d7 624 top = (__be64 *)(bh->b_data + mh_size) +
c5392124 625 (first ? mp->mp_list[height] : 0);
b3b94faa 626
b44b84d7 627 bottom = (__be64 *)(bh->b_data + mh_size) + sdp->sd_inptrs;
b3b94faa
DT
628 }
629
630 error = bc(ip, dibh, bh, top, bottom, height, data);
631 if (error)
632 goto out;
633
ecc30c79 634 if (height < ip->i_height - 1)
b3b94faa
DT
635 for (; top < bottom; top++, first = 0) {
636 if (!*top)
637 continue;
638
639 bn = be64_to_cpu(*top);
640
641 error = recursive_scan(ip, dibh, mp, height + 1, bn,
642 first, bc, data);
643 if (error)
644 break;
645 }
646
a91ea69f 647out:
b3b94faa 648 brelse(bh);
b3b94faa
DT
649 return error;
650}
651
652/**
653 * do_strip - Look for a layer a particular layer of the file and strip it off
654 * @ip: the inode
655 * @dibh: the dinode buffer
656 * @bh: A buffer of pointers
657 * @top: The first pointer in the buffer
658 * @bottom: One more than the last pointer
659 * @height: the height this buffer is at
660 * @data: a pointer to a struct strip_mine
661 *
662 * Returns: errno
663 */
664
665static int do_strip(struct gfs2_inode *ip, struct buffer_head *dibh,
b44b84d7 666 struct buffer_head *bh, __be64 *top, __be64 *bottom,
b3b94faa
DT
667 unsigned int height, void *data)
668{
feaa7bba
SW
669 struct strip_mine *sm = data;
670 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
b3b94faa 671 struct gfs2_rgrp_list rlist;
cd915493
SW
672 u64 bn, bstart;
673 u32 blen;
b44b84d7 674 __be64 *p;
b3b94faa
DT
675 unsigned int rg_blocks = 0;
676 int metadata;
677 unsigned int revokes = 0;
678 int x;
679 int error;
680
681 if (!*top)
682 sm->sm_first = 0;
683
684 if (height != sm->sm_height)
685 return 0;
686
687 if (sm->sm_first) {
688 top++;
689 sm->sm_first = 0;
690 }
691
ecc30c79 692 metadata = (height != ip->i_height - 1);
b3b94faa
DT
693 if (metadata)
694 revokes = (height) ? sdp->sd_inptrs : sdp->sd_diptrs;
695
6dbd8224 696 error = gfs2_rindex_hold(sdp, &ip->i_alloc->al_ri_gh);
b3b94faa
DT
697 if (error)
698 return error;
699
700 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
701 bstart = 0;
702 blen = 0;
703
704 for (p = top; p < bottom; p++) {
705 if (!*p)
706 continue;
707
708 bn = be64_to_cpu(*p);
709
710 if (bstart + blen == bn)
711 blen++;
712 else {
713 if (bstart)
714 gfs2_rlist_add(sdp, &rlist, bstart);
715
716 bstart = bn;
717 blen = 1;
718 }
719 }
720
721 if (bstart)
722 gfs2_rlist_add(sdp, &rlist, bstart);
723 else
724 goto out; /* Nothing to do */
725
fe6c991c 726 gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE);
b3b94faa
DT
727
728 for (x = 0; x < rlist.rl_rgrps; x++) {
729 struct gfs2_rgrpd *rgd;
5c676f6d 730 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
bb8d8a6f 731 rg_blocks += rgd->rd_length;
b3b94faa
DT
732 }
733
734 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
735 if (error)
736 goto out_rlist;
737
738 error = gfs2_trans_begin(sdp, rg_blocks + RES_DINODE +
739 RES_INDIRECT + RES_STATFS + RES_QUOTA,
740 revokes);
741 if (error)
742 goto out_rg_gunlock;
743
744 down_write(&ip->i_rw_mutex);
745
d4e9c4c3
SW
746 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
747 gfs2_trans_add_bh(ip->i_gl, bh, 1);
b3b94faa
DT
748
749 bstart = 0;
750 blen = 0;
751
752 for (p = top; p < bottom; p++) {
753 if (!*p)
754 continue;
755
756 bn = be64_to_cpu(*p);
757
758 if (bstart + blen == bn)
759 blen++;
760 else {
761 if (bstart) {
762 if (metadata)
763 gfs2_free_meta(ip, bstart, blen);
764 else
765 gfs2_free_data(ip, bstart, blen);
766 }
767
768 bstart = bn;
769 blen = 1;
770 }
771
772 *p = 0;
77658aad 773 gfs2_add_inode_blocks(&ip->i_inode, -1);
b3b94faa
DT
774 }
775 if (bstart) {
776 if (metadata)
777 gfs2_free_meta(ip, bstart, blen);
778 else
779 gfs2_free_data(ip, bstart, blen);
780 }
781
4bd91ba1 782 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
b3b94faa 783
539e5d6b 784 gfs2_dinode_out(ip, dibh->b_data);
b3b94faa
DT
785
786 up_write(&ip->i_rw_mutex);
787
788 gfs2_trans_end(sdp);
789
a91ea69f 790out_rg_gunlock:
b3b94faa 791 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
a91ea69f 792out_rlist:
b3b94faa 793 gfs2_rlist_free(&rlist);
a91ea69f 794out:
6dbd8224 795 gfs2_glock_dq_uninit(&ip->i_alloc->al_ri_gh);
b3b94faa
DT
796 return error;
797}
798
799/**
800 * do_grow - Make a file look bigger than it is
801 * @ip: the inode
802 * @size: the size to set the file to
803 *
804 * Called with an exclusive lock on @ip.
805 *
806 * Returns: errno
807 */
808
cd915493 809static int do_grow(struct gfs2_inode *ip, u64 size)
b3b94faa 810{
feaa7bba 811 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
b3b94faa
DT
812 struct gfs2_alloc *al;
813 struct buffer_head *dibh;
b3b94faa
DT
814 int error;
815
816 al = gfs2_alloc_get(ip);
817
818 error = gfs2_quota_lock(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
819 if (error)
820 goto out;
821
2933f925 822 error = gfs2_quota_check(ip, ip->i_inode.i_uid, ip->i_inode.i_gid);
b3b94faa
DT
823 if (error)
824 goto out_gunlock_q;
825
826 al->al_requested = sdp->sd_max_height + RES_DATA;
827
828 error = gfs2_inplace_reserve(ip);
829 if (error)
830 goto out_gunlock_q;
831
832 error = gfs2_trans_begin(sdp,
bb8d8a6f 833 sdp->sd_max_height + al->al_rgd->rd_length +
b3b94faa
DT
834 RES_JDATA + RES_DINODE + RES_STATFS + RES_QUOTA, 0);
835 if (error)
836 goto out_ipres;
837
838 if (size > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)) {
ecc30c79 839 const u64 *arr = sdp->sd_heightsize;
b3b94faa 840 if (gfs2_is_stuffed(ip)) {
f25ef0c1 841 error = gfs2_unstuff_dinode(ip, NULL);
b3b94faa
DT
842 if (error)
843 goto out_end_trans;
844 }
845
ecc30c79
SW
846 down_write(&ip->i_rw_mutex);
847 if (size > arr[ip->i_height]) {
dbac6710 848 struct metapath mp;
ecc30c79
SW
849 u8 height = ip->i_height;
850 while(size > arr[height])
851 height++;
dbac6710 852 error = build_height(&ip->i_inode, &mp, height);
b3b94faa 853 }
ecc30c79
SW
854 up_write(&ip->i_rw_mutex);
855 if (error)
856 goto out_end_trans;
b3b94faa
DT
857 }
858
859 ip->i_di.di_size = size;
4bd91ba1 860 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
b3b94faa
DT
861
862 error = gfs2_meta_inode_buffer(ip, &dibh);
863 if (error)
864 goto out_end_trans;
865
d4e9c4c3 866 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
539e5d6b 867 gfs2_dinode_out(ip, dibh->b_data);
b3b94faa
DT
868 brelse(dibh);
869
a91ea69f 870out_end_trans:
b3b94faa 871 gfs2_trans_end(sdp);
a91ea69f 872out_ipres:
b3b94faa 873 gfs2_inplace_release(ip);
a91ea69f 874out_gunlock_q:
b3b94faa 875 gfs2_quota_unlock(ip);
a91ea69f 876out:
b3b94faa 877 gfs2_alloc_put(ip);
b3b94faa
DT
878 return error;
879}
880
ba7f7290
SW
881
882/**
883 * gfs2_block_truncate_page - Deal with zeroing out data for truncate
884 *
885 * This is partly borrowed from ext3.
886 */
887static int gfs2_block_truncate_page(struct address_space *mapping)
888{
889 struct inode *inode = mapping->host;
890 struct gfs2_inode *ip = GFS2_I(inode);
ba7f7290
SW
891 loff_t from = inode->i_size;
892 unsigned long index = from >> PAGE_CACHE_SHIFT;
893 unsigned offset = from & (PAGE_CACHE_SIZE-1);
894 unsigned blocksize, iblock, length, pos;
895 struct buffer_head *bh;
896 struct page *page;
ba7f7290
SW
897 int err;
898
899 page = grab_cache_page(mapping, index);
900 if (!page)
901 return 0;
902
903 blocksize = inode->i_sb->s_blocksize;
904 length = blocksize - (offset & (blocksize - 1));
905 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
906
907 if (!page_has_buffers(page))
908 create_empty_buffers(page, blocksize, 0);
909
910 /* Find the buffer that contains "offset" */
911 bh = page_buffers(page);
912 pos = blocksize;
913 while (offset >= pos) {
914 bh = bh->b_this_page;
915 iblock++;
916 pos += blocksize;
917 }
918
919 err = 0;
920
921 if (!buffer_mapped(bh)) {
e9e1ef2b 922 gfs2_block_map(inode, iblock, bh, 0);
ba7f7290
SW
923 /* unmapped? It's a hole - nothing to do */
924 if (!buffer_mapped(bh))
925 goto unlock;
926 }
927
928 /* Ok, it's mapped. Make sure it's up-to-date */
929 if (PageUptodate(page))
930 set_buffer_uptodate(bh);
931
932 if (!buffer_uptodate(bh)) {
933 err = -EIO;
934 ll_rw_block(READ, 1, &bh);
935 wait_on_buffer(bh);
936 /* Uhhuh. Read error. Complain and punt. */
937 if (!buffer_uptodate(bh))
938 goto unlock;
1875f2f3 939 err = 0;
ba7f7290
SW
940 }
941
bf36a713 942 if (!gfs2_is_writeback(ip))
ba7f7290
SW
943 gfs2_trans_add_bh(ip->i_gl, bh, 0);
944
eebd2aa3 945 zero_user(page, offset, length);
ba7f7290
SW
946
947unlock:
948 unlock_page(page);
949 page_cache_release(page);
950 return err;
951}
952
cd915493 953static int trunc_start(struct gfs2_inode *ip, u64 size)
b3b94faa 954{
feaa7bba 955 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
b3b94faa
DT
956 struct buffer_head *dibh;
957 int journaled = gfs2_is_jdata(ip);
958 int error;
959
960 error = gfs2_trans_begin(sdp,
c5392124 961 RES_DINODE + (journaled ? RES_JDATA : 0), 0);
b3b94faa
DT
962 if (error)
963 return error;
964
965 error = gfs2_meta_inode_buffer(ip, &dibh);
966 if (error)
967 goto out;
968
969 if (gfs2_is_stuffed(ip)) {
970 ip->i_di.di_size = size;
4bd91ba1 971 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
d4e9c4c3 972 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
539e5d6b 973 gfs2_dinode_out(ip, dibh->b_data);
b3b94faa
DT
974 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode) + size);
975 error = 1;
976
977 } else {
cd915493 978 if (size & (u64)(sdp->sd_sb.sb_bsize - 1))
feaa7bba 979 error = gfs2_block_truncate_page(ip->i_inode.i_mapping);
b3b94faa
DT
980
981 if (!error) {
982 ip->i_di.di_size = size;
4bd91ba1 983 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
b3b94faa 984 ip->i_di.di_flags |= GFS2_DIF_TRUNC_IN_PROG;
d4e9c4c3 985 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
539e5d6b 986 gfs2_dinode_out(ip, dibh->b_data);
b3b94faa
DT
987 }
988 }
989
990 brelse(dibh);
991
a91ea69f 992out:
b3b94faa 993 gfs2_trans_end(sdp);
b3b94faa
DT
994 return error;
995}
996
cd915493 997static int trunc_dealloc(struct gfs2_inode *ip, u64 size)
b3b94faa 998{
ecc30c79 999 unsigned int height = ip->i_height;
cd915493 1000 u64 lblock;
b3b94faa
DT
1001 struct metapath mp;
1002 int error;
1003
1004 if (!size)
1005 lblock = 0;
18ec7d5c 1006 else
feaa7bba 1007 lblock = (size - 1) >> GFS2_SB(&ip->i_inode)->sd_sb.sb_bsize_shift;
b3b94faa
DT
1008
1009 find_metapath(ip, lblock, &mp);
1010 gfs2_alloc_get(ip);
1011
1012 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
1013 if (error)
1014 goto out;
1015
1016 while (height--) {
1017 struct strip_mine sm;
1018 sm.sm_first = !!size;
1019 sm.sm_height = height;
1020
1021 error = recursive_scan(ip, NULL, &mp, 0, 0, 1, do_strip, &sm);
1022 if (error)
1023 break;
1024 }
1025
1026 gfs2_quota_unhold(ip);
1027
a91ea69f 1028out:
b3b94faa
DT
1029 gfs2_alloc_put(ip);
1030 return error;
1031}
1032
1033static int trunc_end(struct gfs2_inode *ip)
1034{
feaa7bba 1035 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
b3b94faa
DT
1036 struct buffer_head *dibh;
1037 int error;
1038
1039 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1040 if (error)
1041 return error;
1042
1043 down_write(&ip->i_rw_mutex);
1044
1045 error = gfs2_meta_inode_buffer(ip, &dibh);
1046 if (error)
1047 goto out;
1048
1049 if (!ip->i_di.di_size) {
ecc30c79 1050 ip->i_height = 0;
ce276b06 1051 ip->i_goal = ip->i_no_addr;
b3b94faa
DT
1052 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
1053 }
4bd91ba1 1054 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
b3b94faa
DT
1055 ip->i_di.di_flags &= ~GFS2_DIF_TRUNC_IN_PROG;
1056
d4e9c4c3 1057 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
539e5d6b 1058 gfs2_dinode_out(ip, dibh->b_data);
b3b94faa
DT
1059 brelse(dibh);
1060
a91ea69f 1061out:
b3b94faa 1062 up_write(&ip->i_rw_mutex);
b3b94faa 1063 gfs2_trans_end(sdp);
b3b94faa
DT
1064 return error;
1065}
1066
1067/**
1068 * do_shrink - make a file smaller
1069 * @ip: the inode
1070 * @size: the size to make the file
1071 * @truncator: function to truncate the last partial block
1072 *
1073 * Called with an exclusive lock on @ip.
1074 *
1075 * Returns: errno
1076 */
1077
cd915493 1078static int do_shrink(struct gfs2_inode *ip, u64 size)
b3b94faa
DT
1079{
1080 int error;
1081
aa6a85a9 1082 error = trunc_start(ip, size);
b3b94faa
DT
1083 if (error < 0)
1084 return error;
1085 if (error > 0)
1086 return 0;
1087
1088 error = trunc_dealloc(ip, size);
1089 if (!error)
1090 error = trunc_end(ip);
1091
1092 return error;
1093}
1094
a13b8c5f
WC
1095static int do_touch(struct gfs2_inode *ip, u64 size)
1096{
1097 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
1098 struct buffer_head *dibh;
1099 int error;
1100
1101 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1102 if (error)
1103 return error;
1104
1105 down_write(&ip->i_rw_mutex);
1106
1107 error = gfs2_meta_inode_buffer(ip, &dibh);
1108 if (error)
1109 goto do_touch_out;
1110
1111 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
1112 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
1113 gfs2_dinode_out(ip, dibh->b_data);
1114 brelse(dibh);
1115
1116do_touch_out:
1117 up_write(&ip->i_rw_mutex);
1118 gfs2_trans_end(sdp);
1119 return error;
1120}
1121
b3b94faa 1122/**
666a2c53 1123 * gfs2_truncatei - make a file a given size
b3b94faa
DT
1124 * @ip: the inode
1125 * @size: the size to make the file
1126 * @truncator: function to truncate the last partial block
1127 *
1128 * The file size can grow, shrink, or stay the same size.
1129 *
1130 * Returns: errno
1131 */
1132
cd915493 1133int gfs2_truncatei(struct gfs2_inode *ip, u64 size)
b3b94faa
DT
1134{
1135 int error;
1136
b60623c2 1137 if (gfs2_assert_warn(GFS2_SB(&ip->i_inode), S_ISREG(ip->i_inode.i_mode)))
b3b94faa
DT
1138 return -EINVAL;
1139
1140 if (size > ip->i_di.di_size)
1141 error = do_grow(ip, size);
a13b8c5f 1142 else if (size < ip->i_di.di_size)
aa6a85a9 1143 error = do_shrink(ip, size);
a13b8c5f
WC
1144 else
1145 /* update time stamps */
1146 error = do_touch(ip, size);
b3b94faa
DT
1147
1148 return error;
1149}
1150
1151int gfs2_truncatei_resume(struct gfs2_inode *ip)
1152{
1153 int error;
1154 error = trunc_dealloc(ip, ip->i_di.di_size);
1155 if (!error)
1156 error = trunc_end(ip);
1157 return error;
1158}
1159
1160int gfs2_file_dealloc(struct gfs2_inode *ip)
1161{
1162 return trunc_dealloc(ip, 0);
1163}
1164
1165/**
1166 * gfs2_write_calc_reserv - calculate number of blocks needed to write to a file
1167 * @ip: the file
1168 * @len: the number of bytes to be written to the file
1169 * @data_blocks: returns the number of data blocks required
1170 * @ind_blocks: returns the number of indirect blocks required
1171 *
1172 */
1173
1174void gfs2_write_calc_reserv(struct gfs2_inode *ip, unsigned int len,
1175 unsigned int *data_blocks, unsigned int *ind_blocks)
1176{
feaa7bba 1177 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
b3b94faa
DT
1178 unsigned int tmp;
1179
18ec7d5c 1180 if (gfs2_is_dir(ip)) {
5c676f6d 1181 *data_blocks = DIV_ROUND_UP(len, sdp->sd_jbsize) + 2;
b3b94faa
DT
1182 *ind_blocks = 3 * (sdp->sd_max_jheight - 1);
1183 } else {
1184 *data_blocks = (len >> sdp->sd_sb.sb_bsize_shift) + 3;
1185 *ind_blocks = 3 * (sdp->sd_max_height - 1);
1186 }
1187
1188 for (tmp = *data_blocks; tmp > sdp->sd_diptrs;) {
5c676f6d 1189 tmp = DIV_ROUND_UP(tmp, sdp->sd_inptrs);
b3b94faa
DT
1190 *ind_blocks += tmp;
1191 }
1192}
1193
1194/**
1195 * gfs2_write_alloc_required - figure out if a write will require an allocation
1196 * @ip: the file being written to
1197 * @offset: the offset to write to
1198 * @len: the number of bytes being written
1199 * @alloc_required: set to 1 if an alloc is required, 0 otherwise
1200 *
1201 * Returns: errno
1202 */
1203
cd915493 1204int gfs2_write_alloc_required(struct gfs2_inode *ip, u64 offset,
b3b94faa
DT
1205 unsigned int len, int *alloc_required)
1206{
feaa7bba 1207 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
941e6d7d
SW
1208 struct buffer_head bh;
1209 unsigned int shift;
1210 u64 lblock, lblock_stop, size;
b3b94faa
DT
1211
1212 *alloc_required = 0;
1213
1214 if (!len)
1215 return 0;
1216
1217 if (gfs2_is_stuffed(ip)) {
1218 if (offset + len >
1219 sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode))
1220 *alloc_required = 1;
1221 return 0;
1222 }
1223
941e6d7d
SW
1224 *alloc_required = 1;
1225 shift = sdp->sd_sb.sb_bsize_shift;
18ec7d5c 1226 if (gfs2_is_dir(ip)) {
b3b94faa
DT
1227 unsigned int bsize = sdp->sd_jbsize;
1228 lblock = offset;
1229 do_div(lblock, bsize);
1230 lblock_stop = offset + len + bsize - 1;
1231 do_div(lblock_stop, bsize);
1232 } else {
1af53572 1233 u64 end_of_file = (ip->i_di.di_size + sdp->sd_sb.sb_bsize - 1) >> shift;
b3b94faa
DT
1234 lblock = offset >> shift;
1235 lblock_stop = (offset + len + sdp->sd_sb.sb_bsize - 1) >> shift;
941e6d7d 1236 if (lblock_stop > end_of_file)
05220535 1237 return 0;
b3b94faa
DT
1238 }
1239
941e6d7d
SW
1240 size = (lblock_stop - lblock) << shift;
1241 do {
1242 bh.b_state = 0;
1243 bh.b_size = size;
1244 gfs2_block_map(&ip->i_inode, lblock, &bh, 0);
1245 if (!buffer_mapped(&bh))
b3b94faa 1246 return 0;
941e6d7d
SW
1247 size -= bh.b_size;
1248 lblock += (bh.b_size >> ip->i_inode.i_blkbits);
1249 } while(size > 0);
b3b94faa 1250
941e6d7d 1251 *alloc_required = 0;
b3b94faa
DT
1252 return 0;
1253}
1254
This page took 0.262091 seconds and 5 git commands to generate.