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
22b03214
Commit
22b03214
authored
Apr 09, 2011
by
J. Bruce Fields
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nfsd4: introduce OPDESC helper
Signed-off-by:
J. Bruce Fields
<
bfields@redhat.com
>
parent
204f4ce7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
fs/nfsd/nfs4proc.c
fs/nfsd/nfs4proc.c
+6
-1
No files found.
fs/nfsd/nfs4proc.c
View file @
22b03214
...
...
@@ -1031,6 +1031,11 @@ static __be32 nfs41_check_op_ordering(struct nfsd4_compoundargs *args)
return
nfs_ok
;
}
static
inline
struct
nfsd4_operation
*
OPDESC
(
struct
nfsd4_op
*
op
)
{
return
&
nfsd4_ops
[
op
->
opnum
];
}
/*
* COMPOUND call.
*/
...
...
@@ -1108,7 +1113,7 @@ nfsd4_proc_compound(struct svc_rqst *rqstp,
goto
encode_op
;
}
opdesc
=
&
nfsd4_ops
[
op
->
opnum
]
;
opdesc
=
OPDESC
(
op
)
;
if
(
!
cstate
->
current_fh
.
fh_dentry
)
{
if
(
!
(
opdesc
->
op_flags
&
ALLOWED_WITHOUT_FH
))
{
...
...
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