Lines Matching defs:block
90 * vxfs_bread - read buffer for a give inode,block tuple
92 * @block: logical block
95 * The vxfs_bread function reads block no @block of
102 vxfs_bread(struct inode *ip, int block)
107 pblock = vxfs_bmap1(ip, block);
114 * vxfs_get_block - locate buffer for given inode,block tuple
116 * @iblock: logical block
122 * block and device number to perform a lowlevel read/write on
165 * vxfs_bmap - perform logical to physical block mapping
167 * @block: logical block (relative to @mapping).
170 * Vxfs_bmap find out the corresponding phsical block to the
171 * @mapping, @block pair.
174 * Physical block number on success, else Zero.
180 vxfs_bmap(struct address_space *mapping, sector_t block)
182 return generic_block_bmap(mapping, block, vxfs_getblk);