diff options
author | Jamie Pocas <jamie.pocas@emc.com> | 2015-11-29 14:44:57 -0800 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2016-01-06 13:39:55 -0800 |
commit | e6f41633cb79b55ead84b023c02035322c7827e7 (patch) | |
tree | 342f55892f82d100f496c8ed73f3570c8d956842 /drivers/target/target_core_device.c | |
parent | ef8f46b549c2e425513ed568f18c827a37c08727 (diff) | |
download | linux-stable-e6f41633cb79b55ead84b023c02035322c7827e7.tar.gz linux-stable-e6f41633cb79b55ead84b023c02035322c7827e7.tar.bz2 linux-stable-e6f41633cb79b55ead84b023c02035322c7827e7.zip |
target/sbc: Add LBPRZ attribute + control CDB emulation
This change sets the LBPRZ flag in EVPD page b2h and READ CAPACITY (16)
based on a new unmap_zeroes_data device attribute. This flag is set
automatically for iblock based on underlying block device queue's
discard_zeroes_data flag.
Signed-off-by: Jamie Pocas <jamie.pocas@emc.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target/target_core_device.c')
-rw-r--r-- | drivers/target/target_core_device.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/target/target_core_device.c b/drivers/target/target_core_device.c index 88ea4e4f124b..cacd97a8cbd0 100644 --- a/drivers/target/target_core_device.c +++ b/drivers/target/target_core_device.c @@ -813,6 +813,8 @@ struct se_device *target_alloc_device(struct se_hba *hba, const char *name) dev->dev_attrib.unmap_granularity = DA_UNMAP_GRANULARITY_DEFAULT; dev->dev_attrib.unmap_granularity_alignment = DA_UNMAP_GRANULARITY_ALIGNMENT_DEFAULT; + dev->dev_attrib.unmap_zeroes_data = + DA_UNMAP_ZEROES_DATA_DEFAULT; dev->dev_attrib.max_write_same_len = DA_MAX_WRITE_SAME_LEN; xcopy_lun = &dev->xcopy_lun; |