Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 347661
b: refs/heads/master
c: a99454a
h: refs/heads/master
i:
  347659: e2eb71e
v: v3
  • Loading branch information
Stanislav Kinsbursky authored and J. Bruce Fields committed Nov 15, 2012
1 parent 8a78857 commit 3c0440b
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 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: 0a7ec37727dcc3293cd4c9958b25c43f3a797d47
refs/heads/master: a99454aa4ff1241a19dcb486fa302d3e8cc09e5b
4 changes: 4 additions & 0 deletions trunk/fs/nfsd/netns.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,16 @@ struct nfsd_net {
*
* conf_id_hashtbl[], and conf_name_tree hold confirmed
* setclientid_confirmed info.
*
* unconf_str_hastbl[] and unconf_name_tree hold unconfirmed
* setclientid info.
*/
struct list_head *reclaim_str_hashtbl;
int reclaim_str_hashtbl_size;
struct list_head *conf_id_hashtbl;
struct rb_root conf_name_tree;
struct list_head *unconf_id_hashtbl;
struct rb_root unconf_name_tree;
};

extern int nfsd_net_id;
Expand Down
42 changes: 19 additions & 23 deletions trunk/fs/nfsd/nfs4state.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,9 +404,6 @@ static unsigned int clientstr_hashval(const char *name)
}

/*
* unconf_id_hashtbl[] and unconf_name_tree hold unconfirmed
* setclientid info.
*
* client_lru holds client queue ordered by nfs4_client.cl_time
* for lease renewal.
*
Expand All @@ -415,7 +412,6 @@ static unsigned int clientstr_hashval(const char *name)
*
* All of the above fields are protected by the client_mutex.
*/
static struct rb_root unconf_name_tree;
static struct list_head client_lru;
static struct list_head close_lru;

Expand Down Expand Up @@ -1134,7 +1130,7 @@ destroy_client(struct nfs4_client *clp)
if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
rb_erase(&clp->cl_namenode, &nn->conf_name_tree);
else
rb_erase(&clp->cl_namenode, &unconf_name_tree);
rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
spin_lock(&client_lock);
unhash_client_locked(clp);
if (atomic_read(&clp->cl_refcount) == 0)
Expand Down Expand Up @@ -1371,7 +1367,7 @@ add_to_unconfirmed(struct nfs4_client *clp)
struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);

clear_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
add_clp_to_name_tree(clp, &unconf_name_tree);
add_clp_to_name_tree(clp, &nn->unconf_name_tree);
idhashval = clientid_hashval(clp->cl_clientid.cl_id);
list_add(&clp->cl_idhash, &nn->unconf_id_hashtbl[idhashval]);
renew_client(clp);
Expand All @@ -1385,7 +1381,7 @@ move_to_confirmed(struct nfs4_client *clp)

dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
list_move(&clp->cl_idhash, &nn->conf_id_hashtbl[idhashval]);
rb_erase(&clp->cl_namenode, &unconf_name_tree);
rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
add_clp_to_name_tree(clp, &nn->conf_name_tree);
set_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
renew_client(clp);
Expand Down Expand Up @@ -1436,9 +1432,9 @@ find_confirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
}

static struct nfs4_client *
find_unconfirmed_client_by_name(struct xdr_netobj *name)
find_unconfirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
{
return find_clp_in_name_tree(name, &unconf_name_tree);
return find_clp_in_name_tree(name, &nn->unconf_name_tree);
}

static void
Expand Down Expand Up @@ -1677,7 +1673,7 @@ nfsd4_exchange_id(struct svc_rqst *rqstp,
goto out;
}

unconf = find_unconfirmed_client_by_name(&exid->clname);
unconf = find_unconfirmed_client_by_name(&exid->clname, nn);
if (unconf) /* case 4, possible retry or client restart */
expire_client(unconf);

Expand Down Expand Up @@ -2239,7 +2235,7 @@ nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
goto out;
}
}
unconf = find_unconfirmed_client_by_name(&clname);
unconf = find_unconfirmed_client_by_name(&clname, nn);
if (unconf)
expire_client(unconf);
status = nfserr_jukebox;
Expand Down Expand Up @@ -4720,7 +4716,6 @@ nfs4_state_init(void)
{
int i;

unconf_name_tree = RB_ROOT;
for (i = 0; i < SESSION_HASH_SIZE; i++)
INIT_LIST_HEAD(&sessionid_hashtbl[i]);
for (i = 0; i < FILE_HASH_SIZE; i++) {
Expand Down Expand Up @@ -4776,6 +4771,7 @@ static int nfs4_state_start_net(struct net *net)
INIT_LIST_HEAD(&nn->unconf_id_hashtbl[i]);
}
nn->conf_name_tree = RB_ROOT;
nn->unconf_name_tree = RB_ROOT;

return 0;

Expand All @@ -4791,13 +4787,24 @@ __nfs4_state_shutdown_net(struct net *net)
int i;
struct nfs4_client *clp = NULL;
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
struct rb_node *node, *tmp;

for (i = 0; i < CLIENT_HASH_SIZE; i++) {
while (!list_empty(&nn->conf_id_hashtbl[i])) {
clp = list_entry(nn->conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
destroy_client(clp);
}
}

node = rb_first(&nn->unconf_name_tree);
while (node != NULL) {
tmp = node;
node = rb_next(tmp);
clp = rb_entry(tmp, struct nfs4_client, cl_namenode);
rb_erase(tmp, &nn->unconf_name_tree);
destroy_client(clp);
}

kfree(nn->unconf_id_hashtbl);
kfree(nn->conf_id_hashtbl);
}
Expand Down Expand Up @@ -4857,22 +4864,11 @@ nfs4_state_start(void)
static void
__nfs4_state_shutdown(struct net *net)
{
struct nfs4_client *clp = NULL;
struct nfs4_delegation *dp = NULL;
struct list_head *pos, *next, reaplist;
struct rb_node *node, *tmp;

__nfs4_state_shutdown_net(net);

node = rb_first(&unconf_name_tree);
while (node != NULL) {
tmp = node;
node = rb_next(tmp);
clp = rb_entry(tmp, struct nfs4_client, cl_namenode);
rb_erase(tmp, &unconf_name_tree);
destroy_client(clp);
}

INIT_LIST_HEAD(&reaplist);
spin_lock(&recall_lock);
list_for_each_safe(pos, next, &del_recall_lru) {
Expand Down

0 comments on commit 3c0440b

Please sign in to comment.