License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 15:07:57 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2010-04-01 20:41:40 +09:00
|
|
|
#undef TRACE_SYSTEM
|
|
|
|
#define TRACE_SYSTEM scsi
|
|
|
|
|
|
|
|
#if !defined(_TRACE_SCSI_H) || defined(TRACE_HEADER_MULTI_READ)
|
|
|
|
#define _TRACE_SCSI_H
|
|
|
|
|
|
|
|
#include <scsi/scsi_cmnd.h>
|
|
|
|
#include <scsi/scsi_host.h>
|
|
|
|
#include <linux/tracepoint.h>
|
|
|
|
#include <linux/trace_seq.h>
|
|
|
|
|
|
|
|
#define scsi_opcode_name(opcode) { opcode, #opcode }
|
|
|
|
#define show_opcode_name(val) \
|
|
|
|
__print_symbolic(val, \
|
|
|
|
scsi_opcode_name(TEST_UNIT_READY), \
|
|
|
|
scsi_opcode_name(REZERO_UNIT), \
|
|
|
|
scsi_opcode_name(REQUEST_SENSE), \
|
|
|
|
scsi_opcode_name(FORMAT_UNIT), \
|
|
|
|
scsi_opcode_name(READ_BLOCK_LIMITS), \
|
|
|
|
scsi_opcode_name(REASSIGN_BLOCKS), \
|
|
|
|
scsi_opcode_name(INITIALIZE_ELEMENT_STATUS), \
|
|
|
|
scsi_opcode_name(READ_6), \
|
|
|
|
scsi_opcode_name(WRITE_6), \
|
|
|
|
scsi_opcode_name(SEEK_6), \
|
|
|
|
scsi_opcode_name(READ_REVERSE), \
|
|
|
|
scsi_opcode_name(WRITE_FILEMARKS), \
|
|
|
|
scsi_opcode_name(SPACE), \
|
|
|
|
scsi_opcode_name(INQUIRY), \
|
|
|
|
scsi_opcode_name(RECOVER_BUFFERED_DATA), \
|
|
|
|
scsi_opcode_name(MODE_SELECT), \
|
|
|
|
scsi_opcode_name(RESERVE), \
|
|
|
|
scsi_opcode_name(RELEASE), \
|
|
|
|
scsi_opcode_name(COPY), \
|
|
|
|
scsi_opcode_name(ERASE), \
|
|
|
|
scsi_opcode_name(MODE_SENSE), \
|
|
|
|
scsi_opcode_name(START_STOP), \
|
|
|
|
scsi_opcode_name(RECEIVE_DIAGNOSTIC), \
|
|
|
|
scsi_opcode_name(SEND_DIAGNOSTIC), \
|
|
|
|
scsi_opcode_name(ALLOW_MEDIUM_REMOVAL), \
|
|
|
|
scsi_opcode_name(SET_WINDOW), \
|
|
|
|
scsi_opcode_name(READ_CAPACITY), \
|
|
|
|
scsi_opcode_name(READ_10), \
|
|
|
|
scsi_opcode_name(WRITE_10), \
|
|
|
|
scsi_opcode_name(SEEK_10), \
|
|
|
|
scsi_opcode_name(POSITION_TO_ELEMENT), \
|
|
|
|
scsi_opcode_name(WRITE_VERIFY), \
|
|
|
|
scsi_opcode_name(VERIFY), \
|
|
|
|
scsi_opcode_name(SEARCH_HIGH), \
|
|
|
|
scsi_opcode_name(SEARCH_EQUAL), \
|
|
|
|
scsi_opcode_name(SEARCH_LOW), \
|
|
|
|
scsi_opcode_name(SET_LIMITS), \
|
|
|
|
scsi_opcode_name(PRE_FETCH), \
|
|
|
|
scsi_opcode_name(READ_POSITION), \
|
|
|
|
scsi_opcode_name(SYNCHRONIZE_CACHE), \
|
|
|
|
scsi_opcode_name(LOCK_UNLOCK_CACHE), \
|
|
|
|
scsi_opcode_name(READ_DEFECT_DATA), \
|
|
|
|
scsi_opcode_name(MEDIUM_SCAN), \
|
|
|
|
scsi_opcode_name(COMPARE), \
|
|
|
|
scsi_opcode_name(COPY_VERIFY), \
|
|
|
|
scsi_opcode_name(WRITE_BUFFER), \
|
|
|
|
scsi_opcode_name(READ_BUFFER), \
|
|
|
|
scsi_opcode_name(UPDATE_BLOCK), \
|
|
|
|
scsi_opcode_name(READ_LONG), \
|
|
|
|
scsi_opcode_name(WRITE_LONG), \
|
|
|
|
scsi_opcode_name(CHANGE_DEFINITION), \
|
|
|
|
scsi_opcode_name(WRITE_SAME), \
|
|
|
|
scsi_opcode_name(UNMAP), \
|
|
|
|
scsi_opcode_name(READ_TOC), \
|
|
|
|
scsi_opcode_name(LOG_SELECT), \
|
|
|
|
scsi_opcode_name(LOG_SENSE), \
|
|
|
|
scsi_opcode_name(XDWRITEREAD_10), \
|
|
|
|
scsi_opcode_name(MODE_SELECT_10), \
|
|
|
|
scsi_opcode_name(RESERVE_10), \
|
|
|
|
scsi_opcode_name(RELEASE_10), \
|
|
|
|
scsi_opcode_name(MODE_SENSE_10), \
|
|
|
|
scsi_opcode_name(PERSISTENT_RESERVE_IN), \
|
|
|
|
scsi_opcode_name(PERSISTENT_RESERVE_OUT), \
|
|
|
|
scsi_opcode_name(VARIABLE_LENGTH_CMD), \
|
|
|
|
scsi_opcode_name(REPORT_LUNS), \
|
|
|
|
scsi_opcode_name(MAINTENANCE_IN), \
|
|
|
|
scsi_opcode_name(MAINTENANCE_OUT), \
|
|
|
|
scsi_opcode_name(MOVE_MEDIUM), \
|
|
|
|
scsi_opcode_name(EXCHANGE_MEDIUM), \
|
|
|
|
scsi_opcode_name(READ_12), \
|
|
|
|
scsi_opcode_name(WRITE_12), \
|
|
|
|
scsi_opcode_name(WRITE_VERIFY_12), \
|
|
|
|
scsi_opcode_name(SEARCH_HIGH_12), \
|
|
|
|
scsi_opcode_name(SEARCH_EQUAL_12), \
|
|
|
|
scsi_opcode_name(SEARCH_LOW_12), \
|
|
|
|
scsi_opcode_name(READ_ELEMENT_STATUS), \
|
|
|
|
scsi_opcode_name(SEND_VOLUME_TAG), \
|
|
|
|
scsi_opcode_name(WRITE_LONG_2), \
|
|
|
|
scsi_opcode_name(READ_16), \
|
|
|
|
scsi_opcode_name(WRITE_16), \
|
|
|
|
scsi_opcode_name(VERIFY_16), \
|
|
|
|
scsi_opcode_name(WRITE_SAME_16), \
|
2016-03-24 17:23:56 +01:00
|
|
|
scsi_opcode_name(ZBC_OUT), \
|
|
|
|
scsi_opcode_name(ZBC_IN), \
|
2014-11-17 14:25:19 +01:00
|
|
|
scsi_opcode_name(SERVICE_ACTION_IN_16), \
|
2010-04-01 20:41:40 +09:00
|
|
|
scsi_opcode_name(READ_32), \
|
|
|
|
scsi_opcode_name(WRITE_32), \
|
|
|
|
scsi_opcode_name(WRITE_SAME_32), \
|
|
|
|
scsi_opcode_name(ATA_16), \
|
scsi: sd: Atomic write support
Support is divided into two main areas:
- reading VPD pages and setting sdev request_queue limits
- support WRITE ATOMIC (16) command and tracing
The relevant block limits VPD page need to be read to allow the block layer
request_queue atomic write limits to be set. These VPD page limits are
described in sbc4r22 section 6.6.4 - Block limits VPD page.
There are five limits of interest:
- MAXIMUM ATOMIC TRANSFER LENGTH
- ATOMIC ALIGNMENT
- ATOMIC TRANSFER LENGTH GRANULARITY
- MAXIMUM ATOMIC TRANSFER LENGTH WITH BOUNDARY
- MAXIMUM ATOMIC BOUNDARY SIZE
MAXIMUM ATOMIC TRANSFER LENGTH is the maximum length for a WRITE ATOMIC
(16) command. It will not be greater than the device MAXIMUM TRANSFER
LENGTH.
ATOMIC ALIGNMENT and ATOMIC TRANSFER LENGTH GRANULARITY are the minimum
alignment and length values for an atomic write in terms of logical blocks.
Unlike NVMe, SCSI does not specify an LBA space boundary, but does specify
a per-IO boundary granularity. The maximum boundary size is specified in
MAXIMUM ATOMIC BOUNDARY SIZE. When used, this boundary value is set in the
WRITE ATOMIC (16) ATOMIC BOUNDARY field - layout for the WRITE_ATOMIC_16
command can be found in sbc4r22 section 5.48. This boundary value is the
granularity size at which the device may atomically write the data. A value
of zero in WRITE ATOMIC (16) ATOMIC BOUNDARY field means that all data must
be atomically written together.
MAXIMUM ATOMIC TRANSFER LENGTH WITH BOUNDARY is the maximum atomic write
length if a non-zero boundary value is set.
For atomic write support, the WRITE ATOMIC (16) boundary is not of much
interest, as the block layer expects each request submitted to be executed
atomically. However, the SCSI spec does leave itself open to a quirky
scenario where MAXIMUM ATOMIC TRANSFER LENGTH is zero, yet MAXIMUM ATOMIC
TRANSFER LENGTH WITH BOUNDARY and MAXIMUM ATOMIC BOUNDARY SIZE are both
non-zero. This case will be supported.
To set the block layer request_queue atomic write capabilities, sanitize
the VPD page limits and set limits as follows:
- atomic_write_unit_min is derived from granularity and alignment values.
If no granularity value is not set, use physical block size
- atomic_write_unit_max is derived from MAXIMUM ATOMIC TRANSFER LENGTH. In
the scenario where MAXIMUM ATOMIC TRANSFER LENGTH is zero and boundary
limits are non-zero, use MAXIMUM ATOMIC BOUNDARY SIZE for
atomic_write_unit_max. New flag scsi_disk.use_atomic_write_boundary is
set for this scenario.
- atomic_write_boundary_bytes is set to zero always
SCSI also supports a WRITE ATOMIC (32) command, which is for type 2
protection enabled. This is not going to be supported now, so check for
T10_PI_TYPE2_PROTECTION when setting any request_queue limits.
To handle an atomic write request, add support for WRITE ATOMIC (16)
command in handler sd_setup_atomic_cmnd(). Flag use_atomic_write_boundary
is checked here for encoding ATOMIC BOUNDARY field.
Trace info is also added for WRITE_ATOMIC_16 command.
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: John Garry <john.g.garry@oracle.com>
Acked-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Link: https://lore.kernel.org/r/20240620125359.2684798-9-john.g.garry@oracle.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
2024-06-20 12:53:57 +00:00
|
|
|
scsi_opcode_name(WRITE_ATOMIC_16), \
|
2010-04-01 20:41:40 +09:00
|
|
|
scsi_opcode_name(ATA_12))
|
|
|
|
|
|
|
|
#define scsi_hostbyte_name(result) { result, #result }
|
|
|
|
#define show_hostbyte_name(val) \
|
|
|
|
__print_symbolic(val, \
|
|
|
|
scsi_hostbyte_name(DID_OK), \
|
|
|
|
scsi_hostbyte_name(DID_NO_CONNECT), \
|
|
|
|
scsi_hostbyte_name(DID_BUS_BUSY), \
|
|
|
|
scsi_hostbyte_name(DID_TIME_OUT), \
|
|
|
|
scsi_hostbyte_name(DID_BAD_TARGET), \
|
|
|
|
scsi_hostbyte_name(DID_ABORT), \
|
|
|
|
scsi_hostbyte_name(DID_PARITY), \
|
|
|
|
scsi_hostbyte_name(DID_ERROR), \
|
|
|
|
scsi_hostbyte_name(DID_RESET), \
|
|
|
|
scsi_hostbyte_name(DID_BAD_INTR), \
|
|
|
|
scsi_hostbyte_name(DID_PASSTHROUGH), \
|
|
|
|
scsi_hostbyte_name(DID_SOFT_ERROR), \
|
|
|
|
scsi_hostbyte_name(DID_IMM_RETRY), \
|
|
|
|
scsi_hostbyte_name(DID_REQUEUE), \
|
|
|
|
scsi_hostbyte_name(DID_TRANSPORT_DISRUPTED), \
|
|
|
|
scsi_hostbyte_name(DID_TRANSPORT_FAILFAST))
|
|
|
|
|
|
|
|
#define scsi_statusbyte_name(result) { result, #result }
|
|
|
|
#define show_statusbyte_name(val) \
|
|
|
|
__print_symbolic(val, \
|
|
|
|
scsi_statusbyte_name(SAM_STAT_GOOD), \
|
|
|
|
scsi_statusbyte_name(SAM_STAT_CHECK_CONDITION), \
|
|
|
|
scsi_statusbyte_name(SAM_STAT_CONDITION_MET), \
|
|
|
|
scsi_statusbyte_name(SAM_STAT_BUSY), \
|
|
|
|
scsi_statusbyte_name(SAM_STAT_INTERMEDIATE), \
|
|
|
|
scsi_statusbyte_name(SAM_STAT_INTERMEDIATE_CONDITION_MET), \
|
|
|
|
scsi_statusbyte_name(SAM_STAT_RESERVATION_CONFLICT), \
|
|
|
|
scsi_statusbyte_name(SAM_STAT_COMMAND_TERMINATED), \
|
|
|
|
scsi_statusbyte_name(SAM_STAT_TASK_SET_FULL), \
|
|
|
|
scsi_statusbyte_name(SAM_STAT_ACA_ACTIVE), \
|
|
|
|
scsi_statusbyte_name(SAM_STAT_TASK_ABORTED))
|
|
|
|
|
2011-03-08 02:03:59 -05:00
|
|
|
#define scsi_prot_op_name(result) { result, #result }
|
|
|
|
#define show_prot_op_name(val) \
|
|
|
|
__print_symbolic(val, \
|
|
|
|
scsi_prot_op_name(SCSI_PROT_NORMAL), \
|
|
|
|
scsi_prot_op_name(SCSI_PROT_READ_INSERT), \
|
|
|
|
scsi_prot_op_name(SCSI_PROT_WRITE_STRIP), \
|
|
|
|
scsi_prot_op_name(SCSI_PROT_READ_STRIP), \
|
|
|
|
scsi_prot_op_name(SCSI_PROT_WRITE_INSERT), \
|
|
|
|
scsi_prot_op_name(SCSI_PROT_READ_PASS), \
|
|
|
|
scsi_prot_op_name(SCSI_PROT_WRITE_PASS))
|
|
|
|
|
2010-04-01 20:41:40 +09:00
|
|
|
const char *scsi_trace_parse_cdb(struct trace_seq*, unsigned char*, int);
|
|
|
|
#define __parse_cdb(cdb, len) scsi_trace_parse_cdb(p, cdb, len)
|
|
|
|
|
|
|
|
TRACE_EVENT(scsi_dispatch_cmd_start,
|
|
|
|
|
|
|
|
TP_PROTO(struct scsi_cmnd *cmd),
|
|
|
|
|
|
|
|
TP_ARGS(cmd),
|
|
|
|
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field( unsigned int, host_no )
|
|
|
|
__field( unsigned int, channel )
|
|
|
|
__field( unsigned int, id )
|
|
|
|
__field( unsigned int, lun )
|
|
|
|
__field( unsigned int, opcode )
|
|
|
|
__field( unsigned int, cmd_len )
|
2022-06-21 18:11:25 +00:00
|
|
|
__field( int, driver_tag)
|
|
|
|
__field( int, scheduler_tag)
|
2010-03-23 01:16:57 -04:00
|
|
|
__field( unsigned int, data_sglen )
|
|
|
|
__field( unsigned int, prot_sglen )
|
2011-03-08 02:03:59 -05:00
|
|
|
__field( unsigned char, prot_op )
|
2010-04-01 20:41:40 +09:00
|
|
|
__dynamic_array(unsigned char, cmnd, cmd->cmd_len)
|
|
|
|
),
|
|
|
|
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->host_no = cmd->device->host->host_no;
|
|
|
|
__entry->channel = cmd->device->channel;
|
|
|
|
__entry->id = cmd->device->id;
|
|
|
|
__entry->lun = cmd->device->lun;
|
|
|
|
__entry->opcode = cmd->cmnd[0];
|
|
|
|
__entry->cmd_len = cmd->cmd_len;
|
2022-06-21 18:11:25 +00:00
|
|
|
__entry->driver_tag = scsi_cmd_to_rq(cmd)->tag;
|
|
|
|
__entry->scheduler_tag = scsi_cmd_to_rq(cmd)->internal_tag;
|
2010-03-23 01:16:57 -04:00
|
|
|
__entry->data_sglen = scsi_sg_count(cmd);
|
|
|
|
__entry->prot_sglen = scsi_prot_sg_count(cmd);
|
2011-03-08 02:03:59 -05:00
|
|
|
__entry->prot_op = scsi_get_prot_op(cmd);
|
2010-04-01 20:41:40 +09:00
|
|
|
memcpy(__get_dynamic_array(cmnd), cmd->cmnd, cmd->cmd_len);
|
|
|
|
),
|
|
|
|
|
2010-03-23 01:16:57 -04:00
|
|
|
TP_printk("host_no=%u channel=%u id=%u lun=%u data_sgl=%u prot_sgl=%u" \
|
2022-06-21 18:11:25 +00:00
|
|
|
" prot_op=%s driver_tag=%d scheduler_tag=%d cmnd=(%s %s raw=%s)",
|
2010-04-01 20:41:40 +09:00
|
|
|
__entry->host_no, __entry->channel, __entry->id,
|
2010-03-23 01:16:57 -04:00
|
|
|
__entry->lun, __entry->data_sglen, __entry->prot_sglen,
|
2022-06-21 18:11:25 +00:00
|
|
|
show_prot_op_name(__entry->prot_op), __entry->driver_tag,
|
|
|
|
__entry->scheduler_tag, show_opcode_name(__entry->opcode),
|
2010-04-01 20:41:40 +09:00
|
|
|
__parse_cdb(__get_dynamic_array(cmnd), __entry->cmd_len),
|
|
|
|
__print_hex(__get_dynamic_array(cmnd), __entry->cmd_len))
|
|
|
|
);
|
|
|
|
|
|
|
|
TRACE_EVENT(scsi_dispatch_cmd_error,
|
|
|
|
|
|
|
|
TP_PROTO(struct scsi_cmnd *cmd, int rtn),
|
|
|
|
|
|
|
|
TP_ARGS(cmd, rtn),
|
|
|
|
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field( unsigned int, host_no )
|
|
|
|
__field( unsigned int, channel )
|
|
|
|
__field( unsigned int, id )
|
|
|
|
__field( unsigned int, lun )
|
|
|
|
__field( int, rtn )
|
|
|
|
__field( unsigned int, opcode )
|
|
|
|
__field( unsigned int, cmd_len )
|
2022-06-21 18:11:25 +00:00
|
|
|
__field( int, driver_tag)
|
|
|
|
__field( int, scheduler_tag)
|
2010-03-23 01:16:57 -04:00
|
|
|
__field( unsigned int, data_sglen )
|
|
|
|
__field( unsigned int, prot_sglen )
|
2011-03-08 02:03:59 -05:00
|
|
|
__field( unsigned char, prot_op )
|
2010-04-01 20:41:40 +09:00
|
|
|
__dynamic_array(unsigned char, cmnd, cmd->cmd_len)
|
|
|
|
),
|
|
|
|
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->host_no = cmd->device->host->host_no;
|
|
|
|
__entry->channel = cmd->device->channel;
|
|
|
|
__entry->id = cmd->device->id;
|
|
|
|
__entry->lun = cmd->device->lun;
|
|
|
|
__entry->rtn = rtn;
|
|
|
|
__entry->opcode = cmd->cmnd[0];
|
|
|
|
__entry->cmd_len = cmd->cmd_len;
|
2022-06-21 18:11:25 +00:00
|
|
|
__entry->driver_tag = scsi_cmd_to_rq(cmd)->tag;
|
|
|
|
__entry->scheduler_tag = scsi_cmd_to_rq(cmd)->internal_tag;
|
2010-03-23 01:16:57 -04:00
|
|
|
__entry->data_sglen = scsi_sg_count(cmd);
|
|
|
|
__entry->prot_sglen = scsi_prot_sg_count(cmd);
|
2011-03-08 02:03:59 -05:00
|
|
|
__entry->prot_op = scsi_get_prot_op(cmd);
|
2010-04-01 20:41:40 +09:00
|
|
|
memcpy(__get_dynamic_array(cmnd), cmd->cmnd, cmd->cmd_len);
|
|
|
|
),
|
|
|
|
|
2010-03-23 01:16:57 -04:00
|
|
|
TP_printk("host_no=%u channel=%u id=%u lun=%u data_sgl=%u prot_sgl=%u" \
|
2022-06-21 18:11:25 +00:00
|
|
|
" prot_op=%s driver_tag=%d scheduler_tag=%d cmnd=(%s %s raw=%s)" \
|
|
|
|
" rtn=%d",
|
2010-04-01 20:41:40 +09:00
|
|
|
__entry->host_no, __entry->channel, __entry->id,
|
2010-03-23 01:16:57 -04:00
|
|
|
__entry->lun, __entry->data_sglen, __entry->prot_sglen,
|
2022-06-21 18:11:25 +00:00
|
|
|
show_prot_op_name(__entry->prot_op), __entry->driver_tag,
|
|
|
|
__entry->scheduler_tag, show_opcode_name(__entry->opcode),
|
2010-04-01 20:41:40 +09:00
|
|
|
__parse_cdb(__get_dynamic_array(cmnd), __entry->cmd_len),
|
|
|
|
__print_hex(__get_dynamic_array(cmnd), __entry->cmd_len),
|
|
|
|
__entry->rtn)
|
|
|
|
);
|
|
|
|
|
|
|
|
DECLARE_EVENT_CLASS(scsi_cmd_done_timeout_template,
|
|
|
|
|
|
|
|
TP_PROTO(struct scsi_cmnd *cmd),
|
|
|
|
|
|
|
|
TP_ARGS(cmd),
|
|
|
|
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field( unsigned int, host_no )
|
|
|
|
__field( unsigned int, channel )
|
|
|
|
__field( unsigned int, id )
|
|
|
|
__field( unsigned int, lun )
|
|
|
|
__field( int, result )
|
|
|
|
__field( unsigned int, opcode )
|
|
|
|
__field( unsigned int, cmd_len )
|
2022-06-21 18:11:25 +00:00
|
|
|
__field( int, driver_tag)
|
|
|
|
__field( int, scheduler_tag)
|
2010-03-23 01:16:57 -04:00
|
|
|
__field( unsigned int, data_sglen )
|
|
|
|
__field( unsigned int, prot_sglen )
|
2011-03-08 02:03:59 -05:00
|
|
|
__field( unsigned char, prot_op )
|
2010-04-01 20:41:40 +09:00
|
|
|
__dynamic_array(unsigned char, cmnd, cmd->cmd_len)
|
2023-05-18 12:31:58 -07:00
|
|
|
__field( u8, sense_key )
|
|
|
|
__field( u8, asc )
|
|
|
|
__field( u8, ascq )
|
2010-04-01 20:41:40 +09:00
|
|
|
),
|
|
|
|
|
|
|
|
TP_fast_assign(
|
2023-05-18 12:31:58 -07:00
|
|
|
struct scsi_sense_hdr sshdr;
|
|
|
|
|
2010-04-01 20:41:40 +09:00
|
|
|
__entry->host_no = cmd->device->host->host_no;
|
|
|
|
__entry->channel = cmd->device->channel;
|
|
|
|
__entry->id = cmd->device->id;
|
|
|
|
__entry->lun = cmd->device->lun;
|
|
|
|
__entry->result = cmd->result;
|
|
|
|
__entry->opcode = cmd->cmnd[0];
|
|
|
|
__entry->cmd_len = cmd->cmd_len;
|
2022-06-21 18:11:25 +00:00
|
|
|
__entry->driver_tag = scsi_cmd_to_rq(cmd)->tag;
|
|
|
|
__entry->scheduler_tag = scsi_cmd_to_rq(cmd)->internal_tag;
|
2010-03-23 01:16:57 -04:00
|
|
|
__entry->data_sglen = scsi_sg_count(cmd);
|
|
|
|
__entry->prot_sglen = scsi_prot_sg_count(cmd);
|
2011-03-08 02:03:59 -05:00
|
|
|
__entry->prot_op = scsi_get_prot_op(cmd);
|
2010-04-01 20:41:40 +09:00
|
|
|
memcpy(__get_dynamic_array(cmnd), cmd->cmnd, cmd->cmd_len);
|
2023-05-18 12:31:58 -07:00
|
|
|
if (cmd->sense_buffer && SCSI_SENSE_VALID(cmd) &&
|
|
|
|
scsi_command_normalize_sense(cmd, &sshdr)) {
|
|
|
|
__entry->sense_key = sshdr.sense_key;
|
|
|
|
__entry->asc = sshdr.asc;
|
|
|
|
__entry->ascq = sshdr.ascq;
|
|
|
|
} else {
|
|
|
|
__entry->sense_key = 0;
|
|
|
|
__entry->asc = 0;
|
|
|
|
__entry->ascq = 0;
|
|
|
|
}
|
2010-04-01 20:41:40 +09:00
|
|
|
),
|
|
|
|
|
2022-06-21 18:11:25 +00:00
|
|
|
TP_printk("host_no=%u channel=%u id=%u lun=%u data_sgl=%u prot_sgl=%u " \
|
|
|
|
"prot_op=%s driver_tag=%d scheduler_tag=%d cmnd=(%s %s raw=%s) " \
|
2023-05-18 12:31:58 -07:00
|
|
|
"result=(driver=%s host=%s message=%s status=%s) "
|
|
|
|
"sense=(key=%#x asc=%#x ascq=%#x)",
|
2010-04-01 20:41:40 +09:00
|
|
|
__entry->host_no, __entry->channel, __entry->id,
|
2010-03-23 01:16:57 -04:00
|
|
|
__entry->lun, __entry->data_sglen, __entry->prot_sglen,
|
2022-06-21 18:11:25 +00:00
|
|
|
show_prot_op_name(__entry->prot_op), __entry->driver_tag,
|
|
|
|
__entry->scheduler_tag, show_opcode_name(__entry->opcode),
|
2010-04-01 20:41:40 +09:00
|
|
|
__parse_cdb(__get_dynamic_array(cmnd), __entry->cmd_len),
|
|
|
|
__print_hex(__get_dynamic_array(cmnd), __entry->cmd_len),
|
2021-04-27 10:30:20 +02:00
|
|
|
"DRIVER_OK",
|
2010-04-01 20:41:40 +09:00
|
|
|
show_hostbyte_name(((__entry->result) >> 16) & 0xff),
|
2021-04-27 10:30:44 +02:00
|
|
|
"COMMAND_COMPLETE",
|
2023-05-18 12:31:58 -07:00
|
|
|
show_statusbyte_name(__entry->result & 0xff),
|
|
|
|
__entry->sense_key, __entry->asc, __entry->ascq)
|
2010-04-01 20:41:40 +09:00
|
|
|
);
|
|
|
|
|
|
|
|
DEFINE_EVENT(scsi_cmd_done_timeout_template, scsi_dispatch_cmd_done,
|
|
|
|
TP_PROTO(struct scsi_cmnd *cmd),
|
|
|
|
TP_ARGS(cmd));
|
|
|
|
|
|
|
|
DEFINE_EVENT(scsi_cmd_done_timeout_template, scsi_dispatch_cmd_timeout,
|
|
|
|
TP_PROTO(struct scsi_cmnd *cmd),
|
|
|
|
TP_ARGS(cmd));
|
|
|
|
|
|
|
|
TRACE_EVENT(scsi_eh_wakeup,
|
|
|
|
|
|
|
|
TP_PROTO(struct Scsi_Host *shost),
|
|
|
|
|
|
|
|
TP_ARGS(shost),
|
|
|
|
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field( unsigned int, host_no )
|
|
|
|
),
|
|
|
|
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->host_no = shost->host_no;
|
|
|
|
),
|
|
|
|
|
|
|
|
TP_printk("host_no=%u", __entry->host_no)
|
|
|
|
);
|
|
|
|
|
|
|
|
#endif /* _TRACE_SCSI_H */
|
|
|
|
|
|
|
|
/* This part must be outside protection */
|
|
|
|
#include <trace/define_trace.h>
|