mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 00:53:34 +02:00
block: track zone conditions
The function blk_revalidate_zone_cond() already caches the condition of all zones of a zoned block device in the zones_cond array of a gendisk. However, the zone conditions are updated only when the device is scanned or revalidated. Implement tracking of the runtime changes to zone conditions using the new cond field in struct blk_zone_wplug. The size of this structure remains 112 Bytes as the new field replaces the 4 Bytes padding at the end of the structure. Beause zones that do not have a zone write plug can be in the empty, implicit open, explicit open or full condition, the zones_cond array of a disk is used to track the conditions, of zones that do not have a zone write plug. The condition of such zone is updated in the disk zones_cond array when a zone reset, reset all or finish operation is executed, and also when a zone write plug is removed from the disk hash table when the zone becomes full. Since a device may automatically close an implicitly open zone when writing to an empty or closed zone, if the total number of open zones has reached the device limit, the BLK_ZONE_COND_IMP_OPEN and BLK_ZONE_COND_CLOSED zone conditions cannot be precisely tracked. To overcome this, the zone condition BLK_ZONE_COND_ACTIVE is introduced to represent a zone that has the condition BLK_ZONE_COND_IMP_OPEN, BLK_ZONE_COND_EXP_OPEN or BLK_ZONE_COND_CLOSED. This follows the definition of an active zone as defined in the NVMe Zoned Namespace specifications. As such, for a zoned device that has a limit on the maximum number of open zones, we will never have more zones in the BLK_ZONE_COND_ACTIVE condition than the device limit. This is compatible with the SCSI ZBC and ATA ZAC specifications for SMR HDDs as these devices do not have a limit on the number of active zones. The function disk_zone_wplug_set_wp_offset() is modified to use the new helper disk_zone_wplug_update_cond() to update a zone write plug condition whenever a zone write plug write offset is updated on submission or merging of write BIOs to a zone. The functions blk_zone_reset_bio_endio(), blk_zone_reset_all_bio_endio() and blk_zone_finish_bio_endio() are modified to update the condition of the zones targeted by reset, reset_all and finish operations, either using though disk_zone_wplug_set_wp_offset() for zones that have a zone write plug, or using the disk_zone_set_cond() helper to update the zones_cond array of the disk for zones that do not have a zone write plug. When a zone write plug is removed from the disk hash table (when the zone becomes empty or full), the condition of struct blk_zone_wplug is used to update the disk zones_cond array. Conversely, when a zone write plug is added to the disk hash table, the zones_cond array is used to initialize the zone write plug condition. Signed-off-by: Damien Le Moal <dlemoal@kernel.org> Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
6e945ffb65
commit
0bf0e2e466
|
|
@ -33,6 +33,7 @@ static const char *const zone_cond_name[] = {
|
||||||
ZONE_COND_NAME(READONLY),
|
ZONE_COND_NAME(READONLY),
|
||||||
ZONE_COND_NAME(FULL),
|
ZONE_COND_NAME(FULL),
|
||||||
ZONE_COND_NAME(OFFLINE),
|
ZONE_COND_NAME(OFFLINE),
|
||||||
|
ZONE_COND_NAME(ACTIVE),
|
||||||
};
|
};
|
||||||
#undef ZONE_COND_NAME
|
#undef ZONE_COND_NAME
|
||||||
|
|
||||||
|
|
@ -57,6 +58,7 @@ static const char *const zone_cond_name[] = {
|
||||||
* @zone_no: The number of the zone the plug is managing.
|
* @zone_no: The number of the zone the plug is managing.
|
||||||
* @wp_offset: The zone write pointer location relative to the start of the zone
|
* @wp_offset: The zone write pointer location relative to the start of the zone
|
||||||
* as a number of 512B sectors.
|
* as a number of 512B sectors.
|
||||||
|
* @cond: Condition of the zone
|
||||||
*/
|
*/
|
||||||
struct blk_zone_wplug {
|
struct blk_zone_wplug {
|
||||||
struct hlist_node node;
|
struct hlist_node node;
|
||||||
|
|
@ -69,6 +71,7 @@ struct blk_zone_wplug {
|
||||||
unsigned int flags;
|
unsigned int flags;
|
||||||
unsigned int zone_no;
|
unsigned int zone_no;
|
||||||
unsigned int wp_offset;
|
unsigned int wp_offset;
|
||||||
|
enum blk_zone_cond cond;
|
||||||
};
|
};
|
||||||
|
|
||||||
static inline unsigned int disk_zone_wplugs_hash_size(struct gendisk *disk)
|
static inline unsigned int disk_zone_wplugs_hash_size(struct gendisk *disk)
|
||||||
|
|
@ -114,6 +117,57 @@ const char *blk_zone_cond_str(enum blk_zone_cond zone_cond)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(blk_zone_cond_str);
|
EXPORT_SYMBOL_GPL(blk_zone_cond_str);
|
||||||
|
|
||||||
|
static void blk_zone_set_cond(u8 *zones_cond, unsigned int zno,
|
||||||
|
enum blk_zone_cond cond)
|
||||||
|
{
|
||||||
|
if (!zones_cond)
|
||||||
|
return;
|
||||||
|
|
||||||
|
switch (cond) {
|
||||||
|
case BLK_ZONE_COND_IMP_OPEN:
|
||||||
|
case BLK_ZONE_COND_EXP_OPEN:
|
||||||
|
case BLK_ZONE_COND_CLOSED:
|
||||||
|
zones_cond[zno] = BLK_ZONE_COND_ACTIVE;
|
||||||
|
return;
|
||||||
|
case BLK_ZONE_COND_NOT_WP:
|
||||||
|
case BLK_ZONE_COND_EMPTY:
|
||||||
|
case BLK_ZONE_COND_FULL:
|
||||||
|
case BLK_ZONE_COND_OFFLINE:
|
||||||
|
case BLK_ZONE_COND_READONLY:
|
||||||
|
default:
|
||||||
|
zones_cond[zno] = cond;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void disk_zone_set_cond(struct gendisk *disk, sector_t sector,
|
||||||
|
enum blk_zone_cond cond)
|
||||||
|
{
|
||||||
|
u8 *zones_cond;
|
||||||
|
|
||||||
|
rcu_read_lock();
|
||||||
|
zones_cond = rcu_dereference(disk->zones_cond);
|
||||||
|
if (zones_cond) {
|
||||||
|
unsigned int zno = disk_zone_no(disk, sector);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The condition of a conventional, readonly and offline zones
|
||||||
|
* never changes, so do nothing if the target zone is in one of
|
||||||
|
* these conditions.
|
||||||
|
*/
|
||||||
|
switch (zones_cond[zno]) {
|
||||||
|
case BLK_ZONE_COND_NOT_WP:
|
||||||
|
case BLK_ZONE_COND_READONLY:
|
||||||
|
case BLK_ZONE_COND_OFFLINE:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
blk_zone_set_cond(zones_cond, zno, cond);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
rcu_read_unlock();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* bdev_zone_is_seq - check if a sector belongs to a sequential write zone
|
* bdev_zone_is_seq - check if a sector belongs to a sequential write zone
|
||||||
* @bdev: block device to check
|
* @bdev: block device to check
|
||||||
|
|
@ -416,6 +470,7 @@ static bool disk_insert_zone_wplug(struct gendisk *disk,
|
||||||
{
|
{
|
||||||
struct blk_zone_wplug *zwplg;
|
struct blk_zone_wplug *zwplg;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
u8 *zones_cond;
|
||||||
unsigned int idx =
|
unsigned int idx =
|
||||||
hash_32(zwplug->zone_no, disk->zone_wplugs_hash_bits);
|
hash_32(zwplug->zone_no, disk->zone_wplugs_hash_bits);
|
||||||
|
|
||||||
|
|
@ -431,6 +486,20 @@ static bool disk_insert_zone_wplug(struct gendisk *disk,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Set the zone condition: if we do not yet have a zones_cond array
|
||||||
|
* attached to the disk, then this is a zone write plug insert from the
|
||||||
|
* first call to blk_revalidate_disk_zones(), in which case the zone is
|
||||||
|
* necessarilly in the active condition.
|
||||||
|
*/
|
||||||
|
zones_cond = rcu_dereference_check(disk->zones_cond,
|
||||||
|
lockdep_is_held(&disk->zone_wplugs_lock));
|
||||||
|
if (zones_cond)
|
||||||
|
zwplug->cond = zones_cond[zwplug->zone_no];
|
||||||
|
else
|
||||||
|
zwplug->cond = BLK_ZONE_COND_ACTIVE;
|
||||||
|
|
||||||
hlist_add_head_rcu(&zwplug->node, &disk->zone_wplugs_hash[idx]);
|
hlist_add_head_rcu(&zwplug->node, &disk->zone_wplugs_hash[idx]);
|
||||||
atomic_inc(&disk->nr_zone_wplugs);
|
atomic_inc(&disk->nr_zone_wplugs);
|
||||||
spin_unlock_irqrestore(&disk->zone_wplugs_lock, flags);
|
spin_unlock_irqrestore(&disk->zone_wplugs_lock, flags);
|
||||||
|
|
@ -530,10 +599,15 @@ static void disk_remove_zone_wplug(struct gendisk *disk,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Mark the zone write plug as unhashed and drop the extra reference we
|
* Mark the zone write plug as unhashed and drop the extra reference we
|
||||||
* took when the plug was inserted in the hash table.
|
* took when the plug was inserted in the hash table. Also update the
|
||||||
|
* disk zone condition array with the current condition of the zone
|
||||||
|
* write plug.
|
||||||
*/
|
*/
|
||||||
zwplug->flags |= BLK_ZONE_WPLUG_UNHASHED;
|
zwplug->flags |= BLK_ZONE_WPLUG_UNHASHED;
|
||||||
spin_lock_irqsave(&disk->zone_wplugs_lock, flags);
|
spin_lock_irqsave(&disk->zone_wplugs_lock, flags);
|
||||||
|
blk_zone_set_cond(rcu_dereference_check(disk->zones_cond,
|
||||||
|
lockdep_is_held(&disk->zone_wplugs_lock)),
|
||||||
|
zwplug->zone_no, zwplug->cond);
|
||||||
hlist_del_init_rcu(&zwplug->node);
|
hlist_del_init_rcu(&zwplug->node);
|
||||||
atomic_dec(&disk->nr_zone_wplugs);
|
atomic_dec(&disk->nr_zone_wplugs);
|
||||||
spin_unlock_irqrestore(&disk->zone_wplugs_lock, flags);
|
spin_unlock_irqrestore(&disk->zone_wplugs_lock, flags);
|
||||||
|
|
@ -635,6 +709,22 @@ static void disk_zone_wplug_abort(struct blk_zone_wplug *zwplug)
|
||||||
blk_zone_wplug_bio_io_error(zwplug, bio);
|
blk_zone_wplug_bio_io_error(zwplug, bio);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Update a zone write plug condition based on the write pointer offset.
|
||||||
|
*/
|
||||||
|
static void disk_zone_wplug_update_cond(struct gendisk *disk,
|
||||||
|
struct blk_zone_wplug *zwplug)
|
||||||
|
{
|
||||||
|
lockdep_assert_held(&zwplug->lock);
|
||||||
|
|
||||||
|
if (disk_zone_wplug_is_full(disk, zwplug))
|
||||||
|
zwplug->cond = BLK_ZONE_COND_FULL;
|
||||||
|
else if (!zwplug->wp_offset)
|
||||||
|
zwplug->cond = BLK_ZONE_COND_EMPTY;
|
||||||
|
else
|
||||||
|
zwplug->cond = BLK_ZONE_COND_ACTIVE;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set a zone write plug write pointer offset to the specified value.
|
* Set a zone write plug write pointer offset to the specified value.
|
||||||
* This aborts all plugged BIOs, which is fine as this function is called for
|
* This aborts all plugged BIOs, which is fine as this function is called for
|
||||||
|
|
@ -650,6 +740,8 @@ static void disk_zone_wplug_set_wp_offset(struct gendisk *disk,
|
||||||
/* Update the zone write pointer and abort all plugged BIOs. */
|
/* Update the zone write pointer and abort all plugged BIOs. */
|
||||||
zwplug->flags &= ~BLK_ZONE_WPLUG_NEED_WP_UPDATE;
|
zwplug->flags &= ~BLK_ZONE_WPLUG_NEED_WP_UPDATE;
|
||||||
zwplug->wp_offset = wp_offset;
|
zwplug->wp_offset = wp_offset;
|
||||||
|
disk_zone_wplug_update_cond(disk, zwplug);
|
||||||
|
|
||||||
disk_zone_wplug_abort(zwplug);
|
disk_zone_wplug_abort(zwplug);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -733,6 +825,7 @@ EXPORT_SYMBOL_GPL(disk_report_zone);
|
||||||
static void blk_zone_reset_bio_endio(struct bio *bio)
|
static void blk_zone_reset_bio_endio(struct bio *bio)
|
||||||
{
|
{
|
||||||
struct gendisk *disk = bio->bi_bdev->bd_disk;
|
struct gendisk *disk = bio->bi_bdev->bd_disk;
|
||||||
|
sector_t sector = bio->bi_iter.bi_sector;
|
||||||
struct blk_zone_wplug *zwplug;
|
struct blk_zone_wplug *zwplug;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -741,7 +834,7 @@ static void blk_zone_reset_bio_endio(struct bio *bio)
|
||||||
* resetting zones while writes are still in-flight will result in the
|
* resetting zones while writes are still in-flight will result in the
|
||||||
* writes failing anyway.
|
* writes failing anyway.
|
||||||
*/
|
*/
|
||||||
zwplug = disk_get_zone_wplug(disk, bio->bi_iter.bi_sector);
|
zwplug = disk_get_zone_wplug(disk, sector);
|
||||||
if (zwplug) {
|
if (zwplug) {
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
|
|
@ -749,14 +842,18 @@ static void blk_zone_reset_bio_endio(struct bio *bio)
|
||||||
disk_zone_wplug_set_wp_offset(disk, zwplug, 0);
|
disk_zone_wplug_set_wp_offset(disk, zwplug, 0);
|
||||||
spin_unlock_irqrestore(&zwplug->lock, flags);
|
spin_unlock_irqrestore(&zwplug->lock, flags);
|
||||||
disk_put_zone_wplug(zwplug);
|
disk_put_zone_wplug(zwplug);
|
||||||
|
} else {
|
||||||
|
disk_zone_set_cond(disk, sector, BLK_ZONE_COND_EMPTY);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void blk_zone_reset_all_bio_endio(struct bio *bio)
|
static void blk_zone_reset_all_bio_endio(struct bio *bio)
|
||||||
{
|
{
|
||||||
struct gendisk *disk = bio->bi_bdev->bd_disk;
|
struct gendisk *disk = bio->bi_bdev->bd_disk;
|
||||||
|
sector_t capacity = get_capacity(disk);
|
||||||
struct blk_zone_wplug *zwplug;
|
struct blk_zone_wplug *zwplug;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
sector_t sector;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
/* Update the condition of all zone write plugs. */
|
/* Update the condition of all zone write plugs. */
|
||||||
|
|
@ -770,12 +867,18 @@ static void blk_zone_reset_all_bio_endio(struct bio *bio)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
rcu_read_unlock();
|
rcu_read_unlock();
|
||||||
|
|
||||||
|
/* Update the cached zone conditions. */
|
||||||
|
for (sector = 0; sector < capacity;
|
||||||
|
sector += bdev_zone_sectors(bio->bi_bdev))
|
||||||
|
disk_zone_set_cond(disk, sector, BLK_ZONE_COND_EMPTY);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void blk_zone_finish_bio_endio(struct bio *bio)
|
static void blk_zone_finish_bio_endio(struct bio *bio)
|
||||||
{
|
{
|
||||||
struct block_device *bdev = bio->bi_bdev;
|
struct block_device *bdev = bio->bi_bdev;
|
||||||
struct gendisk *disk = bdev->bd_disk;
|
struct gendisk *disk = bdev->bd_disk;
|
||||||
|
sector_t sector = bio->bi_iter.bi_sector;
|
||||||
struct blk_zone_wplug *zwplug;
|
struct blk_zone_wplug *zwplug;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -784,7 +887,7 @@ static void blk_zone_finish_bio_endio(struct bio *bio)
|
||||||
* is fine as resetting zones while writes are still in-flight will
|
* is fine as resetting zones while writes are still in-flight will
|
||||||
* result in the writes failing anyway.
|
* result in the writes failing anyway.
|
||||||
*/
|
*/
|
||||||
zwplug = disk_get_zone_wplug(disk, bio->bi_iter.bi_sector);
|
zwplug = disk_get_zone_wplug(disk, sector);
|
||||||
if (zwplug) {
|
if (zwplug) {
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
|
|
@ -793,6 +896,8 @@ static void blk_zone_finish_bio_endio(struct bio *bio)
|
||||||
bdev_zone_sectors(bdev));
|
bdev_zone_sectors(bdev));
|
||||||
spin_unlock_irqrestore(&zwplug->lock, flags);
|
spin_unlock_irqrestore(&zwplug->lock, flags);
|
||||||
disk_put_zone_wplug(zwplug);
|
disk_put_zone_wplug(zwplug);
|
||||||
|
} else {
|
||||||
|
disk_zone_set_cond(disk, sector, BLK_ZONE_COND_FULL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -888,6 +993,7 @@ static inline void disk_zone_wplug_add_bio(struct gendisk *disk,
|
||||||
*/
|
*/
|
||||||
void blk_zone_write_plug_bio_merged(struct bio *bio)
|
void blk_zone_write_plug_bio_merged(struct bio *bio)
|
||||||
{
|
{
|
||||||
|
struct gendisk *disk = bio->bi_bdev->bd_disk;
|
||||||
struct blk_zone_wplug *zwplug;
|
struct blk_zone_wplug *zwplug;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
|
|
@ -909,13 +1015,13 @@ void blk_zone_write_plug_bio_merged(struct bio *bio)
|
||||||
* have at least one request and one BIO referencing the zone write
|
* have at least one request and one BIO referencing the zone write
|
||||||
* plug. So this should not fail.
|
* plug. So this should not fail.
|
||||||
*/
|
*/
|
||||||
zwplug = disk_get_zone_wplug(bio->bi_bdev->bd_disk,
|
zwplug = disk_get_zone_wplug(disk, bio->bi_iter.bi_sector);
|
||||||
bio->bi_iter.bi_sector);
|
|
||||||
if (WARN_ON_ONCE(!zwplug))
|
if (WARN_ON_ONCE(!zwplug))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
spin_lock_irqsave(&zwplug->lock, flags);
|
spin_lock_irqsave(&zwplug->lock, flags);
|
||||||
zwplug->wp_offset += bio_sectors(bio);
|
zwplug->wp_offset += bio_sectors(bio);
|
||||||
|
disk_zone_wplug_update_cond(disk, zwplug);
|
||||||
spin_unlock_irqrestore(&zwplug->lock, flags);
|
spin_unlock_irqrestore(&zwplug->lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -974,6 +1080,7 @@ void blk_zone_write_plug_init_request(struct request *req)
|
||||||
/* Drop the reference taken by disk_zone_wplug_add_bio(). */
|
/* Drop the reference taken by disk_zone_wplug_add_bio(). */
|
||||||
blk_queue_exit(q);
|
blk_queue_exit(q);
|
||||||
zwplug->wp_offset += bio_sectors(bio);
|
zwplug->wp_offset += bio_sectors(bio);
|
||||||
|
disk_zone_wplug_update_cond(disk, zwplug);
|
||||||
|
|
||||||
req_back_sector += bio_sectors(bio);
|
req_back_sector += bio_sectors(bio);
|
||||||
}
|
}
|
||||||
|
|
@ -1037,6 +1144,7 @@ static bool blk_zone_wplug_prepare_bio(struct blk_zone_wplug *zwplug,
|
||||||
|
|
||||||
/* Advance the zone write pointer offset. */
|
/* Advance the zone write pointer offset. */
|
||||||
zwplug->wp_offset += bio_sectors(bio);
|
zwplug->wp_offset += bio_sectors(bio);
|
||||||
|
disk_zone_wplug_update_cond(disk, zwplug);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
@ -1683,7 +1791,7 @@ static int blk_revalidate_zone_cond(struct blk_zone *zone, unsigned int idx,
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
|
|
||||||
args->zones_cond[idx] = cond;
|
blk_zone_set_cond(args->zones_cond, idx, cond);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -48,6 +48,8 @@ enum blk_zone_type {
|
||||||
* FINISH ZONE command.
|
* FINISH ZONE command.
|
||||||
* @BLK_ZONE_COND_READONLY: The zone is read-only.
|
* @BLK_ZONE_COND_READONLY: The zone is read-only.
|
||||||
* @BLK_ZONE_COND_OFFLINE: The zone is offline (sectors cannot be read/written).
|
* @BLK_ZONE_COND_OFFLINE: The zone is offline (sectors cannot be read/written).
|
||||||
|
* @BLK_ZONE_COND_ACTIVE: The zone is either implicitly open, explicitly open,
|
||||||
|
* or closed.
|
||||||
*
|
*
|
||||||
* The Zone Condition state machine in the ZBC/ZAC standards maps the above
|
* The Zone Condition state machine in the ZBC/ZAC standards maps the above
|
||||||
* deinitions as:
|
* deinitions as:
|
||||||
|
|
@ -61,6 +63,13 @@ enum blk_zone_type {
|
||||||
*
|
*
|
||||||
* Conditions 0x5 to 0xC are reserved by the current ZBC/ZAC spec and should
|
* Conditions 0x5 to 0xC are reserved by the current ZBC/ZAC spec and should
|
||||||
* be considered invalid.
|
* be considered invalid.
|
||||||
|
*
|
||||||
|
* The condition BLK_ZONE_COND_ACTIVE is used only with cached zone reports.
|
||||||
|
* It is used to report any of the BLK_ZONE_COND_IMP_OPEN,
|
||||||
|
* BLK_ZONE_COND_EXP_OPEN and BLK_ZONE_COND_CLOSED conditions. Conversely, a
|
||||||
|
* regular zone report will never report a zone condition using
|
||||||
|
* BLK_ZONE_COND_ACTIVE and instead use the conditions BLK_ZONE_COND_IMP_OPEN,
|
||||||
|
* BLK_ZONE_COND_EXP_OPEN or BLK_ZONE_COND_CLOSED as reported by the device.
|
||||||
*/
|
*/
|
||||||
enum blk_zone_cond {
|
enum blk_zone_cond {
|
||||||
BLK_ZONE_COND_NOT_WP = 0x0,
|
BLK_ZONE_COND_NOT_WP = 0x0,
|
||||||
|
|
@ -71,6 +80,8 @@ enum blk_zone_cond {
|
||||||
BLK_ZONE_COND_READONLY = 0xD,
|
BLK_ZONE_COND_READONLY = 0xD,
|
||||||
BLK_ZONE_COND_FULL = 0xE,
|
BLK_ZONE_COND_FULL = 0xE,
|
||||||
BLK_ZONE_COND_OFFLINE = 0xF,
|
BLK_ZONE_COND_OFFLINE = 0xF,
|
||||||
|
|
||||||
|
BLK_ZONE_COND_ACTIVE = 0xFF,
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user