diff options
author | Vishal Verma <vishal.l.verma@intel.com> | 2015-06-25 04:21:52 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2015-06-26 11:23:38 -0400 |
commit | 41cd8b70c37ace40077c8d6ec0b74b983178c192 (patch) | |
tree | e4d99ee384708f35e4d44549a16b2165a77209ef /drivers/nvdimm/btt_devs.c | |
parent | f68eb1e71a92765ffd8eb68466a41b48f2fbba04 (diff) | |
download | talos-op-linux-41cd8b70c37ace40077c8d6ec0b74b983178c192.tar.gz talos-op-linux-41cd8b70c37ace40077c8d6ec0b74b983178c192.zip |
libnvdimm, btt: add support for blk integrity
Support multiple block sizes (sector + metadata) using the blk integrity
framework. This registers a new integrity template that defines the
protection information tuple size based on the configured metadata size,
and simply acts as a passthrough for protection information generated by
another layer. The metadata is written to the storage as-is, and read back
with each sector.
Signed-off-by: Vishal Verma <vishal.l.verma@linux.intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/nvdimm/btt_devs.c')
-rw-r--r-- | drivers/nvdimm/btt_devs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/nvdimm/btt_devs.c b/drivers/nvdimm/btt_devs.c index 470fbdccd0ac..661aacedc140 100644 --- a/drivers/nvdimm/btt_devs.c +++ b/drivers/nvdimm/btt_devs.c @@ -103,7 +103,8 @@ struct nd_btt *to_nd_btt(struct device *dev) } EXPORT_SYMBOL(to_nd_btt); -static const unsigned long btt_lbasize_supported[] = { 512, 4096, 0 }; +static const unsigned long btt_lbasize_supported[] = { 512, 520, 528, + 4096, 4104, 4160, 4224, 0 }; static ssize_t sector_size_show(struct device *dev, struct device_attribute *attr, char *buf) |