diff options
Diffstat (limited to 'fs/lockd')
-rw-r--r-- | fs/lockd/host.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/lockd/host.c b/fs/lockd/host.c index 8cbf53d2c1bb..0084ab853a2b 100644 --- a/fs/lockd/host.c +++ b/fs/lockd/host.c | |||
@@ -608,11 +608,10 @@ nlm_shutdown_hosts_net(struct net *net) | |||
608 | struct hlist_node *pos; | 608 | struct hlist_node *pos; |
609 | struct nlm_host *host; | 609 | struct nlm_host *host; |
610 | 610 | ||
611 | dprintk("lockd: shutting down host module\n"); | ||
612 | mutex_lock(&nlm_host_mutex); | 611 | mutex_lock(&nlm_host_mutex); |
613 | 612 | ||
614 | /* First, make all hosts eligible for gc */ | 613 | /* First, make all hosts eligible for gc */ |
615 | dprintk("lockd: nuking all hosts...\n"); | 614 | dprintk("lockd: nuking all hosts in net %p...\n", net); |
616 | for_each_host(host, pos, chain, nlm_server_hosts) { | 615 | for_each_host(host, pos, chain, nlm_server_hosts) { |
617 | if (net && host->net != net) | 616 | if (net && host->net != net) |
618 | continue; | 617 | continue; |
@@ -637,6 +636,7 @@ nlm_shutdown_hosts_net(struct net *net) | |||
637 | void | 636 | void |
638 | nlm_shutdown_hosts(void) | 637 | nlm_shutdown_hosts(void) |
639 | { | 638 | { |
639 | dprintk("lockd: shutting down host module\n"); | ||
640 | nlm_shutdown_hosts_net(NULL); | 640 | nlm_shutdown_hosts_net(NULL); |
641 | } | 641 | } |
642 | 642 | ||