Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
7cd14861
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
7cd14861
编写于
8月 20, 2015
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFSv4: Add a tracepoint for CB_GETATTR
Signed-off-by:
N
Trond Myklebust
<
trond.myklebust@primarydata.com
>
上级
6a463beb
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
64 addition
and
1 deletion
+64
-1
fs/nfs/callback_proc.c
fs/nfs/callback_proc.c
+5
-1
fs/nfs/nfs4trace.h
fs/nfs/nfs4trace.h
+59
-0
未找到文件。
fs/nfs/callback_proc.c
浏览文件 @
7cd14861
...
...
@@ -40,8 +40,11 @@ __be32 nfs4_callback_getattr(struct cb_getattrargs *args,
rpc_peeraddr2str
(
cps
->
clp
->
cl_rpcclient
,
RPC_DISPLAY_ADDR
));
inode
=
nfs_delegation_find_inode
(
cps
->
clp
,
&
args
->
fh
);
if
(
inode
==
NULL
)
if
(
inode
==
NULL
)
{
trace_nfs4_cb_getattr
(
cps
->
clp
,
&
args
->
fh
,
inode
,
-
ntohl
(
res
->
status
));
goto
out
;
}
nfsi
=
NFS_I
(
inode
);
rcu_read_lock
();
delegation
=
rcu_dereference
(
nfsi
->
delegation
);
...
...
@@ -60,6 +63,7 @@ __be32 nfs4_callback_getattr(struct cb_getattrargs *args,
res
->
status
=
0
;
out_iput:
rcu_read_unlock
();
trace_nfs4_cb_getattr
(
cps
->
clp
,
&
args
->
fh
,
inode
,
-
ntohl
(
res
->
status
));
iput
(
inode
);
out:
dprintk
(
"%s: exit with status = %d
\n
"
,
__func__
,
ntohl
(
res
->
status
));
...
...
fs/nfs/nfs4trace.h
浏览文件 @
7cd14861
...
...
@@ -884,6 +884,65 @@ DEFINE_NFS4_GETATTR_EVENT(nfs4_getattr);
DEFINE_NFS4_GETATTR_EVENT
(
nfs4_lookup_root
);
DEFINE_NFS4_GETATTR_EVENT
(
nfs4_fsinfo
);
DECLARE_EVENT_CLASS
(
nfs4_inode_callback_event
,
TP_PROTO
(
const
struct
nfs_client
*
clp
,
const
struct
nfs_fh
*
fhandle
,
const
struct
inode
*
inode
,
int
error
),
TP_ARGS
(
clp
,
fhandle
,
inode
,
error
),
TP_STRUCT__entry
(
__field
(
int
,
error
)
__field
(
dev_t
,
dev
)
__field
(
u32
,
fhandle
)
__field
(
u64
,
fileid
)
__string
(
dstaddr
,
clp
?
rpc_peeraddr2str
(
clp
->
cl_rpcclient
,
RPC_DISPLAY_ADDR
)
:
"unknown"
)
),
TP_fast_assign
(
__entry
->
error
=
error
;
__entry
->
fhandle
=
nfs_fhandle_hash
(
fhandle
);
if
(
inode
!=
NULL
)
{
__entry
->
fileid
=
NFS_FILEID
(
inode
);
__entry
->
dev
=
inode
->
i_sb
->
s_dev
;
}
else
{
__entry
->
fileid
=
0
;
__entry
->
dev
=
0
;
}
__assign_str
(
dstaddr
,
clp
?
rpc_peeraddr2str
(
clp
->
cl_rpcclient
,
RPC_DISPLAY_ADDR
)
:
"unknown"
)
),
TP_printk
(
"error=%d (%s) fileid=%02x:%02x:%llu fhandle=0x%08x "
"dstaddr=%s"
,
__entry
->
error
,
show_nfsv4_errors
(
__entry
->
error
),
MAJOR
(
__entry
->
dev
),
MINOR
(
__entry
->
dev
),
(
unsigned
long
long
)
__entry
->
fileid
,
__entry
->
fhandle
,
__get_str
(
dstaddr
)
)
);
#define DEFINE_NFS4_INODE_CALLBACK_EVENT(name) \
DEFINE_EVENT(nfs4_inode_callback_event, name, \
TP_PROTO( \
const struct nfs_client *clp, \
const struct nfs_fh *fhandle, \
const struct inode *inode, \
int error \
), \
TP_ARGS(clp, fhandle, inode, error))
DEFINE_NFS4_INODE_CALLBACK_EVENT
(
nfs4_cb_getattr
);
DECLARE_EVENT_CLASS
(
nfs4_idmap_event
,
TP_PROTO
(
const
char
*
name
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录