Lines Matching refs:op_flags
240 int __sync_dirty_buffer(struct buffer_head *bh, blk_opf_t op_flags);
241 void write_dirty_buffer(struct buffer_head *bh, blk_opf_t op_flags);
246 int __bh_read(struct buffer_head *bh, blk_opf_t op_flags, bool wait);
248 blk_opf_t op_flags, bool force_lock);
437 static inline void bh_readahead(struct buffer_head *bh, blk_opf_t op_flags) in bh_readahead() argument
441 __bh_read(bh, op_flags, false); in bh_readahead()
447 static inline void bh_read_nowait(struct buffer_head *bh, blk_opf_t op_flags) in bh_read_nowait() argument
450 __bh_read(bh, op_flags, false); in bh_read_nowait()
454 static inline int bh_read(struct buffer_head *bh, blk_opf_t op_flags) in bh_read() argument
458 return __bh_read(bh, op_flags, true); in bh_read()
467 blk_opf_t op_flags) in bh_readahead_batch() argument
469 __bh_read_batch(nr, bhs, op_flags, false); in bh_readahead_batch()