Lines Matching defs:block
60 * vxfs_bread - read buffer for a give inode,block tuple
62 * @block: logical block
65 * The vxfs_bread function reads block no @block of
72 vxfs_bread(struct inode *ip, int block)
77 pblock = vxfs_bmap1(ip, block);
84 * vxfs_getblk - locate buffer for given inode,block tuple
86 * @iblock: logical block
92 * block and device number to perform a lowlevel read/write on
134 * vxfs_bmap - perform logical to physical block mapping
136 * @block: logical block (relative to @mapping).
139 * Vxfs_bmap find out the corresponding phsical block to the
140 * @mapping, @block pair.
143 * Physical block number on success, else Zero.
149 vxfs_bmap(struct address_space *mapping, sector_t block)
151 return generic_block_bmap(mapping, block, vxfs_getblk);