Lines Matching refs:bdev
214 void clean_bdev_aliases(struct block_device *bdev, sector_t block,
224 struct buffer_head *__find_get_block(struct block_device *bdev, sector_t block,
226 struct buffer_head *__find_get_block_nonatomic(struct block_device *bdev,
228 struct buffer_head *bdev_getblk(struct block_device *bdev, sector_t block,
243 void write_boundary_block(struct block_device *bdev,
363 static inline struct buffer_head *getblk_unmovable(struct block_device *bdev, in getblk_unmovable() argument
368 gfp = mapping_gfp_constraint(bdev->bd_mapping, ~__GFP_FS); in getblk_unmovable()
371 return bdev_getblk(bdev, block, size, gfp); in getblk_unmovable()
374 static inline struct buffer_head *__getblk(struct block_device *bdev, in __getblk() argument
379 gfp = mapping_gfp_constraint(bdev->bd_mapping, ~__GFP_FS); in __getblk()
382 return bdev_getblk(bdev, block, size, gfp); in __getblk()
486 static inline struct buffer_head *__bread(struct block_device *bdev, in __bread() argument
489 return __bread_gfp(bdev, block, size, __GFP_MOVABLE); in __bread()