diff options
author | Damien Le Moal <damien.lemoal@wdc.com> | 2019-11-11 11:39:28 +0900 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-11-12 19:12:02 -0700 |
commit | 6d09c4086ed9fc72afb3be4b47ecfa34f57f15f9 (patch) | |
tree | 7040ddc99f9eb11701954d866ac3dd80222c1bc4 /drivers/block | |
parent | 7fc8fb51a143a7efc9b199179e43a6d28f69b1f9 (diff) | |
download | blackbird-op-linux-6d09c4086ed9fc72afb3be4b47ecfa34f57f15f9.tar.gz blackbird-op-linux-6d09c4086ed9fc72afb3be4b47ecfa34f57f15f9.zip |
null_blk: Add zone_nr_conv to features
For a null_blk device with zoned mode enabled, the number of
conventional zones can be configured through configfs with the
zone_nr_conv parameter. Add this missing parameter in the features
string.
Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/null_blk_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/null_blk_main.c b/drivers/block/null_blk_main.c index 3a7a7763316c..795fda576824 100644 --- a/drivers/block/null_blk_main.c +++ b/drivers/block/null_blk_main.c @@ -493,7 +493,7 @@ nullb_group_drop_item(struct config_group *group, struct config_item *item) static ssize_t memb_group_features_show(struct config_item *item, char *page) { - return snprintf(page, PAGE_SIZE, "memory_backed,discard,bandwidth,cache,badblocks,zoned,zone_size\n"); + return snprintf(page, PAGE_SIZE, "memory_backed,discard,bandwidth,cache,badblocks,zoned,zone_size,zone_nr_conv\n"); } CONFIGFS_ATTR_RO(memb_group_, features); |