target: fix truncation of mode data, support zero allocation length
authorPaolo Bonzini <pbonzini@redhat.com>
Fri, 7 Sep 2012 15:30:39 +0000 (17:30 +0200)
committerNicholas Bellinger <nab@linux-iscsi.org>
Tue, 18 Sep 2012 00:13:37 +0000 (17:13 -0700)
commit7a3f369ce31694017996524a1cdb08208a839077
tree0c191ecc298ae9cf3d0f29a446f6c43e9b9e630c
parentffe7b0e9326d9c68f5688bef691dd49f1e0d3651
target: fix truncation of mode data, support zero allocation length

The offset was not bumped back to the full size after writing the
header of the MODE SENSE response, so the last 1 or 2 bytes were
not copied.

On top of this, support zero-length requests by checking for the
return value of transport_kmap_data_sg.

Testcase: sg_raw -r20 /dev/sdb 5a 00 0a 00 00 00 00 00 14 00
    last byte should be 0x1e
    it is 0x00 without the patch
    it is correct with the patch

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Cc: stable@vger.kernel.org
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
drivers/target/target_core_spc.c