Remove stray semicolons from the iSCSI code.
MFC after: 1 month Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
4f42bf9497
commit
c5805a3deb
@ -5694,7 +5694,7 @@ ctl_write_same(struct ctl_scsiio *ctsio)
|
||||
*/
|
||||
if ((byte2 & SWS_NDOB) == 0 &&
|
||||
(ctsio->io_hdr.flags & CTL_FLAG_ALLOCATED) == 0) {
|
||||
ctsio->kern_data_ptr = malloc(len, M_CTL, M_WAITOK);;
|
||||
ctsio->kern_data_ptr = malloc(len, M_CTL, M_WAITOK);
|
||||
ctsio->kern_data_len = len;
|
||||
ctsio->kern_total_len = len;
|
||||
ctsio->kern_data_resid = 0;
|
||||
@ -5742,7 +5742,7 @@ ctl_unmap(struct ctl_scsiio *ctsio)
|
||||
* malloc it and tell the caller the data buffer is here.
|
||||
*/
|
||||
if ((ctsio->io_hdr.flags & CTL_FLAG_ALLOCATED) == 0) {
|
||||
ctsio->kern_data_ptr = malloc(len, M_CTL, M_WAITOK);;
|
||||
ctsio->kern_data_ptr = malloc(len, M_CTL, M_WAITOK);
|
||||
ctsio->kern_data_len = len;
|
||||
ctsio->kern_total_len = len;
|
||||
ctsio->kern_data_resid = 0;
|
||||
|
@ -119,7 +119,7 @@ struct iscsi_session {
|
||||
char is_reason[ISCSI_REASON_LEN];
|
||||
|
||||
#ifdef ICL_KERNEL_PROXY
|
||||
struct cv is_login_cv;;
|
||||
struct cv is_login_cv;
|
||||
struct icl_pdu *is_login_pdu;
|
||||
#endif
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user