Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
0c0c267b
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
0c0c267b
编写于
3月 22, 2014
作者:
J
J. Bruce Fields
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
nfsd4: kill WRITEMEM
Signed-off-by:
N
J. Bruce Fields
<
bfields@redhat.com
>
上级
b64c7f3b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
28 addition
and
34 deletion
+28
-34
fs/nfsd/nfs4xdr.c
fs/nfsd/nfs4xdr.c
+28
-34
未找到文件。
fs/nfsd/nfs4xdr.c
浏览文件 @
0c0c267b
...
...
@@ -1683,12 +1683,6 @@ nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
DECODE_TAIL
;
}
#define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
*(p + XDR_QUADLEN(nbytes) -1) = 0; \
memcpy(p, ptr, nbytes); \
p += XDR_QUADLEN(nbytes); \
}} while (0)
static
void
write32
(
__be32
**
p
,
u32
n
)
{
*
(
*
p
)
++
=
htonl
(
n
);
...
...
@@ -1769,8 +1763,7 @@ static __be32 nfsd4_encode_components_esc(struct xdr_stream *xdr, char sep,
p
=
xdr_reserve_space
(
xdr
,
strlen
+
4
);
if
(
!
p
)
return
nfserr_resource
;
*
p
++
=
cpu_to_be32
(
strlen
);
WRITEMEM
(
str
,
strlen
);
p
=
xdr_encode_opaque
(
p
,
str
,
strlen
);
count
++
;
}
else
...
...
@@ -1865,8 +1858,7 @@ static __be32 nfsd4_encode_path(struct xdr_stream *xdr,
spin_unlock
(
&
dentry
->
d_lock
);
goto
out_free
;
}
*
p
++
=
cpu_to_be32
(
len
);
WRITEMEM
(
dentry
->
d_name
.
name
,
len
);
p
=
xdr_encode_opaque
(
p
,
dentry
->
d_name
.
name
,
len
);
dprintk
(
"/%s"
,
dentry
->
d_name
.
name
);
spin_unlock
(
&
dentry
->
d_lock
);
dput
(
dentry
);
...
...
@@ -2239,7 +2231,7 @@ nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
*
p
++
=
cpu_to_be32
(
MINOR
(
stat
.
dev
));
break
;
case
FSIDSOURCE_UUID
:
WRITEMEM
(
exp
->
ex_uuid
,
16
);
p
=
xdr_encode_opaque_fixed
(
p
,
exp
->
ex_uuid
,
16
);
break
;
}
}
...
...
@@ -2326,8 +2318,8 @@ nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
p
=
xdr_reserve_space
(
xdr
,
fhp
->
fh_handle
.
fh_size
+
4
);
if
(
!
p
)
goto
out_resource
;
*
p
++
=
cpu_to_be32
(
fhp
->
fh_handle
.
fh_size
);
WRITEMEM
(
&
fhp
->
fh_handle
.
fh_base
,
fhp
->
fh_handle
.
fh_size
);
p
=
xdr_encode_opaque
(
p
,
&
fhp
->
fh_handle
.
fh_base
,
fhp
->
fh_handle
.
fh_size
);
}
if
(
bmval0
&
FATTR4_WORD0_FILEID
)
{
p
=
xdr_reserve_space
(
xdr
,
8
);
...
...
@@ -2748,7 +2740,8 @@ nfsd4_encode_stateid(struct xdr_stream *xdr, stateid_t *sid)
if
(
!
p
)
return
nfserr_resource
;
*
p
++
=
cpu_to_be32
(
sid
->
si_generation
);
WRITEMEM
(
&
sid
->
si_opaque
,
sizeof
(
stateid_opaque_t
));
p
=
xdr_encode_opaque_fixed
(
p
,
&
sid
->
si_opaque
,
sizeof
(
stateid_opaque_t
));
return
0
;
}
...
...
@@ -2777,7 +2770,8 @@ static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp,
p
=
xdr_reserve_space
(
xdr
,
NFS4_MAX_SESSIONID_LEN
+
8
);
if
(
!
p
)
return
nfserr_resource
;
WRITEMEM
(
bcts
->
sessionid
.
data
,
NFS4_MAX_SESSIONID_LEN
);
p
=
xdr_encode_opaque_fixed
(
p
,
bcts
->
sessionid
.
data
,
NFS4_MAX_SESSIONID_LEN
);
*
p
++
=
cpu_to_be32
(
bcts
->
dir
);
/* Sorry, we do not yet support RDMA over 4.1: */
*
p
++
=
cpu_to_be32
(
0
);
...
...
@@ -2807,7 +2801,8 @@ nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_
p
=
xdr_reserve_space
(
xdr
,
NFS4_VERIFIER_SIZE
);
if
(
!
p
)
return
nfserr_resource
;
WRITEMEM
(
commit
->
co_verf
.
data
,
NFS4_VERIFIER_SIZE
);
p
=
xdr_encode_opaque_fixed
(
p
,
commit
->
co_verf
.
data
,
NFS4_VERIFIER_SIZE
);
}
return
nfserr
;
}
...
...
@@ -2858,8 +2853,7 @@ nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh
p
=
xdr_reserve_space
(
xdr
,
len
+
4
);
if
(
!
p
)
return
nfserr_resource
;
*
p
++
=
cpu_to_be32
(
len
);
WRITEMEM
(
&
fhp
->
fh_handle
.
fh_base
,
len
);
p
=
xdr_encode_opaque
(
p
,
&
fhp
->
fh_handle
.
fh_base
,
len
);
}
return
nfserr
;
}
...
...
@@ -2892,9 +2886,8 @@ nfsd4_encode_lock_denied(struct xdr_stream *xdr, struct nfsd4_lock_denied *ld)
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
);
p
=
xdr_encode_opaque_fixed
(
p
,
&
ld
->
ld_clientid
,
8
);
p
=
xdr_encode_opaque
(
p
,
conf
->
data
,
conf
->
len
);
}
else
{
/* non - nfsv4 lock in conflict, no clientid nor owner */
p
=
xdr_encode_hyper
(
p
,
(
u64
)
0
);
/* clientid */
*
p
++
=
cpu_to_be32
(
0
);
/* length of owner name */
...
...
@@ -3459,8 +3452,7 @@ nfsd4_do_encode_secinfo(struct xdr_stream *xdr,
if
(
!
p
)
goto
out
;
*
p
++
=
cpu_to_be32
(
RPC_AUTH_GSS
);
*
p
++
=
cpu_to_be32
(
info
.
oid
.
len
);
WRITEMEM
(
info
.
oid
.
data
,
info
.
oid
.
len
);
p
=
xdr_encode_opaque
(
p
,
info
.
oid
.
data
,
info
.
oid
.
len
);
*
p
++
=
cpu_to_be32
(
info
.
qop
);
*
p
++
=
cpu_to_be32
(
info
.
service
);
}
else
if
(
pf
<
RPC_AUTH_MAXFLAVOR
)
{
...
...
@@ -3542,8 +3534,9 @@ nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct n
p
=
xdr_reserve_space
(
xdr
,
8
+
NFS4_VERIFIER_SIZE
);
if
(
!
p
)
return
nfserr_resource
;
WRITEMEM
(
&
scd
->
se_clientid
,
8
);
WRITEMEM
(
&
scd
->
se_confirm
,
NFS4_VERIFIER_SIZE
);
p
=
xdr_encode_opaque_fixed
(
p
,
&
scd
->
se_clientid
,
8
);
p
=
xdr_encode_opaque_fixed
(
p
,
&
scd
->
se_confirm
,
NFS4_VERIFIER_SIZE
);
}
else
if
(
nfserr
==
nfserr_clid_inuse
)
{
p
=
xdr_reserve_space
(
xdr
,
8
);
...
...
@@ -3567,7 +3560,8 @@ nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_w
return
nfserr_resource
;
*
p
++
=
cpu_to_be32
(
write
->
wr_bytes_written
);
*
p
++
=
cpu_to_be32
(
write
->
wr_how_written
);
WRITEMEM
(
write
->
wr_verifier
.
data
,
NFS4_VERIFIER_SIZE
);
p
=
xdr_encode_opaque_fixed
(
p
,
write
->
wr_verifier
.
data
,
NFS4_VERIFIER_SIZE
);
}
return
nfserr
;
}
...
...
@@ -3608,7 +3602,7 @@ nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, __be32 nfserr,
if
(
!
p
)
return
nfserr_resource
;
WRITEMEM
(
&
exid
->
clientid
,
8
);
p
=
xdr_encode_opaque_fixed
(
p
,
&
exid
->
clientid
,
8
);
*
p
++
=
cpu_to_be32
(
exid
->
seqid
);
*
p
++
=
cpu_to_be32
(
exid
->
flags
);
...
...
@@ -3648,12 +3642,10 @@ nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, __be32 nfserr,
/* The server_owner struct */
p
=
xdr_encode_hyper
(
p
,
minor_id
);
/* Minor id */
/* major id */
*
p
++
=
cpu_to_be32
(
major_id_sz
);
WRITEMEM
(
major_id
,
major_id_sz
);
p
=
xdr_encode_opaque
(
p
,
major_id
,
major_id_sz
);
/* Server scope */
*
p
++
=
cpu_to_be32
(
server_scope_sz
);
WRITEMEM
(
server_scope
,
server_scope_sz
);
p
=
xdr_encode_opaque
(
p
,
server_scope
,
server_scope_sz
);
/* Implementation id */
*
p
++
=
cpu_to_be32
(
0
);
/* zero length nfs_impl_id4 array */
...
...
@@ -3673,7 +3665,8 @@ nfsd4_encode_create_session(struct nfsd4_compoundres *resp, __be32 nfserr,
p
=
xdr_reserve_space
(
xdr
,
24
);
if
(
!
p
)
return
nfserr_resource
;
WRITEMEM
(
sess
->
sessionid
.
data
,
NFS4_MAX_SESSIONID_LEN
);
p
=
xdr_encode_opaque_fixed
(
p
,
sess
->
sessionid
.
data
,
NFS4_MAX_SESSIONID_LEN
);
*
p
++
=
cpu_to_be32
(
sess
->
seqid
);
*
p
++
=
cpu_to_be32
(
sess
->
flags
);
...
...
@@ -3728,7 +3721,8 @@ nfsd4_encode_sequence(struct nfsd4_compoundres *resp, __be32 nfserr,
p
=
xdr_reserve_space
(
xdr
,
NFS4_MAX_SESSIONID_LEN
+
20
);
if
(
!
p
)
return
nfserr_resource
;
WRITEMEM
(
seq
->
sessionid
.
data
,
NFS4_MAX_SESSIONID_LEN
);
p
=
xdr_encode_opaque_fixed
(
p
,
seq
->
sessionid
.
data
,
NFS4_MAX_SESSIONID_LEN
);
*
p
++
=
cpu_to_be32
(
seq
->
seqid
);
*
p
++
=
cpu_to_be32
(
seq
->
slotid
);
/* Note slotid's are numbered from zero: */
...
...
@@ -3957,7 +3951,7 @@ nfsd4_encode_replay(struct xdr_stream *xdr, struct nfsd4_op *op)
*
p
++
=
cpu_to_be32
(
op
->
opnum
);
*
p
++
=
rp
->
rp_status
;
/* already xdr'ed */
WRITEMEM
(
rp
->
rp_buf
,
rp
->
rp_buflen
);
p
=
xdr_encode_opaque_fixed
(
p
,
rp
->
rp_buf
,
rp
->
rp_buflen
);
}
int
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录