libiscsi icon indicating copy to clipboard operation
libiscsi copied to clipboard

iscsi client library and utilities

Results 43 libiscsi issues
Sort by recently updated
recently updated
newest added

I look into iSCSI.iSCSIResiduals.WriteVerify10Residuals test with Linux TCM target. And there is we have the following errors: ``` 1. test_writeverify10_residuals.c:134 - CU_ASSERT_EQUAL(task->status,SCSI_STATUS_GOOD) 2. test_writeverify10_residuals.c:227 - CU_ASSERT_EQUAL(task->status,SCSI_STATUS_GOOD) 3. test_writeverify10_residuals.c:281 - CU_ASSERT_EQUAL(task->status,SCSI_STATUS_GOOD)...

Building against master... The doc says: [[ The src directory contains a handful of useful iSCSI utilities such as logging in to and enumerating all targets on a portal and...

According to https://tools.ietf.org/html/rfc3720#section-5.3.5 and https://tools.ietf.org/html/rfc3720#section-9.1.1 there should be some reuse of an ISID. The reuse is needed for situations like a timeout where libiscsi closes the connection and needs to...

I think that it would be good to flush currently committed changes and make new release :) In git repo is already commited 1lmost 1k patches.

Upstream open-iscsi (https://github.com/open-iscsi/open-iscsi/pull/170) and LIO (queued at https://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git/commit/?h=5.5/scsi-queue&id=a572d24af4d16e70743feb0b4decb17aaae7ce43) now have support for SHA1, SHA256 and SHA3-256 CHAP authentication. The new algorithm identifiers have been officially assigned via https://www.iana.org/assignments/ppp-numbers/ppp-numbers.xml#ppp-numbers-9 . It'd...

Discovered this while running iSCSI.iSCSITMF AbortTaskSimpleAsync test case. For Task Management command iser_pdu->iscsi_pdu.scsi_cbdata is not set. When test case tries to send Task Management command via common API iser_send_command() -...

test case checking for getting same inquiry data from SCSI server is failing for iSCSI url path. In case if I pass device directly with same setup test case is...

Immediately after checking that `iscsi->fd` is valid, `iscsi_tcp_service` will check if there is a pending reconnect: ``` if (iscsi->pending_reconnect) { if (time(NULL) >= iscsi->next_reconnect) { return iscsi_reconnect(iscsi); } else {...

I'm trying to test Linux LIO target ALUA support, and have no idea where to start given that my favourite iSCSI test tool (libiscsi) doesn't do anything ALUA related. Given...

in iser.c, line 333: if (pdu->indata.size smalloc_size) { it should be if (pdu->indata.size >= iscsi->smalloc_size) {