diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2012-05-08 09:37:12 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-05-08 09:37:12 -0500 |
commit | e45bca682ca1b63cdfba9c8a6b164d1838a2eda4 (patch) | |
tree | c3661adbafcc6ff55b22a2138865a155e8d564c0 /configure | |
parent | 233ffa1653b49755e841efdccbd2ac63272ce0c8 (diff) | |
parent | 68bd348ade453821fd5378479e6718e69bf181f1 (diff) | |
download | qemu-e45bca682ca1b63cdfba9c8a6b164d1838a2eda4.tar.gz qemu-e45bca682ca1b63cdfba9c8a6b164d1838a2eda4.tar.bz2 qemu-e45bca682ca1b63cdfba9c8a6b164d1838a2eda4.zip |
Merge remote-tracking branch 'bonzini/scsi-next' into staging
* bonzini/scsi-next:
scsi: Add assertion for use-after-free errors
scsi: remove useless debug messages
scsi: set VALID bit to 0 in fixed format sense data
scsi: do not require a minimum allocation length for REQUEST SENSE
scsi: do not require a minimum allocation length for INQUIRY
scsi: parse 16-byte tape CDBs
scsi: do not report bogus overruns for commands in the 0x00-0x1F range
scsi-disk: add dpofua property
scsi: change "removable" field to host many features
scsi: Specify the xfer direction for UNMAP and ATA_PASSTHROUGH commands
scsi: fix WRITE SAME transfer length and direction
scsi: fix refcounting for reads
scsi: prevent data transfer overflow
ISCSI: Add support for thin-provisioning via discard/UNMAP and bigger LUNs
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2546,10 +2546,13 @@ fi ########################################## # Do we have libiscsi +# We check for iscsi_unmap_sync() to make sure we have a +# recent enough version of libiscsi. if test "$libiscsi" != "no" ; then cat > $TMPC << EOF +#include <stdio.h> #include <iscsi/iscsi.h> -int main(void) { iscsi_create_context(""); return 0; } +int main(void) { iscsi_unmap_sync(NULL,0,0,0,NULL,0); return 0; } EOF if compile_prog "-Werror" "-liscsi" ; then libiscsi="yes" |