Home
last modified time | relevance | path

Searched refs:blkz (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/block/null_blk/
H A Dzoned.c206 struct blk_zone blkz; in null_report_zones() local
216 memset(&blkz, 0, sizeof(struct blk_zone)); in null_report_zones()
226 blkz.start = zone->start; in null_report_zones()
227 blkz.len = zone->len; in null_report_zones()
228 blkz.wp = zone->wp; in null_report_zones()
229 blkz.type = zone->type; in null_report_zones()
230 blkz.cond = zone->cond; in null_report_zones()
231 blkz.capacity = zone->capacity; in null_report_zones()
234 error = disk_report_zone(disk, &blkz, i, args); in null_report_zones()
/linux/drivers/block/
H A Dzloop.c941 struct blk_zone blkz = {}; in zloop_report_zones() local
964 blkz.start = zone->start; in zloop_report_zones()
965 blkz.len = zlo->zone_size; in zloop_report_zones()
967 blkz.wp = zone->wp; in zloop_report_zones()
969 blkz.cond = zone->cond; in zloop_report_zones()
971 blkz.type = BLK_ZONE_TYPE_CONVENTIONAL; in zloop_report_zones()
972 blkz.capacity = zlo->zone_size; in zloop_report_zones()
974 blkz.type = BLK_ZONE_TYPE_SEQWRITE_REQ; in zloop_report_zones()
975 blkz.capacity = zlo->zone_capacity; in zloop_report_zones()
980 ret = disk_report_zone(disk, &blkz, i, args); in zloop_report_zones()