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 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 -2
+1 -1
drivers/scsi/qla2xxx/qla_os.c
··· 42 42 int ql2xenforce_iocb_limit = 1; 43 43 module_param(ql2xenforce_iocb_limit, int, S_IRUGO | S_IWUSR); 44 44 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)"); 46 46 47 47 /* 48 48 * CT6 CTX allocation cache
+1 -1
drivers/target/iscsi/iscsi_target_login.c
··· 896 896 else 897 897 len = sizeof(struct sockaddr_in); 898 898 /* 899 - * Set SO_REUSEADDR, and disable Nagel Algorithm with TCP_NODELAY. 899 + * Set SO_REUSEADDR, and disable Nagle Algorithm with TCP_NODELAY. 900 900 */ 901 901 if (np->np_network_transport == ISCSI_TCP) 902 902 tcp_sock_set_nodelay(sock->sk);