diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-11 22:00:42 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-11 22:00:42 -0400 |
commit | 05c78081d2d8eaf04bf60946fcc53380febf3376 (patch) | |
tree | 0ba735378eb44380c916c075e4fe17d74f3889c5 /include/scsi | |
parent | 8e78b7dc93c580c050435b0f88991c26e02166bc (diff) | |
parent | ac64a2ce509104a746321a4f9646b6750cf281eb (diff) |
Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending
Pull SCSI target updates from Nicholas Bellinger:
"Here are the outstanding target-pending updates for v4.3-rc1.
Mostly bug-fixes and minor changes this round. The fallout from the
big v4.2-rc1 RCU conversion have (thus far) been minimal.
The highlights this round include:
- Move sense handling routines into scsi_common code (Sagi)
- Return ABORTED_COMMAND sense key for PI errors (Sagi)
- Add tpg_enabled_sendtargets attribute for disabled iscsi-target
discovery (David)
- Shrink target struct se_cmd by rearranging fields (Roland)
- Drop iSCSI use of mutex around max_cmd_sn increment (Roland)
- Replace iSCSI __kernel_sockaddr_storage with sockaddr_storage (Andy +
Chris)
- Honor fabric max_data_sg_nents I/O transfer limit (Arun + Himanshu +
nab)
- Fix EXTENDED_COPY >= v4.1 regression OOPsen (Alex + nab)"
* 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending: (37 commits)
target: use stringify.h instead of own definition
target/user: Fix UFLAG_UNKNOWN_OP handling
target: Remove no-op conditional
target/user: Remove unused variable
target: Fix max_cmd_sn increment w/o cmdsn mutex regressions
target: Attach EXTENDED_COPY local I/O descriptors to xcopy_pt_sess
target/qla2xxx: Honor max_data_sg_nents I/O transfer limit
target/iscsi: Replace __kernel_sockaddr_storage with sockaddr_storage
target/iscsi: Replace conn->login_ip with login_sockaddr
target/iscsi: Keep local_ip as the actual sockaddr
target/iscsi: Fix np_ip bracket issue by removing np_ip
target: Drop iSCSI use of mutex around max_cmd_sn increment
qla2xxx: Update tcm_qla2xxx module description to 24xx+
iscsi-target: Add tpg_enabled_sendtargets for disabled discovery
drivers: target: Drop unlikely before IS_ERR(_OR_NULL)
target: check DPO/FUA usage for COMPARE AND WRITE
target: Shrink struct se_cmd by rearranging fields
target: Remove cmd->se_ordered_id (unused except debug log lines)
target: add support for START_STOP_UNIT SCSI opcode
target: improve unsupported opcode message
...
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/scsi_common.h | 5 | ||||
-rw-r--r-- | include/scsi/scsi_eh.h | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/include/scsi/scsi_common.h b/include/scsi/scsi_common.h index 676b03b78e57..11571b2a831e 100644 --- a/include/scsi/scsi_common.h +++ b/include/scsi/scsi_common.h | |||
@@ -61,4 +61,9 @@ static inline bool scsi_sense_valid(const struct scsi_sense_hdr *sshdr) | |||
61 | extern bool scsi_normalize_sense(const u8 *sense_buffer, int sb_len, | 61 | extern bool scsi_normalize_sense(const u8 *sense_buffer, int sb_len, |
62 | struct scsi_sense_hdr *sshdr); | 62 | struct scsi_sense_hdr *sshdr); |
63 | 63 | ||
64 | extern void scsi_build_sense_buffer(int desc, u8 *buf, u8 key, u8 asc, u8 ascq); | ||
65 | int scsi_set_sense_information(u8 *buf, int buf_len, u64 info); | ||
66 | extern const u8 * scsi_sense_desc_find(const u8 * sense_buffer, int sb_len, | ||
67 | int desc_type); | ||
68 | |||
64 | #endif /* _SCSI_COMMON_H_ */ | 69 | #endif /* _SCSI_COMMON_H_ */ |
diff --git a/include/scsi/scsi_eh.h b/include/scsi/scsi_eh.h index 8d1d7fa67ec4..dbb8c640e26f 100644 --- a/include/scsi/scsi_eh.h +++ b/include/scsi/scsi_eh.h | |||
@@ -4,6 +4,7 @@ | |||
4 | #include <linux/scatterlist.h> | 4 | #include <linux/scatterlist.h> |
5 | 5 | ||
6 | #include <scsi/scsi_cmnd.h> | 6 | #include <scsi/scsi_cmnd.h> |
7 | #include <scsi/scsi_common.h> | ||
7 | struct scsi_device; | 8 | struct scsi_device; |
8 | struct Scsi_Host; | 9 | struct Scsi_Host; |
9 | 10 | ||
@@ -21,14 +22,9 @@ static inline bool scsi_sense_is_deferred(const struct scsi_sense_hdr *sshdr) | |||
21 | return ((sshdr->response_code >= 0x70) && (sshdr->response_code & 1)); | 22 | return ((sshdr->response_code >= 0x70) && (sshdr->response_code & 1)); |
22 | } | 23 | } |
23 | 24 | ||
24 | extern const u8 * scsi_sense_desc_find(const u8 * sense_buffer, int sb_len, | ||
25 | int desc_type); | ||
26 | |||
27 | extern int scsi_get_sense_info_fld(const u8 * sense_buffer, int sb_len, | 25 | extern int scsi_get_sense_info_fld(const u8 * sense_buffer, int sb_len, |
28 | u64 * info_out); | 26 | u64 * info_out); |
29 | 27 | ||
30 | extern void scsi_build_sense_buffer(int desc, u8 *buf, u8 key, u8 asc, u8 ascq); | ||
31 | |||
32 | extern int scsi_ioctl_reset(struct scsi_device *, int __user *); | 28 | extern int scsi_ioctl_reset(struct scsi_device *, int __user *); |
33 | 29 | ||
34 | struct scsi_eh_save { | 30 | struct scsi_eh_save { |