diff options
Diffstat (limited to 'include/linux/ceph/messenger.h')
-rw-r--r-- | include/linux/ceph/messenger.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/ceph/messenger.h b/include/linux/ceph/messenger.h index 7c1420bb1dce..c1d3f5a65273 100644 --- a/include/linux/ceph/messenger.h +++ b/include/linux/ceph/messenger.h | |||
@@ -60,8 +60,8 @@ struct ceph_messenger { | |||
60 | u32 global_seq; | 60 | u32 global_seq; |
61 | spinlock_t global_seq_lock; | 61 | spinlock_t global_seq_lock; |
62 | 62 | ||
63 | u32 supported_features; | 63 | u64 supported_features; |
64 | u32 required_features; | 64 | u64 required_features; |
65 | }; | 65 | }; |
66 | 66 | ||
67 | enum ceph_msg_data_type { | 67 | enum ceph_msg_data_type { |
@@ -192,7 +192,7 @@ struct ceph_connection { | |||
192 | 192 | ||
193 | struct ceph_entity_name peer_name; /* peer name */ | 193 | struct ceph_entity_name peer_name; /* peer name */ |
194 | 194 | ||
195 | unsigned peer_features; | 195 | u64 peer_features; |
196 | u32 connect_seq; /* identify the most recent connection | 196 | u32 connect_seq; /* identify the most recent connection |
197 | attempt for this connection, client */ | 197 | attempt for this connection, client */ |
198 | u32 peer_global_seq; /* peer's global seq for this connection */ | 198 | u32 peer_global_seq; /* peer's global seq for this connection */ |
@@ -256,8 +256,8 @@ extern void ceph_msgr_flush(void); | |||
256 | 256 | ||
257 | extern void ceph_messenger_init(struct ceph_messenger *msgr, | 257 | extern void ceph_messenger_init(struct ceph_messenger *msgr, |
258 | struct ceph_entity_addr *myaddr, | 258 | struct ceph_entity_addr *myaddr, |
259 | u32 supported_features, | 259 | u64 supported_features, |
260 | u32 required_features, | 260 | u64 required_features, |
261 | bool nocrc); | 261 | bool nocrc); |
262 | 262 | ||
263 | extern void ceph_con_init(struct ceph_connection *con, void *private, | 263 | extern void ceph_con_init(struct ceph_connection *con, void *private, |