Lines Matching refs:blocks

34 		critical_error("indirect backing larger than %d blocks", EXT4_NDIR_BLOCKS);
65 error("failed to advance %d blocks", len);
133 error("failed to advance %d blocks", ind_block_len);
166 /* Given an allocation, attach as many blocks as possible to direct inode
167 blocks, and return the rest */
179 error("failed to advance %d blocks", len);
187 /* Given an allocation, attach as many blocks as possible to indirect blocks,
189 Assumes that the blocks necessary to hold the indirect blocks were included
211 error("failed to advance %d blocks", len);
219 /* Given an allocation, attach as many blocks as possible to doubly indirect
220 blocks, and return the rest.
221 Assumes that the blocks necessary to hold the indirect and doubly indirect
222 blocks were included as part of the allocation */
243 error("failed to advance %d blocks", len);
251 /* Given an allocation, attach as many blocks as possible to triply indirect
252 blocks, and return the rest.
253 Assumes that the blocks necessary to hold the indirect, doubly indirect and
254 triply indirect blocks were included as part of the allocation */
275 error("failed to advance %d blocks", len);
312 error("%d blocks remaining", len);
324 /* We will need an indirect block for the rest of the blocks */
354 error("failed to attach direct blocks to inode");
360 error("failed to attach indirect blocks to inode");
367 error("failed to attach dindirect blocks to inode");
374 error("failed to attach tindirect blocks to inode");
380 error("blocks left after triply-indirect allocation");
397 error("Failed to allocate %d blocks", block_len + indirect_len);
404 /* Allocates enough blocks to hold len bytes and connects them to an inode */
421 error("failed to attach blocks to indirect inode");
436 u64 blocks;
440 critical_error("reserved blocks not a multiple of %d",
476 blocks = ((u64)block_len + 1) * info.block_size / 512;
481 inode->i_blocks_lo = blocks;
482 inode->osd2.linux2.l_i_blocks_high = blocks >> 32;
487 /* Allocates enough blocks to hold len bytes, with backing_len bytes in a data
511 error("failed to attach blocks to indirect inode");