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
3b921a2b
Commit
3b921a2b
authored
Oct 20, 2020
by
Chuck Lever
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NFSD: Update ACCESS3arg decoder to use struct xdr_stream
Signed-off-by:
Chuck Lever
<
chuck.lever@oracle.com
>
parent
9575363a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
fs/nfsd/nfs3xdr.c
fs/nfsd/nfs3xdr.c
+5
-4
fs/nfsd/xdr3.h
fs/nfsd/xdr3.h
+1
-1
No files found.
fs/nfsd/nfs3xdr.c
View file @
3b921a2b
...
...
@@ -375,14 +375,15 @@ nfs3svc_decode_diropargs(struct svc_rqst *rqstp, __be32 *p)
int
nfs3svc_decode_accessargs
(
struct
svc_rqst
*
rqstp
,
__be32
*
p
)
{
struct
xdr_stream
*
xdr
=
&
rqstp
->
rq_arg_stream
;
struct
nfsd3_accessargs
*
args
=
rqstp
->
rq_argp
;
p
=
decode_fh
(
p
,
&
args
->
fh
);
if
(
!
p
)
if
(
!
svcxdr_decode_nfs_fh3
(
xdr
,
&
args
->
fh
))
return
0
;
if
(
xdr_stream_decode_u32
(
xdr
,
&
args
->
access
)
<
0
)
return
0
;
args
->
access
=
ntohl
(
*
p
++
);
return
xdr_argsize_check
(
rqstp
,
p
)
;
return
1
;
}
int
...
...
fs/nfsd/xdr3.h
View file @
3b921a2b
...
...
@@ -25,7 +25,7 @@ struct nfsd3_diropargs {
struct
nfsd3_accessargs
{
struct
svc_fh
fh
;
unsigned
int
access
;
__u32
access
;
};
struct
nfsd3_readargs
{
...
...
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