diff options
author | Ilya Dryomov <idryomov@gmail.com> | 2016-11-08 17:15:24 +0300 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2016-11-10 22:13:08 +0300 |
commit | 264048afab27d7c27eedf5394714e0b396d787f7 (patch) | |
tree | fd41d2587eaddd4edeb7dd805445abaf629622ae /net | |
parent | 3890dce1d3a8b9fe3bc36de99496792e468cd079 (diff) | |
download | linux-264048afab27d7c27eedf5394714e0b396d787f7.tar.xz |
libceph: initialize last_linger_id with a large integer
osdc->last_linger_id is a counter for lreq->linger_id, which is used
for watch cookies. Starting with a large integer should ease the task
of telling apart kernel and userspace clients.
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/ceph/osd_client.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c index d9bf7a1d0a58..e6ae15bc41b7 100644 --- a/net/ceph/osd_client.c +++ b/net/ceph/osd_client.c @@ -4094,6 +4094,7 @@ int ceph_osdc_init(struct ceph_osd_client *osdc, struct ceph_client *client) osd_init(&osdc->homeless_osd); osdc->homeless_osd.o_osdc = osdc; osdc->homeless_osd.o_osd = CEPH_HOMELESS_OSD; + osdc->last_linger_id = CEPH_LINGER_ID_START; osdc->linger_requests = RB_ROOT; osdc->map_checks = RB_ROOT; osdc->linger_map_checks = RB_ROOT; |