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
Kirill Smelkov
linux
Commits
22d38c4c
Commit
22d38c4c
authored
Jan 31, 2011
by
J. Bruce Fields
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nfsd4: add helper function for lease setup
Signed-off-by:
J. Bruce Fields
<
bfields@redhat.com
>
parent
6b57d9c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
12 deletions
+21
-12
fs/nfsd/nfs4state.c
fs/nfsd/nfs4state.c
+21
-12
No files found.
fs/nfsd/nfs4state.c
View file @
22d38c4c
...
...
@@ -2639,6 +2639,26 @@ static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
return
clp
->
cl_minorversion
&&
clp
->
cl_cb_state
==
NFSD4_CB_UNKNOWN
;
}
static
struct
file_lock
*
nfs4_alloc_init_lease
(
struct
nfs4_delegation
*
dp
,
int
flag
)
{
struct
file_lock
*
fl
;
fl
=
locks_alloc_lock
();
if
(
!
fl
)
return
NULL
;
locks_init_lock
(
fl
);
fl
->
fl_lmops
=
&
nfsd_lease_mng_ops
;
fl
->
fl_flags
=
FL_LEASE
;
fl
->
fl_type
=
flag
==
NFS4_OPEN_DELEGATE_READ
?
F_RDLCK
:
F_WRLCK
;
fl
->
fl_end
=
OFFSET_MAX
;
fl
->
fl_owner
=
(
fl_owner_t
)
dp
;
fl
->
fl_file
=
dp
->
dl_vfs_file
;
BUG_ON
(
!
fl
->
fl_file
);
fl
->
fl_pid
=
current
->
tgid
;
dp
->
dl_flock
=
fl
;
return
fl
;
}
/*
* Attempt to hand out a delegation.
*/
...
...
@@ -2684,20 +2704,9 @@ nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_sta
goto
out
;
}
status
=
-
ENOMEM
;
fl
=
locks_alloc_lock
(
);
fl
=
nfs4_alloc_init_lease
(
dp
,
flag
);
if
(
!
fl
)
goto
out
;
locks_init_lock
(
fl
);
fl
->
fl_lmops
=
&
nfsd_lease_mng_ops
;
fl
->
fl_flags
=
FL_LEASE
;
fl
->
fl_type
=
flag
==
NFS4_OPEN_DELEGATE_READ
?
F_RDLCK
:
F_WRLCK
;
fl
->
fl_end
=
OFFSET_MAX
;
fl
->
fl_owner
=
(
fl_owner_t
)
dp
;
fl
->
fl_file
=
find_readable_file
(
stp
->
st_file
);
BUG_ON
(
!
fl
->
fl_file
);
fl
->
fl_pid
=
current
->
tgid
;
dp
->
dl_flock
=
fl
;
/* vfs_setlease checks to see if delegation should be handed out.
* the lock_manager callback fl_change is used
*/
...
...
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