mirror of
https://github.com/ceph/ceph
synced 2025-02-21 01:47:25 +00:00
Merge pull request #17772 from amitkumar50/cov-misc-3
client,osd,test: Initialize fuse_req_key,snap,who,seq Reviewed-by: Sage Weil <sage@redhat.com>
This commit is contained in:
commit
80da199dc2
@ -93,7 +93,7 @@ public:
|
||||
ceph::unordered_map<uint64_t,int> snap_stag_map;
|
||||
ceph::unordered_map<int,uint64_t> stag_snap_map;
|
||||
|
||||
pthread_key_t fuse_req_key;
|
||||
pthread_key_t fuse_req_key = 0;
|
||||
void set_fuse_req(fuse_req_t);
|
||||
fuse_req_t get_fuse_req();
|
||||
|
||||
|
@ -774,8 +774,8 @@ struct Payload {
|
||||
PING = 0,
|
||||
PONG = 1,
|
||||
};
|
||||
uint8_t who;
|
||||
uint64_t seq;
|
||||
uint8_t who = 0;
|
||||
uint64_t seq = 0;
|
||||
bufferlist data;
|
||||
|
||||
Payload(Who who, uint64_t seq, const bufferlist& data)
|
||||
|
@ -2314,7 +2314,7 @@ public:
|
||||
string oid;
|
||||
bool dirty;
|
||||
ObjectDesc old_value;
|
||||
int snap;
|
||||
int snap = 0;
|
||||
ceph::shared_ptr<int> in_use;
|
||||
|
||||
IsDirtyOp(int n,
|
||||
|
Loading…
Reference in New Issue
Block a user