// SPDX-License-Identifier: GPL-2.012//! Types for working with the block layer.34pub mod mq;56/// Bit mask for masking out [`SECTOR_SIZE`].7pub const SECTOR_MASK: u32 = bindings::SECTOR_MASK;89/// Sectors are size `1 << SECTOR_SHIFT`.10pub const SECTOR_SHIFT: u32 = bindings::SECTOR_SHIFT;1112/// Size of a sector.13pub const SECTOR_SIZE: u32 = bindings::SECTOR_SIZE;1415/// The difference between the size of a page and the size of a sector,16/// expressed as a power of two.17pub const PAGE_SECTORS_SHIFT: u32 = bindings::PAGE_SECTORS_SHIFT;181920