mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix build breakage - kthread_exit() in 8 now has no arguments
MFC after: 1 week
This commit is contained in:
parent
d6af161a34
commit
52baa64a19
1 changed files with 2 additions and 1 deletions
|
|
@ -96,7 +96,8 @@ sctp_iterator_thread(void *v)
|
|||
&SCTP_BASE_INFO(ipi_iterator_wq_mtx),
|
||||
0, "waiting_for_work", 0);
|
||||
if (SCTP_BASE_INFO(threads_must_exit)) {
|
||||
kthread_exit(0);
|
||||
kthread_exit(
|
||||
);
|
||||
}
|
||||
sctp_iterator_worker();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue