Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 347668
b: refs/heads/master
c: 12760c6
h: refs/heads/master
v: v3
  • Loading branch information
Stanislav Kinsbursky authored and J. Bruce Fields committed Nov 15, 2012
1 parent 2982fad commit 478348d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 15 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: 3320fef19b542b8df9606bd8e63990dc2a3fb330
refs/heads/master: 12760c6685624d65f8de078485c21b6a08e83409
14 changes: 6 additions & 8 deletions trunk/fs/nfsd/nfs4recover.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ struct nfsd4_client_tracking_ops {
void (*create)(struct nfs4_client *);
void (*remove)(struct nfs4_client *);
int (*check)(struct nfs4_client *);
void (*grace_done)(struct net *, time_t);
void (*grace_done)(struct nfsd_net *, time_t);
};

/* Globals */
Expand Down Expand Up @@ -391,10 +391,9 @@ purge_old(struct dentry *parent, struct dentry *child, struct nfsd_net *nn)
}

static void
nfsd4_recdir_purge_old(struct net *net, time_t boot_time)
nfsd4_recdir_purge_old(struct nfsd_net *nn, time_t boot_time)
{
int status;
struct nfsd_net *nn = net_generic(net, nfsd_net_id);

in_grace = false;
if (!rec_file)
Expand Down Expand Up @@ -1017,11 +1016,10 @@ nfsd4_cld_check(struct nfs4_client *clp)
}

static void
nfsd4_cld_grace_done(struct net *net, time_t boot_time)
nfsd4_cld_grace_done(struct nfsd_net *nn, time_t boot_time)
{
int ret;
struct cld_upcall *cup;
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
struct cld_net *cn = nn->cld_net;

cup = alloc_cld_upcall(cn);
Expand Down Expand Up @@ -1241,7 +1239,7 @@ nfsd4_umh_cltrack_check(struct nfs4_client *clp)
}

static void
nfsd4_umh_cltrack_grace_done(struct net __attribute__((unused)) *net,
nfsd4_umh_cltrack_grace_done(struct nfsd_net __attribute__((unused)) *nn,
time_t boot_time)
{
char *legacy;
Expand Down Expand Up @@ -1343,10 +1341,10 @@ nfsd4_client_record_check(struct nfs4_client *clp)
}

void
nfsd4_record_grace_done(struct net *net, time_t boot_time)
nfsd4_record_grace_done(struct nfsd_net *nn, time_t boot_time)
{
if (client_tracking_ops)
client_tracking_ops->grace_done(net, boot_time);
client_tracking_ops->grace_done(nn, boot_time);
}

static int
Expand Down
8 changes: 3 additions & 5 deletions trunk/fs/nfsd/nfs4state.c
Original file line number Diff line number Diff line change
Expand Up @@ -3157,17 +3157,15 @@ nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
}

static void
nfsd4_end_grace(struct net *net)
nfsd4_end_grace(struct nfsd_net *nn)
{
struct nfsd_net *nn = net_generic(net, nfsd_net_id);

/* do nothing if grace period already ended */
if (nn->grace_ended)
return;

dprintk("NFSD: end of grace period\n");
nn->grace_ended = true;
nfsd4_record_grace_done(net, nn->boot_time);
nfsd4_record_grace_done(nn, nn->boot_time);
locks_end_grace(&nn->nfsd4_manager);
/*
* Now that every NFSv4 client has had the chance to recover and
Expand All @@ -3192,7 +3190,7 @@ nfs4_laundromat(void)
nfs4_lock_state();

dprintk("NFSD: laundromat service - starting\n");
nfsd4_end_grace(&init_net);
nfsd4_end_grace(nn);
INIT_LIST_HEAD(&reaplist);
spin_lock(&client_lock);
list_for_each_safe(pos, next, &nn->client_lru) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/nfsd/state.h
Original file line number Diff line number Diff line change
Expand Up @@ -495,5 +495,5 @@ extern void nfsd4_client_tracking_exit(struct net *net);
extern void nfsd4_client_record_create(struct nfs4_client *clp);
extern void nfsd4_client_record_remove(struct nfs4_client *clp);
extern int nfsd4_client_record_check(struct nfs4_client *clp);
extern void nfsd4_record_grace_done(struct net *net, time_t boot_time);
extern void nfsd4_record_grace_done(struct nfsd_net *nn, time_t boot_time);
#endif /* NFSD4_STATE_H */

0 comments on commit 478348d

Please sign in to comment.