diff options
Diffstat (limited to 'drivers/scsi/vmw_pvscsi.h')
| -rw-r--r-- | drivers/scsi/vmw_pvscsi.h | 19 | 
1 files changed, 15 insertions, 4 deletions
diff --git a/drivers/scsi/vmw_pvscsi.h b/drivers/scsi/vmw_pvscsi.h index 3546e8662e3..ce458885127 100644 --- a/drivers/scsi/vmw_pvscsi.h +++ b/drivers/scsi/vmw_pvscsi.h @@ -1,7 +1,7 @@  /*   * VMware PVSCSI header file   * - * Copyright (C) 2008-2009, VMware, Inc. All Rights Reserved. + * Copyright (C) 2008-2014, VMware, Inc. All Rights Reserved.   *   * This program is free software; you can redistribute it and/or modify it   * under the terms of the GNU General Public License as published by the @@ -26,7 +26,7 @@  #include <linux/types.h> -#define PVSCSI_DRIVER_VERSION_STRING   "1.0.2.0-k" +#define PVSCSI_DRIVER_VERSION_STRING   "1.0.5.0-k"  #define PVSCSI_MAX_NUM_SG_ENTRIES_PER_SEGMENT 128 @@ -117,8 +117,9 @@ enum PVSCSICommands {  	PVSCSI_CMD_CONFIG            = 7,  	PVSCSI_CMD_SETUP_MSG_RING    = 8,  	PVSCSI_CMD_DEVICE_UNPLUG     = 9, +	PVSCSI_CMD_SETUP_REQCALLTHRESHOLD     = 10, -	PVSCSI_CMD_LAST              = 10  /* has to be last */ +	PVSCSI_CMD_LAST              = 11  /* has to be last */  };  /* @@ -141,6 +142,14 @@ struct PVSCSICmdDescConfigCmd {  	u32 _pad;  } __packed; +/* + * Command descriptor for PVSCSI_CMD_SETUP_REQCALLTHRESHOLD -- + */ + +struct PVSCSICmdDescSetupReqCall { +	u32 enable; +} __packed; +  enum PVSCSIConfigPageType {  	PVSCSI_CONFIG_PAGE_CONTROLLER = 0x1958,  	PVSCSI_CONFIG_PAGE_PHY        = 0x1959, @@ -261,7 +270,9 @@ struct PVSCSIRingsState {  	u32	cmpConsIdx;  	u32	cmpNumEntriesLog2; -	u8	_pad[104]; +	u32	reqCallThreshold; + +	u8	_pad[100];  	u32	msgProdIdx;  	u32	msgConsIdx;  | 
