Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 38382
b: refs/heads/master
c: 350fce8
h: refs/heads/master
v: v3
  • Loading branch information
NeilBrown authored and Linus Torvalds committed Oct 4, 2006
1 parent 2f81a65 commit 97147cf
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 40 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c53c1bb94f30cecee79ca0a8e9977640338283be
refs/heads/master: 350fce8dbf43f7d441b77366851c9ce3cd28d6dc
27 changes: 0 additions & 27 deletions trunk/fs/lockd/host.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,33 +192,6 @@ nlm_destroy_host(struct nlm_host *host)
kfree(host);
}

struct nlm_host *
nlm_find_client(void)
{
struct hlist_head *chain;
struct hlist_node *pos;

/* find a nlm_host for a client for which h_killed == 0.
* and return it
*/
mutex_lock(&nlm_host_mutex);
for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
struct nlm_host *host;

hlist_for_each_entry(host, pos, chain, h_hash) {
if (host->h_server &&
host->h_killed == 0) {
nlm_get_host(host);
mutex_unlock(&nlm_host_mutex);
return host;
}
}
}
mutex_unlock(&nlm_host_mutex);
return NULL;
}


/*
* Create the NLM RPC client for an NLM peer
*/
Expand Down
10 changes: 1 addition & 9 deletions trunk/fs/lockd/svcsubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -354,24 +354,16 @@ nlmsvc_free_host_resources(struct nlm_host *host)
}

/*
* delete all hosts structs for clients
* Remove all locks held for clients
*/
void
nlmsvc_invalidate_all(void)
{
struct nlm_host *host;

/* Release all locks held by NFS clients.
* Previously, the code would call
* nlmsvc_free_host_resources for each client in
* turn, which is about as inefficient as it gets.
* Now we just do it once in nlm_traverse_files.
*/
nlm_traverse_files(NULL, nlmsvc_is_client);

while ((host = nlm_find_client()) != NULL) {
host->h_expires = 0;
host->h_killed = 1;
nlm_release_host(host);
}
}
4 changes: 1 addition & 3 deletions trunk/include/linux/lockd/lockd.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ struct nlm_host {
unsigned short h_proto; /* transport proto */
unsigned short h_reclaiming : 1,
h_server : 1, /* server side, not client side */
h_inuse : 1,
h_killed : 1;
h_inuse : 1;
wait_queue_head_t h_gracewait; /* wait while reclaiming */
struct rw_semaphore h_rwsem; /* Reboot recovery lock */
u32 h_state; /* pseudo-state counter */
Expand Down Expand Up @@ -169,7 +168,6 @@ void nlm_rebind_host(struct nlm_host *);
struct nlm_host * nlm_get_host(struct nlm_host *);
void nlm_release_host(struct nlm_host *);
void nlm_shutdown_hosts(void);
extern struct nlm_host *nlm_find_client(void);
extern void nlm_host_rebooted(const struct sockaddr_in *, const char *, int, u32);
struct nsm_handle *nsm_find(const struct sockaddr_in *, const char *, int);
void nsm_release(struct nsm_handle *);
Expand Down

0 comments on commit 97147cf

Please sign in to comment.