Home | History | Annotate | Download | only in ext2fs

Lines Matching refs:flags

34 static _BMAP_INLINE_ errcode_t block_ind_bmap(ext2_filsys fs, int flags, 
43 if (flags & BMAP_SET)
52 if (flags & BMAP_SET) {
55 if ((fs->flags & EXT2_FLAG_SWAP_BYTES) ||
56 (fs->flags & EXT2_FLAG_SWAP_BYTES_WRITE))
66 if ((fs->flags & EXT2_FLAG_SWAP_BYTES) ||
67 (fs->flags & EXT2_FLAG_SWAP_BYTES_READ))
71 if (!b && (flags & BMAP_ALLOC)) {
79 if ((fs->flags & EXT2_FLAG_SWAP_BYTES) ||
80 (fs->flags & EXT2_FLAG_SWAP_BYTES_WRITE))
97 static _BMAP_INLINE_ errcode_t block_dind_bmap(ext2_filsys fs, int flags,
108 retval = block_ind_bmap(fs, flags & ~BMAP_SET, dind, block_buf,
112 retval = block_ind_bmap(fs, flags, b, block_buf, blocks_alloc,
117 static _BMAP_INLINE_ errcode_t block_tind_bmap(ext2_filsys fs, int flags,
128 retval = block_dind_bmap(fs, flags & ~BMAP_SET, tind, block_buf,
132 retval = block_ind_bmap(fs, flags, b, block_buf, blocks_alloc,
171 if ((fs->flags & EXT2_FLAG_SWAP_BYTES) ||
172 (fs->flags & EXT2_FLAG_SWAP_BYTES_READ))