Skip to content

Commit ad8b3c1

Browse files
committed
Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
Pull SCSI fixes from James Bottomley: "Two minor fixes in drivers. Both changing strings (one in a comment, one in a module help text) with no code impact" * tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: scsi: qla2xxx: Fix description for parameter ql2xenforce_iocb_limit scsi: target: iscsi: Fix typo in comment
2 parents 03e319e + aa2c24e commit ad8b3c1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/scsi/qla2xxx/qla_os.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ MODULE_PARM_DESC(ql2xfulldump_on_mpifail,
4242
int ql2xenforce_iocb_limit = 1;
4343
module_param(ql2xenforce_iocb_limit, int, S_IRUGO | S_IWUSR);
4444
MODULE_PARM_DESC(ql2xenforce_iocb_limit,
45-
"Enforce IOCB throttling, to avoid FW congestion. (default: 0)");
45+
"Enforce IOCB throttling, to avoid FW congestion. (default: 1)");
4646

4747
/*
4848
* CT6 CTX allocation cache

drivers/target/iscsi/iscsi_target_login.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ int iscsit_setup_np(
896896
else
897897
len = sizeof(struct sockaddr_in);
898898
/*
899-
* Set SO_REUSEADDR, and disable Nagel Algorithm with TCP_NODELAY.
899+
* Set SO_REUSEADDR, and disable Nagle Algorithm with TCP_NODELAY.
900900
*/
901901
if (np->np_network_transport == ISCSI_TCP)
902902
tcp_sock_set_nodelay(sock->sk);

0 commit comments

Comments
 (0)