1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-28 16:43:09 +00:00

- sctp-iterator should run at PI_NET priority ...not 0.

MFC after:	1 week
This commit is contained in:
Randall Stewart 2007-12-18 01:24:15 +00:00
parent 8da510f8f5
commit 83073fcba3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=174736

View File

@ -96,7 +96,7 @@ sctp_iterator_thread(void *v)
while (1) {
msleep(&sctppcbinfo.iterator_running,
&sctppcbinfo.ipi_iterator_wq_mtx,
0, "waiting_for_work", 0);
PI_NET, "waiting_for_work", 0);
sctp_iterator_worker();
}
}