nvme: add support for streams and directives write-stream.6
authorJens Axboe <axboe@kernel.dk>
Fri, 16 Jun 2017 16:52:24 +0000 (10:52 -0600)
committerJens Axboe <axboe@fb.com>
Fri, 16 Jun 2017 17:19:58 +0000 (11:19 -0600)
commit83a1a77ba49dd9889992a87597159577a3b9f62a
tree71dae7d47d581abd18c6b5bd8d5c930ba5311b21
parent0f86a154a56499cb359e7f2eb94d40350e8f97ab
nvme: add support for streams and directives

This adds support for Directives in NVMe, particular for the Streams
directive. Support for Directives is a new feature in NVMe 1.3. It
allows a user to pass in information about where to store the data,
so that it the device can do so most effiently. If an application is
managing and writing data with different life times, mixing differently
retentioned data onto the same locations on flash can cause write
amplification to grow. This, in turn, will reduce performance and
life time of the device.

We default to allocating 4 streams per name space, but it is
configurable with the 'streams_per_ns' module option. If a write stream
is set in a write, flag is as such before sending it to the device. The
streams are allocated lazily - if we get a write request with a life
time hint, then background allocate streams and use them once that
is done.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/nvme/host/core.c
drivers/nvme/host/nvme.h
include/linux/nvme.h