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 'dlm-3.16' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm

Pull dlm fix from David Teigland:
"This contains one small fix related to resending SCTP messages"

* tag 'dlm-3.16' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm:
dlm: keep listening connection alive with sctp mode

+5
+5
fs/dlm/lowcomms.c
··· 617 617 int nodeid = sn_send_failed->ssf_info.sinfo_ppid; 618 618 619 619 log_print("Retry sending %d bytes to node id %d", len, nodeid); 620 + 621 + if (!nodeid) { 622 + log_print("Shouldn't resend data via listening connection."); 623 + return; 624 + } 620 625 621 626 con = nodeid2con(nodeid, 0); 622 627 if (!con) {