diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-27 16:21:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-27 16:21:40 -0400 |
commit | 91d41fdf31f74e6e2e5f3cb018eca4200e36e202 (patch) | |
tree | 81ef11f06bd8047031a2d93706dc263fa1bacd56 /drivers/scsi/be2iscsi | |
parent | c1095c6da518b0b64e724f629051fa67655cd8d9 (diff) | |
parent | 277c5f27a2c86a9a733c0ec0f6a9b1032dfa3e15 (diff) |
Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending
* 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending:
target: Convert to DIV_ROUND_UP_SECTOR_T usage for sectors / dev_max_sectors
kernel.h: Add DIV_ROUND_UP_ULL and DIV_ROUND_UP_SECTOR_T macro usage
iscsi-target: Add iSCSI fabric support for target v4.1
iscsi: Add Serial Number Arithmetic LT and GT into iscsi_proto.h
iscsi: Use struct scsi_lun in iscsi structs instead of u8[8]
iscsi: Resolve iscsi_proto.h naming conflicts with drivers/target/iscsi
Diffstat (limited to 'drivers/scsi/be2iscsi')
-rw-r--r-- | drivers/scsi/be2iscsi/be_main.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/be2iscsi/be_main.h b/drivers/scsi/be2iscsi/be_main.h index 081c171a1ed6..5ce5170254ca 100644 --- a/drivers/scsi/be2iscsi/be_main.h +++ b/drivers/scsi/be2iscsi/be_main.h | |||
@@ -397,7 +397,7 @@ struct amap_pdu_data_out { | |||
397 | }; | 397 | }; |
398 | 398 | ||
399 | struct be_cmd_bhs { | 399 | struct be_cmd_bhs { |
400 | struct iscsi_cmd iscsi_hdr; | 400 | struct iscsi_scsi_req iscsi_hdr; |
401 | unsigned char pad1[16]; | 401 | unsigned char pad1[16]; |
402 | struct pdu_data_out iscsi_data_pdu; | 402 | struct pdu_data_out iscsi_data_pdu; |
403 | unsigned char pad2[BE_SENSE_INFO_SIZE - | 403 | unsigned char pad2[BE_SENSE_INFO_SIZE - |
@@ -428,7 +428,7 @@ struct be_nonio_bhs { | |||
428 | }; | 428 | }; |
429 | 429 | ||
430 | struct be_status_bhs { | 430 | struct be_status_bhs { |
431 | struct iscsi_cmd iscsi_hdr; | 431 | struct iscsi_scsi_req iscsi_hdr; |
432 | unsigned char pad1[16]; | 432 | unsigned char pad1[16]; |
433 | /** | 433 | /** |
434 | * The plus 2 below is to hold the sense info length that gets | 434 | * The plus 2 below is to hold the sense info length that gets |