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
ded04a58
Commit
ded04a58
authored
Nov 06, 2020
by
Chuck Lever
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NFSD: Update the NFSv3 PATHCONF3res encoder to use struct xdr_stream
Signed-off-by:
Chuck Lever
<
chuck.lever@oracle.com
>
parent
0a139d1b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
13 deletions
+49
-13
fs/nfsd/nfs3xdr.c
fs/nfsd/nfs3xdr.c
+33
-11
include/linux/sunrpc/xdr.h
include/linux/sunrpc/xdr.h
+16
-2
No files found.
fs/nfsd/nfs3xdr.c
View file @
ded04a58
...
...
@@ -1501,25 +1501,47 @@ nfs3svc_encode_fsinfores(struct svc_rqst *rqstp, __be32 *p)
return
1
;
}
static
bool
svcxdr_encode_pathconf3resok
(
struct
xdr_stream
*
xdr
,
const
struct
nfsd3_pathconfres
*
resp
)
{
__be32
*
p
;
p
=
xdr_reserve_space
(
xdr
,
XDR_UNIT
*
6
);
if
(
!
p
)
return
false
;
*
p
++
=
cpu_to_be32
(
resp
->
p_link_max
);
*
p
++
=
cpu_to_be32
(
resp
->
p_name_max
);
p
=
xdr_encode_bool
(
p
,
resp
->
p_no_trunc
);
p
=
xdr_encode_bool
(
p
,
resp
->
p_chown_restricted
);
p
=
xdr_encode_bool
(
p
,
resp
->
p_case_insensitive
);
xdr_encode_bool
(
p
,
resp
->
p_case_preserving
);
return
true
;
}
/* PATHCONF */
int
nfs3svc_encode_pathconfres
(
struct
svc_rqst
*
rqstp
,
__be32
*
p
)
{
struct
xdr_stream
*
xdr
=
&
rqstp
->
rq_res_stream
;
struct
nfsd3_pathconfres
*
resp
=
rqstp
->
rq_resp
;
*
p
++
=
resp
->
status
;
*
p
++
=
xdr_zero
;
/* no post_op_attr */
if
(
resp
->
status
==
0
)
{
*
p
++
=
htonl
(
resp
->
p_link_max
);
*
p
++
=
htonl
(
resp
->
p_name_max
);
*
p
++
=
htonl
(
resp
->
p_no_trunc
);
*
p
++
=
htonl
(
resp
->
p_chown_restricted
);
*
p
++
=
htonl
(
resp
->
p_case_insensitive
);
*
p
++
=
htonl
(
resp
->
p_case_preserving
);
if
(
!
svcxdr_encode_nfsstat3
(
xdr
,
resp
->
status
))
return
0
;
switch
(
resp
->
status
)
{
case
nfs_ok
:
if
(
!
svcxdr_encode_post_op_attr
(
rqstp
,
xdr
,
&
nfs3svc_null_fh
))
return
0
;
if
(
!
svcxdr_encode_pathconf3resok
(
xdr
,
resp
))
return
0
;
break
;
default:
if
(
!
svcxdr_encode_post_op_attr
(
rqstp
,
xdr
,
&
nfs3svc_null_fh
))
return
0
;
}
return
xdr_ressize_check
(
rqstp
,
p
)
;
return
1
;
}
/* COMMIT */
...
...
include/linux/sunrpc/xdr.h
View file @
ded04a58
...
...
@@ -395,7 +395,21 @@ static inline int xdr_stream_encode_item_absent(struct xdr_stream *xdr)
}
/**
* xdr_stream_encode_bool - Encode a "not present" list item
* xdr_encode_bool - Encode a boolean item
* @p: address in a buffer into which to encode
* @n: boolean value to encode
*
* Return value:
* Address of item following the encoded boolean
*/
static
inline
__be32
*
xdr_encode_bool
(
__be32
*
p
,
u32
n
)
{
*
p
=
n
?
xdr_one
:
xdr_zero
;
return
p
++
;
}
/**
* xdr_stream_encode_bool - Encode a boolean item
* @xdr: pointer to xdr_stream
* @n: boolean value to encode
*
...
...
@@ -410,7 +424,7 @@ static inline int xdr_stream_encode_bool(struct xdr_stream *xdr, __u32 n)
if
(
unlikely
(
!
p
))
return
-
EMSGSIZE
;
*
p
=
n
?
xdr_one
:
xdr_zero
;
xdr_encode_bool
(
p
,
n
)
;
return
len
;
}
...
...
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