mirror of
https://github.com/torvalds/linux.git
synced 2024-11-29 15:41:36 +00:00
2b01b293f3
Information needed to debug driver problems and firmware faults is stored in the IOC’s MPT3SAS_ADAPTER data structure. Parameters such as IOCFacts, IOC flags (related to sge, MSI-X, error recovery etc.), performance mode type, TMs, internal commands reply status, etc. are present. For debugging purposes, it is therefore helpful to be able to capture this information so that the fault can be analyzed. Export the MPT3SAS_ADAPTER data structure in debugfs. The data is available in: /sys/kernel/debug/mpt3sas/scsi_hostX/ioc_dump Link: https://lore.kernel.org/r/1588056322-29227-1-git-send-email-suganath-prabu.subramani@broadcom.com Signed-off-by: Suganath Prabu <suganath-prabu.subramani@broadcom.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
12 lines
294 B
Makefile
12 lines
294 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# mpt3sas makefile
|
|
obj-$(CONFIG_SCSI_MPT3SAS) += mpt3sas.o
|
|
mpt3sas-y += mpt3sas_base.o \
|
|
mpt3sas_config.o \
|
|
mpt3sas_scsih.o \
|
|
mpt3sas_transport.o \
|
|
mpt3sas_ctl.o \
|
|
mpt3sas_trigger_diag.o \
|
|
mpt3sas_warpdrive.o \
|
|
mpt3sas_debugfs.o \
|