ipvs: Use kthread_run() instead of doing a double-fork via kernel_thread()
authorSven Wegener <sven.wegener@stealer.net>
Wed, 16 Jul 2008 11:13:50 +0000 (11:13 +0000)
committerSven Wegener <sven.wegener@stealer.net>
Wed, 16 Jul 2008 22:33:20 +0000 (22:33 +0000)
commit998e7a76804b7a273a0460c2cdd5a51fa9856717
tree42c5617f9fc180457e7f6f98326edf489a671086
parente6dd731c75cba986a485924f908e6e05b088ea9e
ipvs: Use kthread_run() instead of doing a double-fork via kernel_thread()

This also moves the setup code out of the daemons, so that we're able to
return proper error codes to user space. The current code will return success
to user space when the daemon is started with an invald mcast interface. With
these changes we get an appropriate "No such device" error.

We longer need our own completion to be sure the daemons are actually running,
because they no longer contain code that can fail and kthread_run() takes care
of the rest.

Signed-off-by: Sven Wegener <sven.wegener@stealer.net>
Acked-by: Simon Horman <horms@verge.net.au>
net/ipv4/ipvs/ip_vs_sync.c