diff options
author | Alex Elder <elder@inktank.com> | 2012-05-23 15:35:23 -0400 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2012-07-06 00:14:27 -0400 |
commit | e27947c767f5bed15048f4e4dad3e2eb69133697 (patch) | |
tree | 7521d46e58b360930d95f7eeb86396d4f729db57 /include/linux/ceph | |
parent | 3ec50d1868a9e0493046400bb1fdd054c7f64ebd (diff) |
libceph: define and use an explicit CONNECTED state
There is no state explicitly defined when a ceph connection is fully
operational. So define one.
It's set when the connection sequence completes successfully, and is
cleared when the connection gets closed.
Be a little more careful when examining the old state when a socket
disconnect event is reported.
Signed-off-by: Alex Elder <elder@inktank.com>
Reviewed-by: Sage Weil <sage@inktank.com>
Diffstat (limited to 'include/linux/ceph')
-rw-r--r-- | include/linux/ceph/messenger.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/ceph/messenger.h b/include/linux/ceph/messenger.h index cc6f9bdcf466..002d504df3b7 100644 --- a/include/linux/ceph/messenger.h +++ b/include/linux/ceph/messenger.h | |||
@@ -120,6 +120,7 @@ struct ceph_msg_pos { | |||
120 | */ | 120 | */ |
121 | #define CONNECTING 1 | 121 | #define CONNECTING 1 |
122 | #define NEGOTIATING 2 | 122 | #define NEGOTIATING 2 |
123 | #define CONNECTED 5 | ||
123 | #define STANDBY 8 /* no outgoing messages, socket closed. we keep | 124 | #define STANDBY 8 /* no outgoing messages, socket closed. we keep |
124 | * the ceph_connection around to maintain shared | 125 | * the ceph_connection around to maintain shared |
125 | * state with the peer. */ | 126 | * state with the peer. */ |