aboutsummaryrefslogtreecommitdiffstats
path: root/net/ceph/ceph_common.c
diff options
context:
space:
mode:
authorIlya Dryomov <ilya.dryomov@inktank.com>2013-12-24 14:19:23 -0500
committerIlya Dryomov <ilya.dryomov@inktank.com>2013-12-31 13:32:08 -0500
commit12b4629a9fb80fecaebadc217b13b8776ed8dbef (patch)
treed4b02104183be9d6e20634812949059f4dcd70d7 /net/ceph/ceph_common.c
parente37180c0f2f0c5b21e9295d5b19874ff4a659be1 (diff)
libceph: all features fields must be u64
In preparation for ceph_features.h update, change all features fields from unsigned int/u32 to u64. (ceph.git has ~40 feature bits at this point.) Signed-off-by: Ilya Dryomov <ilya.dryomov@inktank.com> Reviewed-by: Sage Weil <sage@inktank.com>
Diffstat (limited to 'net/ceph/ceph_common.c')
-rw-r--r--net/ceph/ceph_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ceph/ceph_common.c b/net/ceph/ceph_common.c
index 34b11ee8124e..43d8177a52e1 100644
--- a/net/ceph/ceph_common.c
+++ b/net/ceph/ceph_common.c
@@ -461,8 +461,8 @@ EXPORT_SYMBOL(ceph_client_id);
461 * create a fresh client instance 461 * create a fresh client instance
462 */ 462 */
463struct ceph_client *ceph_create_client(struct ceph_options *opt, void *private, 463struct ceph_client *ceph_create_client(struct ceph_options *opt, void *private,
464 unsigned int supported_features, 464 u64 supported_features,
465 unsigned int required_features) 465 u64 required_features)
466{ 466{
467 struct ceph_client *client; 467 struct ceph_client *client;
468 struct ceph_entity_addr *myaddr = NULL; 468 struct ceph_entity_addr *myaddr = NULL;