All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/7] ZBC / Zoned block device support
@ 2016-09-28  8:45 ` Damien Le Moal
  0 siblings, 0 replies; 34+ messages in thread
From: Damien Le Moal @ 2016-09-28  8:45 UTC (permalink / raw)
  To: Jens Axboe
  Cc: linux-block, linux-scsi, Christoph Hellwig, Martin K . Petersen,
	Hannes Reinecke, Shaun Tancheff, Damien Le Moal

This series introduces support for zoned block devices. It integrates
earlier submissions by Hannes Reinecke and Shaun Tancheff. Compared to the
previous series version, the code was significantly simplified by limiting
support to zoned devices satisfying the following conditions:
1) All zones of the device are the same size, with the exception of an
   eventual last smaller runt zone.
2) For host-managed disks, reads must be unrestricted (read commands do not
   fail due to zone or write pointer alignement constraints).
Zoned disks that do not satisfy these 2 conditions are ignored.

These 2 conditions allowed dropping the zone information cache implemented
in the previous version. This simplifies the code and also reduces the memory
consumption at run time. Support for zoned devices now only require one bit
per zone (less than 8KB in total). This bit field is used to write-lock
zones and prevent the concurrent execution of multiple write commands in
the same zone. This avoids write ordering problems at dispatch time, for
both the simple queue and scsi-mq settings.

The new operations introduced to suport zone manipulation was reduced to
only the two main ZBC/ZAC defined commands: REPORT ZONES (REQ_OP_ZONE_REPORT)
and RESET WRITE POINTER (REQ_OP_ZONE_RESET). This brings the total number of
operations defined to 8, which fits in the 3 bits (REQ_OP_BITS) reserved for
operation code in bio->bi_opf and req->cmd_flags.

Most of the ZBC specific code is kept out of sd.c and implemented in the
new file sd_zbc.c. Similarly, at the block layer, most of the zoned block
device code is implemented in the new blk-zoned.c.

For host-managed zoned block devices, the sequential write constraint of
write pointer zones is exposed to the user. Users of the disk (applications,
file systems or device mappers) must sequentially write to zones. This means
that for raw block device accesses from applications, buffered writes are
unreliable and direct I/Os must be used (or buffered writes with O_SYNC).

Access to zone manipulation operations is also provided to applications
through a set of new ioctls. This allows applications operating on raw
block devices (e.g. mkfs.xxx) to discover a device zone layout and
manipulate zone state.

Changes from v3:
* Fixed several typos and tabs/spaces
* Added description of zoned and chunk_sectors queue attributes in
  Documentation/ABI/testing/sysfs-block
* Fixed sd_read_capacity call in sd.c and to avoid missing information on
  the first pass of a disk scan
* Fixed scsi_disk zone related field to use logical block size unit instead
  of 512B sector unit.

Changes from v2:
* Use kcalloc to allocate zone information array for ioctl
* Use kcalloc to allocate zone information array for ioctl
* Export GPL the functions blkdev_report_zones and blkdev_reset_zones
* Shuffled uapi definitions from patch 7 into patch 5

Damien Le Moal (1):
  block: Add 'zoned' queue limit

Hannes Reinecke (4):
  blk-sysfs: Add 'chunk_sectors' to sysfs attributes
  block: update chunk_sectors in blk_stack_limits()
  block: Implement support for zoned block devices
  sd: Implement support for ZBC devices

Shaun Tancheff (2):
  block: Define zoned block device operations
  blk-zoned: implement ioctls

 Documentation/ABI/testing/sysfs-block |  29 ++
 block/Kconfig                         |   8 +
 block/Makefile                        |   1 +
 block/blk-core.c                      |   4 +
 block/blk-settings.c                  |   5 +
 block/blk-sysfs.c                     |  29 ++
 block/blk-zoned.c                     | 350 +++++++++++++++++++
 block/ioctl.c                         |   4 +
 drivers/scsi/Makefile                 |   1 +
 drivers/scsi/sd.c                     | 143 ++++++--
 drivers/scsi/sd.h                     |  70 ++++
 drivers/scsi/sd_zbc.c                 | 624 ++++++++++++++++++++++++++++++++++
 include/linux/blk_types.h             |   2 +
 include/linux/blkdev.h                |  99 ++++++
 include/scsi/scsi_proto.h             |  17 +
 include/uapi/linux/Kbuild             |   1 +
 include/uapi/linux/blkzoned.h         | 143 ++++++++
 include/uapi/linux/fs.h               |   4 +
 18 files changed, 1501 insertions(+), 33 deletions(-)
 create mode 100644 block/blk-zoned.c
 create mode 100644 drivers/scsi/sd_zbc.c
 create mode 100644 include/uapi/linux/blkzoned.h

-- 
2.7.4

Western Digital Corporation (and its subsidiaries) E-mail Confidentiality Notice & Disclaimer:

This e-mail and any files transmitted with it may contain confidential or legally privileged information of WDC and/or its affiliates, and are intended solely for the use of the individual or entity to which they are addressed. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is prohibited. If you have received this e-mail in error, please notify the sender immediately and delete the e-mail in its entirety from your system.

^ permalink raw reply	[flat|nested] 34+ messages in thread

end of thread, other threads:[~2016-09-30  2:37 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-28  8:45 [PATCH v4 0/7] ZBC / Zoned block device support Damien Le Moal
2016-09-28  8:45 ` Damien Le Moal
2016-09-28  8:45 ` [PATCH v4 1/7] block: Add 'zoned' queue limit Damien Le Moal
2016-09-28  8:45   ` Damien Le Moal
2016-09-29  1:32   ` Shaun Tancheff
2016-09-29  1:32     ` Shaun Tancheff
2016-09-30  1:59   ` Martin K. Petersen
2016-09-30  1:59     ` Martin K. Petersen
2016-09-28  8:45 ` [PATCH v4 2/7] blk-sysfs: Add 'chunk_sectors' to sysfs attributes Damien Le Moal
2016-09-28  8:45   ` Damien Le Moal
2016-09-29  1:32   ` Shaun Tancheff
2016-09-30  2:02   ` Martin K. Petersen
2016-09-30  2:02     ` Martin K. Petersen
2016-09-28  8:45 ` [PATCH v4 3/7] block: update chunk_sectors in blk_stack_limits() Damien Le Moal
2016-09-28  8:45   ` Damien Le Moal
2016-09-29  1:33   ` Shaun Tancheff
2016-09-30  2:02   ` Martin K. Petersen
2016-09-30  2:02     ` Martin K. Petersen
2016-09-28  8:45 ` [PATCH v4 4/7] block: Define zoned block device operations Damien Le Moal
2016-09-28  8:45   ` Damien Le Moal
2016-09-30  2:03   ` Martin K. Petersen
2016-09-30  2:03     ` Martin K. Petersen
2016-09-28  8:45 ` [PATCH v4 5/7] block: Implement support for zoned block devices Damien Le Moal
2016-09-28  8:45   ` Damien Le Moal
2016-09-29  1:34   ` Shaun Tancheff
2016-09-30  2:05   ` Martin K. Petersen
2016-09-30  2:05     ` Martin K. Petersen
2016-09-28  8:45 ` [PATCH v4 6/7] sd: Implement support for ZBC devices Damien Le Moal
2016-09-28  8:45   ` Damien Le Moal
2016-09-29  1:35   ` Shaun Tancheff
2016-09-30  2:37   ` Martin K. Petersen
2016-09-30  2:37     ` Martin K. Petersen
2016-09-28  8:45 ` [PATCH v4 7/7] blk-zoned: implement ioctls Damien Le Moal
2016-09-28  8:45   ` Damien Le Moal

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.