diff options
author | Sage Weil <sage@newdream.net> | 2009-11-18 11:22:36 -0800 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2009-11-18 11:29:42 -0800 |
commit | 42ce56e50d948fc7c1c8c3a749ee5a21a7e134f6 (patch) | |
tree | d9c65553d783b2dd0fff7489be15e314fa78203f /fs/ceph/messenger.h | |
parent | 11ea8eda064aa4dc6e44a6dade1891b69ebd5255 (diff) | |
download | blackbird-obmc-linux-42ce56e50d948fc7c1c8c3a749ee5a21a7e134f6.tar.gz blackbird-obmc-linux-42ce56e50d948fc7c1c8c3a749ee5a21a7e134f6.zip |
ceph: remove bad calls to ceph_con_shutdown
We want to ceph_con_close when we're done with the connection, before
the ref count reaches 0. Once it does, do not call ceph_con_shutdown,
as that takes the con mutex and may sleep, and besides that is
unnecessary.
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/messenger.h')
-rw-r--r-- | fs/ceph/messenger.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/ceph/messenger.h b/fs/ceph/messenger.h index 80f7e1e94448..4bd85c36308e 100644 --- a/fs/ceph/messenger.h +++ b/fs/ceph/messenger.h @@ -212,7 +212,6 @@ extern void ceph_messenger_destroy(struct ceph_messenger *); extern void ceph_con_init(struct ceph_messenger *msgr, struct ceph_connection *con); -extern void ceph_con_shutdown(struct ceph_connection *con); extern void ceph_con_open(struct ceph_connection *con, struct ceph_entity_addr *addr); extern void ceph_con_close(struct ceph_connection *con); |