Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
ef7306b4
Commit
ef7306b4
authored
Aug 23, 2004
by
Trond Myklebust
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NFSv4: return all delegations we hold if the server issues a
NFS4ERR_CB_PATH_DOWN error.
parent
b42a8a16
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
4 deletions
+35
-4
fs/nfs/delegation.c
fs/nfs/delegation.c
+24
-0
fs/nfs/delegation.h
fs/nfs/delegation.h
+1
-0
fs/nfs/nfs4proc.c
fs/nfs/nfs4proc.c
+6
-2
fs/nfs/nfs4state.c
fs/nfs/nfs4state.c
+4
-2
No files found.
fs/nfs/delegation.c
View file @
ef7306b4
...
...
@@ -193,6 +193,30 @@ void nfs_return_all_delegations(struct super_block *sb)
spin_unlock
(
&
clp
->
cl_lock
);
}
/*
* Return all delegations following an NFS4ERR_CB_PATH_DOWN error.
*/
void
nfs_handle_cb_pathdown
(
struct
nfs4_client
*
clp
)
{
struct
nfs_delegation
*
delegation
;
struct
inode
*
inode
;
if
(
clp
==
NULL
)
return
;
restart:
spin_lock
(
&
clp
->
cl_lock
);
list_for_each_entry
(
delegation
,
&
clp
->
cl_delegations
,
super_list
)
{
inode
=
igrab
(
delegation
->
inode
);
if
(
inode
==
NULL
)
continue
;
spin_unlock
(
&
clp
->
cl_lock
);
nfs_inode_return_delegation
(
inode
);
iput
(
inode
);
goto
restart
;
}
spin_unlock
(
&
clp
->
cl_lock
);
}
struct
recall_threadargs
{
struct
inode
*
inode
;
struct
nfs4_client
*
clp
;
...
...
fs/nfs/delegation.h
View file @
ef7306b4
...
...
@@ -30,6 +30,7 @@ int nfs_async_inode_return_delegation(struct inode *inode, const nfs4_stateid *s
struct
inode
*
nfs_delegation_find_inode
(
struct
nfs4_client
*
clp
,
const
struct
nfs_fh
*
fhandle
);
void
nfs_return_all_delegations
(
struct
super_block
*
sb
);
void
nfs_handle_cb_pathdown
(
struct
nfs4_client
*
clp
);
void
nfs_delegation_mark_reclaim
(
struct
nfs4_client
*
clp
);
void
nfs_delegation_reap_unclaimed
(
struct
nfs4_client
*
clp
);
...
...
fs/nfs/nfs4proc.c
View file @
ef7306b4
...
...
@@ -1940,9 +1940,11 @@ renew_done(struct rpc_task *task)
if
(
task
->
tk_status
<
0
)
{
switch
(
task
->
tk_status
)
{
case
-
NFS4ERR_STALE_CLIENTID
:
case
-
NFS4ERR_EXPIRED
:
case
-
NFS4ERR_CB_PATH_DOWN
:
nfs4_schedule_state_recovery
(
clp
);
return
;
}
return
;
}
spin_lock
(
&
clp
->
cl_lock
);
if
(
time_before
(
clp
->
cl_last_renewal
,
timestamp
))
...
...
@@ -1975,11 +1977,13 @@ nfs4_proc_renew(struct nfs4_client *clp)
int
status
;
status
=
rpc_call_sync
(
clp
->
cl_rpcclient
,
&
msg
,
0
);
if
(
status
<
0
)
return
status
;
spin_lock
(
&
clp
->
cl_lock
);
if
(
time_before
(
clp
->
cl_last_renewal
,
now
))
clp
->
cl_last_renewal
=
now
;
spin_unlock
(
&
clp
->
cl_lock
);
return
status
;
return
0
;
}
/*
...
...
fs/nfs/nfs4state.c
View file @
ef7306b4
...
...
@@ -842,7 +842,7 @@ static int reclaimer(void *ptr)
struct
reclaimer_args
*
args
=
(
struct
reclaimer_args
*
)
ptr
;
struct
nfs4_client
*
clp
=
args
->
clp
;
struct
nfs4_state_owner
*
sp
;
int
status
;
int
status
=
0
;
daemonize
(
"%u.%u.%u.%u-reclaim"
,
NIPQUAD
(
clp
->
cl_addr
));
allow_signal
(
SIGKILL
);
...
...
@@ -858,7 +858,7 @@ static int reclaimer(void *ptr)
goto
out
;
restart_loop:
status
=
nfs4_proc_renew
(
clp
);
if
(
status
==
0
)
if
(
status
==
0
||
status
==
-
NFS4ERR_CB_PATH_DOWN
)
goto
out
;
status
=
nfs4_init_client
(
clp
);
if
(
status
)
...
...
@@ -881,6 +881,8 @@ static int reclaimer(void *ptr)
unlock_kernel
();
wake_up_all
(
&
clp
->
cl_waitq
);
rpc_wake_up
(
&
clp
->
cl_rpcwaitq
);
if
(
status
==
-
NFS4ERR_CB_PATH_DOWN
)
nfs_handle_cb_pathdown
(
clp
);
nfs4_put_client
(
clp
);
return
0
;
out_error:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment