diff options
author | Christof Schmitt <christof.schmitt@de.ibm.com> | 2009-11-24 16:53:57 +0100 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2009-12-04 12:02:00 -0600 |
commit | 0a55256d158c18e4821c248a295b7f8f4423660f (patch) | |
tree | c1edd634a07cbe980bbf5dbf1f657d386a6a049d /include/scsi | |
parent | 63e27fb80c2010678681cef7b528ab8af3624fe9 (diff) | |
download | linux-3.10-0a55256d158c18e4821c248a295b7f8f4423660f.tar.gz linux-3.10-0a55256d158c18e4821c248a295b7f8f4423660f.tar.bz2 linux-3.10-0a55256d158c18e4821c248a295b7f8f4423660f.zip |
[SCSI] libfc: Add target reset flag to FCP header file
While the target reset task management function has been deprecated in
newer specs, it is still in use by SCSI FC drivers and there is no
real replacement. Add the target reset flag to the FCP header file to
allow usage of this definition in SCSI FC drivers.
Reviewed-by: Swen Schillig <swen@vnet.ibm.com>
Signed-off-by: Christof Schmitt <christof.schmitt@de.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/fc/fc_fcp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/scsi/fc/fc_fcp.h b/include/scsi/fc/fc_fcp.h index 29ecb0b02b0..747e2c7d88d 100644 --- a/include/scsi/fc/fc_fcp.h +++ b/include/scsi/fc/fc_fcp.h @@ -83,6 +83,8 @@ struct fcp_cmnd32 { * fc_tm_flags - task management flags field. */ #define FCP_TMF_CLR_ACA 0x40 /* clear ACA condition */ +#define FCP_TMF_TGT_RESET 0x20 /* target reset task management, + deprecated as of FCP-3 */ #define FCP_TMF_LUN_RESET 0x10 /* logical unit reset task management */ #define FCP_TMF_CLR_TASK_SET 0x04 /* clear task set */ #define FCP_TMF_ABT_TASK_SET 0x02 /* abort task set */ |