Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
linux
Commits
89d79e96
Commit
89d79e96
authored
4 years ago
by
Chuck Lever
Browse files
Options
Download
Email Patches
Plain Diff
NFSD: Update the NFSv3 RENAMEv3res encoder to use struct xdr_stream
Signed-off-by:
Chuck Lever
<
chuck.lever@oracle.com
>
parent
78315b36
Changes
1
Hide 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 @
89d79e96
...
...
@@ -1116,12 +1116,12 @@ nfs3svc_encode_createres(struct svc_rqst *rqstp, __be32 *p)
int
nfs3svc_encode_renameres
(
struct
svc_rqst
*
rqstp
,
__be32
*
p
)
{
struct
xdr_stream
*
xdr
=
&
rqstp
->
rq_res_stream
;
struct
nfsd3_renameres
*
resp
=
rqstp
->
rq_resp
;
*
p
++
=
resp
->
status
;
p
=
encode_wcc_data
(
rqstp
,
p
,
&
resp
->
ffh
);
p
=
encode_wcc_data
(
rqstp
,
p
,
&
resp
->
tfh
);
return
xdr_ressize_check
(
rqstp
,
p
);
return
svcxdr_encode_nfsstat3
(
xdr
,
resp
->
status
)
&&
svcxdr_encode_wcc_data
(
rqstp
,
xdr
,
&
resp
->
ffh
)
&&
svcxdr_encode_wcc_data
(
rqstp
,
xdr
,
&
resp
->
tfh
);
}
/* LINK */
...
...
This diff is collapsed.
Click to expand it.
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