diff options
author | Yehuda Sadeh <yehuda@hq.newdream.net> | 2010-01-13 17:03:23 -0800 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-01-25 12:58:08 -0800 |
commit | 0d59ab81c3d3adf466c3fd37d7fb6d46b05d1fd4 (patch) | |
tree | 1cdf338188bc323379ced8d5e1bdec31f500768c /fs/ceph/messenger.h | |
parent | 0547a9b30a5ac8680325752b61d3ffa9d4971b6e (diff) |
ceph: keep reserved replies on the request structure
This includes treating all the data preallocation and revokation
at the same place, not having to have a special case for
the reserved pages.
Signed-off-by: Yehuda Sadeh <yehuda@hq.newdream.net>
Diffstat (limited to 'fs/ceph/messenger.h')
-rw-r--r-- | fs/ceph/messenger.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ceph/messenger.h b/fs/ceph/messenger.h index dca2d32b40d..c26a3d8aa78 100644 --- a/fs/ceph/messenger.h +++ b/fs/ceph/messenger.h @@ -226,8 +226,8 @@ extern void ceph_con_open(struct ceph_connection *con, extern void ceph_con_close(struct ceph_connection *con); extern void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg); extern void ceph_con_revoke(struct ceph_connection *con, struct ceph_msg *msg); -extern void ceph_con_revoke_pages(struct ceph_connection *con, - struct page **pages); +extern void ceph_con_revoke_message(struct ceph_connection *con, + struct ceph_msg *msg); extern void ceph_con_keepalive(struct ceph_connection *con); extern struct ceph_connection *ceph_con_get(struct ceph_connection *con); extern void ceph_con_put(struct ceph_connection *con); |