mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't pass RFPROC to kproc_create(), it is redundant.
Sponsored by: Netflix
(cherry picked from commit 5a50eb6585)
This commit is contained in:
parent
1a325aa204
commit
cc6d86f2ff
2 changed files with 2 additions and 2 deletions
|
|
@ -108,7 +108,7 @@ sctp_startup_iterator(void)
|
|||
kproc_create(sctp_iterator_thread,
|
||||
(void *)NULL,
|
||||
&sctp_it_ctl.thread_proc,
|
||||
RFPROC,
|
||||
0,
|
||||
SCTP_KTHREAD_PAGES,
|
||||
SCTP_KTRHEAD_NAME);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5678,7 +5678,7 @@ sctp_startup_mcore_threads(void)
|
|||
(void)kproc_create(sctp_mcore_thread,
|
||||
(void *)&sctp_mcore_workers[cpu],
|
||||
&sctp_mcore_workers[cpu].thread_proc,
|
||||
RFPROC,
|
||||
0,
|
||||
SCTP_KTHREAD_PAGES,
|
||||
SCTP_MCORE_NAME);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue