Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
415e49a9
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
415e49a9
编写于
12月 07, 2009
作者:
S
Sage Weil
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ceph: use kref for ceph_osd_request
Signed-off-by:
N
Sage Weil
<
sage@newdream.net
>
上级
153c8e6b
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
26 addition
and
22 deletion
+26
-22
fs/ceph/osd_client.c
fs/ceph/osd_client.c
+18
-19
fs/ceph/osd_client.h
fs/ceph/osd_client.h
+8
-3
未找到文件。
fs/ceph/osd_client.c
浏览文件 @
415e49a9
...
...
@@ -77,25 +77,24 @@ static void calc_layout(struct ceph_osd_client *osdc,
/*
* requests
*/
void
ceph_osdc_
put_request
(
struct
ceph_osd_request
*
req
)
void
ceph_osdc_
release_request
(
struct
kref
*
kref
)
{
dout
(
"osdc put_request %p %d -> %d
\n
"
,
req
,
atomic_read
(
&
req
->
r_ref
),
atomic_read
(
&
req
->
r_ref
)
-
1
);
BUG_ON
(
atomic_read
(
&
req
->
r_ref
)
<=
0
);
if
(
atomic_dec_and_test
(
&
req
->
r_ref
))
{
if
(
req
->
r_request
)
ceph_msg_put
(
req
->
r_request
);
if
(
req
->
r_reply
)
ceph_msg_put
(
req
->
r_reply
);
if
(
req
->
r_own_pages
)
ceph_release_page_vector
(
req
->
r_pages
,
req
->
r_num_pages
);
ceph_put_snap_context
(
req
->
r_snapc
);
if
(
req
->
r_mempool
)
mempool_free
(
req
,
req
->
r_osdc
->
req_mempool
);
else
kfree
(
req
);
}
struct
ceph_osd_request
*
req
=
container_of
(
kref
,
struct
ceph_osd_request
,
r_kref
);
if
(
req
->
r_request
)
ceph_msg_put
(
req
->
r_request
);
if
(
req
->
r_reply
)
ceph_msg_put
(
req
->
r_reply
);
if
(
req
->
r_own_pages
)
ceph_release_page_vector
(
req
->
r_pages
,
req
->
r_num_pages
);
ceph_put_snap_context
(
req
->
r_snapc
);
if
(
req
->
r_mempool
)
mempool_free
(
req
,
req
->
r_osdc
->
req_mempool
);
else
kfree
(
req
);
}
/*
...
...
@@ -149,7 +148,7 @@ struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *osdc,
req
->
r_osdc
=
osdc
;
req
->
r_mempool
=
use_mempool
;
atomic_set
(
&
req
->
r_ref
,
1
);
kref_init
(
&
req
->
r_kref
);
init_completion
(
&
req
->
r_completion
);
init_completion
(
&
req
->
r_safe_completion
);
INIT_LIST_HEAD
(
&
req
->
r_unsafe_item
);
...
...
fs/ceph/osd_client.h
浏览文件 @
415e49a9
...
...
@@ -2,6 +2,7 @@
#define _FS_CEPH_OSD_CLIENT_H
#include <linux/completion.h>
#include <linux/kref.h>
#include <linux/mempool.h>
#include <linux/rbtree.h>
...
...
@@ -49,7 +50,7 @@ struct ceph_osd_request {
int
r_prepared_pages
,
r_got_reply
;
struct
ceph_osd_client
*
r_osdc
;
atomic_t
r_
ref
;
struct
kref
r_k
ref
;
bool
r_mempool
;
struct
completion
r_completion
,
r_safe_completion
;
ceph_osdc_callback_t
r_callback
,
r_safe_callback
;
...
...
@@ -118,9 +119,13 @@ extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
static
inline
void
ceph_osdc_get_request
(
struct
ceph_osd_request
*
req
)
{
atomic_inc
(
&
req
->
r_ref
);
kref_get
(
&
req
->
r_kref
);
}
extern
void
ceph_osdc_release_request
(
struct
kref
*
kref
);
static
inline
void
ceph_osdc_put_request
(
struct
ceph_osd_request
*
req
)
{
kref_put
(
&
req
->
r_kref
,
ceph_osdc_release_request
);
}
extern
void
ceph_osdc_put_request
(
struct
ceph_osd_request
*
req
);
extern
int
ceph_osdc_start_request
(
struct
ceph_osd_client
*
osdc
,
struct
ceph_osd_request
*
req
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录