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
4d74380a
Commit
4d74380a
authored
Oct 22, 2020
by
Chuck Lever
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NFSD: Update the NFSv3 LINK3res encoder to use struct xdr_stream
Signed-off-by:
Chuck Lever
<
chuck.lever@oracle.com
>
parent
89d79e96
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
fs/nfsd/nfs3xdr.c
fs/nfsd/nfs3xdr.c
+4
-4
No files found.
fs/nfsd/nfs3xdr.c
View file @
4d74380a
...
@@ -1128,12 +1128,12 @@ nfs3svc_encode_renameres(struct svc_rqst *rqstp, __be32 *p)
...
@@ -1128,12 +1128,12 @@ nfs3svc_encode_renameres(struct svc_rqst *rqstp, __be32 *p)
int
int
nfs3svc_encode_linkres
(
struct
svc_rqst
*
rqstp
,
__be32
*
p
)
nfs3svc_encode_linkres
(
struct
svc_rqst
*
rqstp
,
__be32
*
p
)
{
{
struct
xdr_stream
*
xdr
=
&
rqstp
->
rq_res_stream
;
struct
nfsd3_linkres
*
resp
=
rqstp
->
rq_resp
;
struct
nfsd3_linkres
*
resp
=
rqstp
->
rq_resp
;
*
p
++
=
resp
->
status
;
return
svcxdr_encode_nfsstat3
(
xdr
,
resp
->
status
)
&&
p
=
encode_post_op_attr
(
rqstp
,
p
,
&
resp
->
fh
);
svcxdr_encode_post_op_attr
(
rqstp
,
xdr
,
&
resp
->
fh
)
&&
p
=
encode_wcc_data
(
rqstp
,
p
,
&
resp
->
tfh
);
svcxdr_encode_wcc_data
(
rqstp
,
xdr
,
&
resp
->
tfh
);
return
xdr_ressize_check
(
rqstp
,
p
);
}
}
/* READDIR */
/* READDIR */
...
...
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