Fix build breakage - kthread_exit() in 8 now has no arguments

MFC after:	1 week
This commit is contained in:
Randall Stewart 2008-07-29 09:30:50 +00:00
parent d6af161a34
commit 52baa64a19

View File

@ -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();
}