mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 10:01:43 +00:00
8d5e72dfdf
This update includes the usual round of major driver updates (hisi_sas, ufs, fnic, cxlflash, be2iscsi, ipr, stex). There's also the usual amount of cosmetic and spelling stuff. Signed-off-by: James E.J. Bottomley <jejb@linux.vnet.ibm.com> -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAABAgAGBQJZClQkAAoJEAVr7HOZEZN4OmkP/j/JJx2ImGzTgil5S8yeSWPY 5Gqb8IK9rCQ+OJgCZYCz3JsLZZnwY4ODZ9tC1lO/3he6VfjIhcEs2/eXbTnEfsZx D3EwWEVR3wYBNZN0d4hQoudVbdCf6UuvsUvM1hDFO7by10qFEs0DqsufccpDlpG/ us96BWf7PgiNzHYSvZIlmsfEDzNDRRg7Dm1NuLOQvXw56zFGsrysCO6Tqg7/ScJm Unz/VlEe1DE7zE9QotsKNCht7xHkmn1vfuva1wqG2wMp7EHf0rKnavRYrWUrxiEy 2ig6GpR7mIHmVHS8PAMNhyS6iNxGQ3e50sAvZdqDlq42P73AEwbrOo5YhgsTJxWT vCpRAzSuHwPOPY3W2Aa1yJ10iOpoPKxXs2xSZuzpcz8XJ3RjHy+l90Y0VT4Jrvzv +dSY1cynshFccZmw2HQanlt1Ly9G3U8xmx8KIbnsIPCdSIQaQQD27H+Ip0YZ0fKt aLmMcQzffma3UP/LPmRAQ45bwx8rLi9M3DWbWOGmSkIRY3etPCXqNuDcC6h5p9TF 4W74oVcELTql/u8ATZNSbdHBsWAg3GATIkAgdqwLTk/CU/0OgGY8epILr3EM2bc6 vVbglwP9DiyVOikTLhVNJdZA97qHjZ1WXNo03eefFTBfPDcUlkZw4j2gufGuNFh2 5vA4C/aSl9uxaLInr3aC =kj7u -----END PGP SIGNATURE----- Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi Pull SCSI updates from James Bottomley: "This update includes the usual round of major driver updates (hisi_sas, ufs, fnic, cxlflash, be2iscsi, ipr, stex). There's also the usual amount of cosmetic and spelling stuff" * tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (155 commits) scsi: qla4xxx: fix spelling mistake: "Tempalate" -> "Template" scsi: stex: make S6flag static scsi: mac_esp: fix to pass correct device identity to free_irq() scsi: aacraid: pci_alloc_consistent() failures on ARM64 scsi: ufs: make ufshcd_get_lists_status() register operation obvious scsi: ufs: use MASK_EE_STATUS scsi: mac_esp: Replace bogus memory barrier with spinlock scsi: fcoe: make fcoe_e_d_tov and fcoe_r_a_tov static scsi: sd_zbc: Do not write lock zones for reset scsi: sd_zbc: Remove superfluous assignments scsi: sd: sd_zbc: Rename sd_zbc_setup_write_cmnd scsi: Improve scsi_get_sense_info_fld scsi: sd: Cleanup sd_done sense data handling scsi: sd: Improve sd_completed_bytes scsi: sd: Fix function descriptions scsi: mpt3sas: remove redundant wmb scsi: mpt: Move scsi_remove_host() out of mptscsih_remove_host() scsi: sg: reset 'res_in_use' after unlinking reserved array scsi: mvumi: remove code handling zero scsi_sg_count(scmd) case scsi: fusion: fix spelling mistake: "Persistancy" -> "Persistency" ...
245 lines
6.0 KiB
C
245 lines
6.0 KiB
C
/*
|
|
* QLogic iSCSI Offload Driver
|
|
* Copyright (c) 2016 Cavium Inc.
|
|
*
|
|
* This software is available under the terms of the GNU General Public License
|
|
* (GPL) Version 2, available from the file COPYING in the main directory of
|
|
* this source tree.
|
|
*/
|
|
|
|
#include "qedi.h"
|
|
#include "qedi_dbg.h"
|
|
|
|
#include <linux/uaccess.h>
|
|
#include <linux/debugfs.h>
|
|
#include <linux/module.h>
|
|
|
|
int qedi_do_not_recover;
|
|
static struct dentry *qedi_dbg_root;
|
|
|
|
void
|
|
qedi_dbg_host_init(struct qedi_dbg_ctx *qedi,
|
|
struct qedi_debugfs_ops *dops,
|
|
const struct file_operations *fops)
|
|
{
|
|
char host_dirname[32];
|
|
struct dentry *file_dentry = NULL;
|
|
|
|
sprintf(host_dirname, "host%u", qedi->host_no);
|
|
qedi->bdf_dentry = debugfs_create_dir(host_dirname, qedi_dbg_root);
|
|
if (!qedi->bdf_dentry)
|
|
return;
|
|
|
|
while (dops) {
|
|
if (!(dops->name))
|
|
break;
|
|
|
|
file_dentry = debugfs_create_file(dops->name, 0600,
|
|
qedi->bdf_dentry, qedi,
|
|
fops);
|
|
if (!file_dentry) {
|
|
QEDI_INFO(qedi, QEDI_LOG_DEBUGFS,
|
|
"Debugfs entry %s creation failed\n",
|
|
dops->name);
|
|
debugfs_remove_recursive(qedi->bdf_dentry);
|
|
return;
|
|
}
|
|
dops++;
|
|
fops++;
|
|
}
|
|
}
|
|
|
|
void
|
|
qedi_dbg_host_exit(struct qedi_dbg_ctx *qedi)
|
|
{
|
|
debugfs_remove_recursive(qedi->bdf_dentry);
|
|
qedi->bdf_dentry = NULL;
|
|
}
|
|
|
|
void
|
|
qedi_dbg_init(char *drv_name)
|
|
{
|
|
qedi_dbg_root = debugfs_create_dir(drv_name, NULL);
|
|
if (!qedi_dbg_root)
|
|
QEDI_INFO(NULL, QEDI_LOG_DEBUGFS, "Init of debugfs failed\n");
|
|
}
|
|
|
|
void
|
|
qedi_dbg_exit(void)
|
|
{
|
|
debugfs_remove_recursive(qedi_dbg_root);
|
|
qedi_dbg_root = NULL;
|
|
}
|
|
|
|
static ssize_t
|
|
qedi_dbg_do_not_recover_enable(struct qedi_dbg_ctx *qedi_dbg)
|
|
{
|
|
if (!qedi_do_not_recover)
|
|
qedi_do_not_recover = 1;
|
|
|
|
QEDI_INFO(qedi_dbg, QEDI_LOG_DEBUGFS, "do_not_recover=%d\n",
|
|
qedi_do_not_recover);
|
|
return 0;
|
|
}
|
|
|
|
static ssize_t
|
|
qedi_dbg_do_not_recover_disable(struct qedi_dbg_ctx *qedi_dbg)
|
|
{
|
|
if (qedi_do_not_recover)
|
|
qedi_do_not_recover = 0;
|
|
|
|
QEDI_INFO(qedi_dbg, QEDI_LOG_DEBUGFS, "do_not_recover=%d\n",
|
|
qedi_do_not_recover);
|
|
return 0;
|
|
}
|
|
|
|
static struct qedi_list_of_funcs qedi_dbg_do_not_recover_ops[] = {
|
|
{ "enable", qedi_dbg_do_not_recover_enable },
|
|
{ "disable", qedi_dbg_do_not_recover_disable },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
struct qedi_debugfs_ops qedi_debugfs_ops[] = {
|
|
{ "gbl_ctx", NULL },
|
|
{ "do_not_recover", qedi_dbg_do_not_recover_ops},
|
|
{ "io_trace", NULL },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
static ssize_t
|
|
qedi_dbg_do_not_recover_cmd_write(struct file *filp, const char __user *buffer,
|
|
size_t count, loff_t *ppos)
|
|
{
|
|
size_t cnt = 0;
|
|
struct qedi_dbg_ctx *qedi_dbg =
|
|
(struct qedi_dbg_ctx *)filp->private_data;
|
|
struct qedi_list_of_funcs *lof = qedi_dbg_do_not_recover_ops;
|
|
|
|
if (*ppos)
|
|
return 0;
|
|
|
|
while (lof) {
|
|
if (!(lof->oper_str))
|
|
break;
|
|
|
|
if (!strncmp(lof->oper_str, buffer, strlen(lof->oper_str))) {
|
|
cnt = lof->oper_func(qedi_dbg);
|
|
break;
|
|
}
|
|
|
|
lof++;
|
|
}
|
|
return (count - cnt);
|
|
}
|
|
|
|
static ssize_t
|
|
qedi_dbg_do_not_recover_cmd_read(struct file *filp, char __user *buffer,
|
|
size_t count, loff_t *ppos)
|
|
{
|
|
size_t cnt = 0;
|
|
|
|
if (*ppos)
|
|
return 0;
|
|
|
|
cnt = sprintf(buffer, "do_not_recover=%d\n", qedi_do_not_recover);
|
|
cnt = min_t(int, count, cnt - *ppos);
|
|
*ppos += cnt;
|
|
return cnt;
|
|
}
|
|
|
|
static int
|
|
qedi_gbl_ctx_show(struct seq_file *s, void *unused)
|
|
{
|
|
struct qedi_fastpath *fp = NULL;
|
|
struct qed_sb_info *sb_info = NULL;
|
|
struct status_block *sb = NULL;
|
|
struct global_queue *que = NULL;
|
|
int id;
|
|
u16 prod_idx;
|
|
struct qedi_ctx *qedi = s->private;
|
|
unsigned long flags;
|
|
|
|
seq_puts(s, " DUMP CQ CONTEXT:\n");
|
|
|
|
for (id = 0; id < MIN_NUM_CPUS_MSIX(qedi); id++) {
|
|
spin_lock_irqsave(&qedi->hba_lock, flags);
|
|
seq_printf(s, "=========FAST CQ PATH [%d] ==========\n", id);
|
|
fp = &qedi->fp_array[id];
|
|
sb_info = fp->sb_info;
|
|
sb = sb_info->sb_virt;
|
|
prod_idx = (sb->pi_array[QEDI_PROTO_CQ_PROD_IDX] &
|
|
STATUS_BLOCK_PROD_INDEX_MASK);
|
|
seq_printf(s, "SB PROD IDX: %d\n", prod_idx);
|
|
que = qedi->global_queues[fp->sb_id];
|
|
seq_printf(s, "DRV CONS IDX: %d\n", que->cq_cons_idx);
|
|
seq_printf(s, "CQ complete host memory: %d\n", fp->sb_id);
|
|
seq_puts(s, "=========== END ==================\n\n\n");
|
|
spin_unlock_irqrestore(&qedi->hba_lock, flags);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
qedi_dbg_gbl_ctx_open(struct inode *inode, struct file *file)
|
|
{
|
|
struct qedi_dbg_ctx *qedi_dbg = inode->i_private;
|
|
struct qedi_ctx *qedi = container_of(qedi_dbg, struct qedi_ctx,
|
|
dbg_ctx);
|
|
|
|
return single_open(file, qedi_gbl_ctx_show, qedi);
|
|
}
|
|
|
|
static int
|
|
qedi_io_trace_show(struct seq_file *s, void *unused)
|
|
{
|
|
int id, idx = 0;
|
|
struct qedi_ctx *qedi = s->private;
|
|
struct qedi_io_log *io_log;
|
|
unsigned long flags;
|
|
|
|
seq_puts(s, " DUMP IO LOGS:\n");
|
|
spin_lock_irqsave(&qedi->io_trace_lock, flags);
|
|
idx = qedi->io_trace_idx;
|
|
for (id = 0; id < QEDI_IO_TRACE_SIZE; id++) {
|
|
io_log = &qedi->io_trace_buf[idx];
|
|
seq_printf(s, "iodir-%d:", io_log->direction);
|
|
seq_printf(s, "tid-0x%x:", io_log->task_id);
|
|
seq_printf(s, "cid-0x%x:", io_log->cid);
|
|
seq_printf(s, "lun-%d:", io_log->lun);
|
|
seq_printf(s, "op-0x%02x:", io_log->op);
|
|
seq_printf(s, "0x%02x%02x%02x%02x:", io_log->lba[0],
|
|
io_log->lba[1], io_log->lba[2], io_log->lba[3]);
|
|
seq_printf(s, "buflen-%d:", io_log->bufflen);
|
|
seq_printf(s, "sgcnt-%d:", io_log->sg_count);
|
|
seq_printf(s, "res-0x%08x:", io_log->result);
|
|
seq_printf(s, "jif-%lu:", io_log->jiffies);
|
|
seq_printf(s, "blk_req_cpu-%d:", io_log->blk_req_cpu);
|
|
seq_printf(s, "req_cpu-%d:", io_log->req_cpu);
|
|
seq_printf(s, "intr_cpu-%d:", io_log->intr_cpu);
|
|
seq_printf(s, "blk_rsp_cpu-%d\n", io_log->blk_rsp_cpu);
|
|
|
|
idx++;
|
|
if (idx == QEDI_IO_TRACE_SIZE)
|
|
idx = 0;
|
|
}
|
|
spin_unlock_irqrestore(&qedi->io_trace_lock, flags);
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
qedi_dbg_io_trace_open(struct inode *inode, struct file *file)
|
|
{
|
|
struct qedi_dbg_ctx *qedi_dbg = inode->i_private;
|
|
struct qedi_ctx *qedi = container_of(qedi_dbg, struct qedi_ctx,
|
|
dbg_ctx);
|
|
|
|
return single_open(file, qedi_io_trace_show, qedi);
|
|
}
|
|
|
|
const struct file_operations qedi_dbg_fops[] = {
|
|
qedi_dbg_fileops_seq(qedi, gbl_ctx),
|
|
qedi_dbg_fileops(qedi, do_not_recover),
|
|
qedi_dbg_fileops_seq(qedi, io_trace),
|
|
{ },
|
|
};
|