/* * Maximum number of sectors for a single bio to limit the size of the * checksum array. This matches the number of bio_vecs per bio and thus the * I/O size for buffered I/O.
*/ #define BTRFS_MAX_BIO_SECTORS (256)
/* * Highlevel btrfs I/O structure. It is allocated by btrfs_bio_alloc and * passed to btrfs_submit_bbio() for mapping to the physical devices.
*/ struct btrfs_bio { /* * Inode and offset into it that this I/O operates on. * Only set for data I/O.
*/ struct btrfs_inode *inode;
u64 file_offset;
union { /* * For data reads: checksumming and original I/O information. * (for internal use in the btrfs_submit_bbio() machinery only)
*/ struct {
u8 *csum;
u8 csum_inline[BTRFS_BIO_INLINE_CSUM_SIZE]; struct bvec_iter saved_iter;
};
/* * For data writes: * - ordered extent covering the bio * - pointer to the checksums for this bio * - original physical address from the allocator * (for zone append only)
*/ struct { struct btrfs_ordered_extent *ordered; struct btrfs_ordered_sum *sums;
u64 orig_physical;
};
/* End I/O information supplied to btrfs_bio_alloc */
btrfs_bio_end_io_t end_io; void *private;
/* For internal use in read end I/O handling */ unsignedint mirror_num;
atomic_t pending_ios; struct work_struct end_io_work;
/* File system that this I/O operates on. */ struct btrfs_fs_info *fs_info;
/* Save the first error status of split bio. */
blk_status_t status;
/* * This member must come last, bio_alloc_bioset will allocate enough * bytes for entire btrfs_bio but relies on bio being last.
*/ struct bio bio;
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.