diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2010-03-17 11:53:04 -0400 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-05-17 18:25:12 -0400 |
commit | f553069e5d7c6f53688ae4470173fcb1be97cbe7 (patch) | |
tree | 3abf4bb73c5792a2f5ee38afe0d3aa2c8e243cea | |
parent | 21b667f69b023979410188d7d94c9b219f216626 (diff) |
ceph: update for removal of kref_set
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Sage Weil <sage@newdream.net>
-rw-r--r-- | fs/ceph/msgpool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/msgpool.c b/fs/ceph/msgpool.c index ca3b44a89f2d..030297f62fb7 100644 --- a/fs/ceph/msgpool.c +++ b/fs/ceph/msgpool.c | |||
@@ -170,7 +170,7 @@ void ceph_msgpool_put(struct ceph_msgpool *pool, struct ceph_msg *msg) | |||
170 | msg->front.iov_len = pool->front_len; | 170 | msg->front.iov_len = pool->front_len; |
171 | msg->hdr.front_len = cpu_to_le32(pool->front_len); | 171 | msg->hdr.front_len = cpu_to_le32(pool->front_len); |
172 | 172 | ||
173 | kref_set(&msg->kref, 1); /* retake a single ref */ | 173 | kref_init(&msg->kref); /* retake a single ref */ |
174 | list_add(&msg->list_head, &pool->msgs); | 174 | list_add(&msg->list_head, &pool->msgs); |
175 | pool->num++; | 175 | pool->num++; |
176 | dout("msgpool_put %p reclaim %p, now %d/%d\n", pool, msg, | 176 | dout("msgpool_put %p reclaim %p, now %d/%d\n", pool, msg, |