summaryrefslogtreecommitdiffstats
path: root/fs/ceph/messenger.c
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2010-02-26 13:55:51 -0800
committerSage Weil <sage@newdream.net>2010-03-01 15:19:51 -0800
commit1679f876a641d209e7b22e43ebda0693c71003cf (patch)
tree6cb4ba61dac343c093d7a428c48a2bb7619f0a31 /fs/ceph/messenger.c
parent080af17e9c6360c5a835528e8de3141a46273ed2 (diff)
downloadlinux-stable-1679f876a641d209e7b22e43ebda0693c71003cf.tar.gz
linux-stable-1679f876a641d209e7b22e43ebda0693c71003cf.tar.bz2
linux-stable-1679f876a641d209e7b22e43ebda0693c71003cf.zip
ceph: reset bits on connection close
Clear LOSSYTX bit, so that if/when we reconnect, said reconnect will retry on failure. Clear _PENDING bits too, to avoid polluting subsequent connection state. Drop unused REGISTERED bit. Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/messenger.c')
-rw-r--r--fs/ceph/messenger.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ceph/messenger.c b/fs/ceph/messenger.c
index 0ddc2c75f6b4..bf4590c77cf6 100644
--- a/fs/ceph/messenger.c
+++ b/fs/ceph/messenger.c
@@ -342,6 +342,9 @@ void ceph_con_close(struct ceph_connection *con)
dout("con_close %p peer %s\n", con, pr_addr(&con->peer_addr.in_addr));
set_bit(CLOSED, &con->state); /* in case there's queued work */
clear_bit(STANDBY, &con->state); /* avoid connect_seq bump */
+ clear_bit(LOSSYTX, &con->state); /* so we retry next connect */
+ clear_bit(KEEPALIVE_PENDING, &con->state);
+ clear_bit(WRITE_PENDING, &con->state);
mutex_lock(&con->mutex);
reset_connection(con);
cancel_delayed_work(&con->work);