diff options
author | Yan, Zheng <zyan@redhat.com> | 2019-07-25 20:16:39 +0800 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2019-09-16 12:06:23 +0200 |
commit | 120a75ea9f4ba02f852171e75d44f29139b9c83e (patch) | |
tree | 6944f51971e6adea422725866c0e81e5249ebc18 /net/ceph/messenger.c | |
parent | e09580b343aa117fd07c1bb7f7dfc5bc630a2953 (diff) | |
download | linux-stable-120a75ea9f4ba02f852171e75d44f29139b9c83e.tar.gz linux-stable-120a75ea9f4ba02f852171e75d44f29139b9c83e.tar.bz2 linux-stable-120a75ea9f4ba02f852171e75d44f29139b9c83e.zip |
libceph: add function that reset client's entity addr
This function also re-open connections to OSD/MON, and re-send in-flight
OSD requests after re-opening connections to OSD.
Signed-off-by: "Yan, Zheng" <zyan@redhat.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'net/ceph/messenger.c')
-rw-r--r-- | net/ceph/messenger.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c index 962f521c863e..e4cb3db2ee77 100644 --- a/net/ceph/messenger.c +++ b/net/ceph/messenger.c @@ -3031,6 +3031,12 @@ static void con_fault(struct ceph_connection *con) } +void ceph_messenger_reset_nonce(struct ceph_messenger *msgr) +{ + u32 nonce = le32_to_cpu(msgr->inst.addr.nonce) + 1000000; + msgr->inst.addr.nonce = cpu_to_le32(nonce); + encode_my_addr(msgr); +} /* * initialize a new messenger instance |