diff options
author | Jayamohan Kallickal <[email protected]> | 2010-07-22 04:28:13 +0530 |
---|---|---|
committer | James Bottomley <[email protected]> | 2010-07-28 09:05:38 -0500 |
commit | b38c1e8bd19340e1a5b712287a8d61da26225d5b (patch) | |
tree | 3aaed2ed1fb7ef3bedd2a3be5ffe796161ab1599 | |
parent | 3cbb7a74a76e45f5e410367259844e8266fba6ec (diff) |
[SCSI] be2iscsi: The extended shift must be 16
Signed-off-by: Jayamohan Kallickal <[email protected]>
Reviewed-by: Mike Christie <[email protected]>
Signed-off-by: James Bottomley <[email protected]>
-rw-r--r-- | drivers/scsi/be2iscsi/be_cmds.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/be2iscsi/be_cmds.h b/drivers/scsi/be2iscsi/be_cmds.h index 0df19cb58a39..40641d0845f4 100644 --- a/drivers/scsi/be2iscsi/be_cmds.h +++ b/drivers/scsi/be2iscsi/be_cmds.h @@ -56,7 +56,7 @@ struct be_mcc_wrb { #define CQE_STATUS_COMPL_MASK 0xFFFF #define CQE_STATUS_COMPL_SHIFT 0 /* bits 0 - 15 */ #define CQE_STATUS_EXTD_MASK 0xFFFF -#define CQE_STATUS_EXTD_SHIFT 0 /* bits 0 - 15 */ +#define CQE_STATUS_EXTD_SHIFT 16 /* bits 0 - 15 */ struct be_mcc_compl { u32 status; /* dword 0 */ |