Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi

Pull SCSI fixes from James Bottomley:
"Two fixes to remove spurious WARN_ONs from the new(ish) qedi driver.

The driver already prints a warning message, there's no need to panic
users by printing something that looks like an oops as well"

* tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi:
scsi: qedi: Remove WARN_ON from clear task context.
scsi: qedi: Remove WARN_ON for untracked cleanup.

+1 -4
-1
drivers/scsi/qedi/qedi_fw.c
··· 870 870 QEDI_ERR(&qedi->dbg_ctx, 871 871 "Delayed or untracked cleanup response, itt=0x%x, tid=0x%x, cid=0x%x, task=%p\n", 872 872 protoitt, cqe->itid, qedi_conn->iscsi_conn_id, task); 873 - WARN_ON(1); 874 873 } 875 874 } 876 875
+1 -3
drivers/scsi/qedi/qedi_main.c
··· 1499 1499 1500 1500 void qedi_clear_task_idx(struct qedi_ctx *qedi, int idx) 1501 1501 { 1502 - if (!test_and_clear_bit(idx, qedi->task_idx_map)) { 1502 + if (!test_and_clear_bit(idx, qedi->task_idx_map)) 1503 1503 QEDI_ERR(&qedi->dbg_ctx, 1504 1504 "FW task context, already cleared, tid=0x%x\n", idx); 1505 - WARN_ON(1); 1506 - } 1507 1505 } 1508 1506 1509 1507 void qedi_update_itt_map(struct qedi_ctx *qedi, u32 tid, u32 proto_itt,