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
b64c7f3b
Commit
b64c7f3b
authored
Mar 22, 2014
by
J. Bruce Fields
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nfsd4: kill WRITE64
Signed-off-by:
J. Bruce Fields
<
bfields@redhat.com
>
parent
c373b0a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
28 deletions
+24
-28
fs/nfsd/nfs4xdr.c
fs/nfsd/nfs4xdr.c
+24
-28
No files found.
fs/nfsd/nfs4xdr.c
View file @
b64c7f3b
...
...
@@ -1683,10 +1683,6 @@ nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
DECODE_TAIL
;
}
#define WRITE64(n) do { \
*p++ = htonl((u32)((n) >> 32)); \
*p++ = htonl((u32)(n)); \
} while (0)
#define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
*(p + XDR_QUADLEN(nbytes) -1) = 0; \
memcpy(p, ptr, nbytes); \
...
...
@@ -2204,7 +2200,7 @@ nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
p
=
xdr_reserve_space
(
xdr
,
8
);
if
(
!
p
)
goto
out_resource
;
WRITE64
(
stat
.
size
);
p
=
xdr_encode_hyper
(
p
,
stat
.
size
);
}
if
(
bmval0
&
FATTR4_WORD0_LINK_SUPPORT
)
{
p
=
xdr_reserve_space
(
xdr
,
4
);
...
...
@@ -2229,12 +2225,12 @@ nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
if
(
!
p
)
goto
out_resource
;
if
(
exp
->
ex_fslocs
.
migrated
)
{
WRITE64
(
NFS4_REFERRAL_FSID_MAJOR
);
WRITE64
(
NFS4_REFERRAL_FSID_MINOR
);
p
=
xdr_encode_hyper
(
p
,
NFS4_REFERRAL_FSID_MAJOR
);
p
=
xdr_encode_hyper
(
p
,
NFS4_REFERRAL_FSID_MINOR
);
}
else
switch
(
fsid_source
(
fhp
))
{
case
FSIDSOURCE_FSID
:
WRITE64
(
(
u64
)
exp
->
ex_fsid
);
WRITE64
(
(
u64
)
0
);
p
=
xdr_encode_hyper
(
p
,
(
u64
)
exp
->
ex_fsid
);
p
=
xdr_encode_hyper
(
p
,
(
u64
)
0
);
break
;
case
FSIDSOURCE_DEV
:
*
p
++
=
cpu_to_be32
(
0
);
...
...
@@ -2337,25 +2333,25 @@ nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
p
=
xdr_reserve_space
(
xdr
,
8
);
if
(
!
p
)
goto
out_resource
;
WRITE64
(
stat
.
ino
);
p
=
xdr_encode_hyper
(
p
,
stat
.
ino
);
}
if
(
bmval0
&
FATTR4_WORD0_FILES_AVAIL
)
{
p
=
xdr_reserve_space
(
xdr
,
8
);
if
(
!
p
)
goto
out_resource
;
WRITE64
(
(
u64
)
statfs
.
f_ffree
);
p
=
xdr_encode_hyper
(
p
,
(
u64
)
statfs
.
f_ffree
);
}
if
(
bmval0
&
FATTR4_WORD0_FILES_FREE
)
{
p
=
xdr_reserve_space
(
xdr
,
8
);
if
(
!
p
)
goto
out_resource
;
WRITE64
(
(
u64
)
statfs
.
f_ffree
);
p
=
xdr_encode_hyper
(
p
,
(
u64
)
statfs
.
f_ffree
);
}
if
(
bmval0
&
FATTR4_WORD0_FILES_TOTAL
)
{
p
=
xdr_reserve_space
(
xdr
,
8
);
if
(
!
p
)
goto
out_resource
;
WRITE64
(
(
u64
)
statfs
.
f_files
);
p
=
xdr_encode_hyper
(
p
,
(
u64
)
statfs
.
f_files
);
}
if
(
bmval0
&
FATTR4_WORD0_FS_LOCATIONS
)
{
status
=
nfsd4_encode_fs_locations
(
xdr
,
rqstp
,
exp
);
...
...
@@ -2372,7 +2368,7 @@ nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
p
=
xdr_reserve_space
(
xdr
,
8
);
if
(
!
p
)
goto
out_resource
;
WRITE64
(
exp
->
ex_path
.
mnt
->
mnt_sb
->
s_maxbytes
);
p
=
xdr_encode_hyper
(
p
,
exp
->
ex_path
.
mnt
->
mnt_sb
->
s_maxbytes
);
}
if
(
bmval0
&
FATTR4_WORD0_MAXLINK
)
{
p
=
xdr_reserve_space
(
xdr
,
4
);
...
...
@@ -2390,13 +2386,13 @@ nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
p
=
xdr_reserve_space
(
xdr
,
8
);
if
(
!
p
)
goto
out_resource
;
WRITE64
(
(
u64
)
svc_max_payload
(
rqstp
));
p
=
xdr_encode_hyper
(
p
,
(
u64
)
svc_max_payload
(
rqstp
));
}
if
(
bmval0
&
FATTR4_WORD0_MAXWRITE
)
{
p
=
xdr_reserve_space
(
xdr
,
8
);
if
(
!
p
)
goto
out_resource
;
WRITE64
(
(
u64
)
svc_max_payload
(
rqstp
));
p
=
xdr_encode_hyper
(
p
,
(
u64
)
svc_max_payload
(
rqstp
));
}
if
(
bmval1
&
FATTR4_WORD1_MODE
)
{
p
=
xdr_reserve_space
(
xdr
,
4
);
...
...
@@ -2438,34 +2434,34 @@ nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
if
(
!
p
)
goto
out_resource
;
dummy64
=
(
u64
)
statfs
.
f_bavail
*
(
u64
)
statfs
.
f_bsize
;
WRITE64
(
dummy64
);
p
=
xdr_encode_hyper
(
p
,
dummy64
);
}
if
(
bmval1
&
FATTR4_WORD1_SPACE_FREE
)
{
p
=
xdr_reserve_space
(
xdr
,
8
);
if
(
!
p
)
goto
out_resource
;
dummy64
=
(
u64
)
statfs
.
f_bfree
*
(
u64
)
statfs
.
f_bsize
;
WRITE64
(
dummy64
);
p
=
xdr_encode_hyper
(
p
,
dummy64
);
}
if
(
bmval1
&
FATTR4_WORD1_SPACE_TOTAL
)
{
p
=
xdr_reserve_space
(
xdr
,
8
);
if
(
!
p
)
goto
out_resource
;
dummy64
=
(
u64
)
statfs
.
f_blocks
*
(
u64
)
statfs
.
f_bsize
;
WRITE64
(
dummy64
);
p
=
xdr_encode_hyper
(
p
,
dummy64
);
}
if
(
bmval1
&
FATTR4_WORD1_SPACE_USED
)
{
p
=
xdr_reserve_space
(
xdr
,
8
);
if
(
!
p
)
goto
out_resource
;
dummy64
=
(
u64
)
stat
.
blocks
<<
9
;
WRITE64
(
dummy64
);
p
=
xdr_encode_hyper
(
p
,
dummy64
);
}
if
(
bmval1
&
FATTR4_WORD1_TIME_ACCESS
)
{
p
=
xdr_reserve_space
(
xdr
,
12
);
if
(
!
p
)
goto
out_resource
;
WRITE64
(
(
s64
)
stat
.
atime
.
tv_sec
);
p
=
xdr_encode_hyper
(
p
,
(
s64
)
stat
.
atime
.
tv_sec
);
*
p
++
=
cpu_to_be32
(
stat
.
atime
.
tv_nsec
);
}
if
(
bmval1
&
FATTR4_WORD1_TIME_DELTA
)
{
...
...
@@ -2480,14 +2476,14 @@ nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
p
=
xdr_reserve_space
(
xdr
,
12
);
if
(
!
p
)
goto
out_resource
;
WRITE64
(
(
s64
)
stat
.
ctime
.
tv_sec
);
p
=
xdr_encode_hyper
(
p
,
(
s64
)
stat
.
ctime
.
tv_sec
);
*
p
++
=
cpu_to_be32
(
stat
.
ctime
.
tv_nsec
);
}
if
(
bmval1
&
FATTR4_WORD1_TIME_MODIFY
)
{
p
=
xdr_reserve_space
(
xdr
,
12
);
if
(
!
p
)
goto
out_resource
;
WRITE64
(
(
s64
)
stat
.
mtime
.
tv_sec
);
p
=
xdr_encode_hyper
(
p
,
(
s64
)
stat
.
mtime
.
tv_sec
);
*
p
++
=
cpu_to_be32
(
stat
.
mtime
.
tv_nsec
);
}
if
(
bmval1
&
FATTR4_WORD1_MOUNTED_ON_FILEID
)
{
...
...
@@ -2501,7 +2497,7 @@ nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
if
(
ignore_crossmnt
==
0
&&
dentry
==
exp
->
ex_path
.
mnt
->
mnt_root
)
get_parent_attributes
(
exp
,
&
stat
);
WRITE64
(
stat
.
ino
);
p
=
xdr_encode_hyper
(
p
,
stat
.
ino
);
}
if
(
bmval2
&
FATTR4_WORD2_SECURITY_LABEL
)
{
status
=
nfsd4_encode_security_label
(
xdr
,
rqstp
,
context
,
...
...
@@ -2892,15 +2888,15 @@ nfsd4_encode_lock_denied(struct xdr_stream *xdr, struct nfsd4_lock_denied *ld)
}
return
nfserr_resource
;
}
WRITE64
(
ld
->
ld_start
);
WRITE64
(
ld
->
ld_length
);
p
=
xdr_encode_hyper
(
p
,
ld
->
ld_start
);
p
=
xdr_encode_hyper
(
p
,
ld
->
ld_length
);
*
p
++
=
cpu_to_be32
(
ld
->
ld_type
);
if
(
conf
->
len
)
{
WRITEMEM
(
&
ld
->
ld_clientid
,
8
);
*
p
++
=
cpu_to_be32
(
conf
->
len
);
WRITEMEM
(
conf
->
data
,
conf
->
len
);
}
else
{
/* non - nfsv4 lock in conflict, no clientid nor owner */
WRITE64
(
(
u64
)
0
);
/* clientid */
p
=
xdr_encode_hyper
(
p
,
(
u64
)
0
);
/* clientid */
*
p
++
=
cpu_to_be32
(
0
);
/* length of owner name */
}
return
nfserr_denied
;
...
...
@@ -3650,7 +3646,7 @@ nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, __be32 nfserr,
return
nfserr_resource
;
/* The server_owner struct */
WRITE64
(
minor_id
);
/* Minor id */
p
=
xdr_encode_hyper
(
p
,
minor_id
);
/* Minor id */
/* major id */
*
p
++
=
cpu_to_be32
(
major_id_sz
);
WRITEMEM
(
major_id
,
major_id_sz
);
...
...
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