summaryrefslogtreecommitdiffstats
path: root/net/ipv4/ipvs
diff options
context:
space:
mode:
authorSven Wegener <sven.wegener@stealer.net>2008-07-16 13:14:03 +0200
committerSven Wegener <sven.wegener@stealer.net>2008-07-17 00:33:20 +0200
commit375c6bbabf210ded3151481ca1ac7f730903512b (patch)
treee5f092925e77fe7dec4b198eea6588944219c15f /net/ipv4/ipvs
parentipvs: Put backup thread on mcast socket wait queue (diff)
downloadlinux-375c6bbabf210ded3151481ca1ac7f730903512b.tar.xz
linux-375c6bbabf210ded3151481ca1ac7f730903512b.zip
ipvs: Use schedule_timeout_interruptible() instead of msleep_interruptible()
So that kthread_stop() can wake up the thread and we don't have to wait one second in the worst case for the daemon to actually stop. Signed-off-by: Sven Wegener <sven.wegener@stealer.net> Acked-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'net/ipv4/ipvs')
-rw-r--r--net/ipv4/ipvs/ip_vs_sync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipvs/ip_vs_sync.c b/net/ipv4/ipvs/ip_vs_sync.c
index cf5ed758ea1f..45e9bd96c286 100644
--- a/net/ipv4/ipvs/ip_vs_sync.c
+++ b/net/ipv4/ipvs/ip_vs_sync.c
@@ -742,7 +742,7 @@ static int sync_thread_master(void *data)
ip_vs_sync_buff_release(sb);
}
- msleep_interruptible(1000);
+ schedule_timeout_interruptible(HZ);
}
/* clean up the sync_buff queue */