]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mds: replace accidnetal __u64 with uint64_t
authorGreg Farnum <gregf@hq.newdream.net>
Fri, 14 May 2010 20:42:07 +0000 (13:42 -0700)
committerGreg Farnum <gregf@hq.newdream.net>
Mon, 2 Aug 2010 17:39:56 +0000 (10:39 -0700)
src/mds/Locker.cc

index 9b26d665ea2324283706cd6158bce9157150f023..54214b98952fb000eaa646edd3d37a0d6424a625 100644 (file)
@@ -1993,7 +1993,7 @@ bool Locker::_do_cap_update(CInode *in, Capability *cap,
       ceph_filelock decoded_lock;
       ::decode(decoded_lock, bli);
       in->fcntl_locks.held_locks.
-       insert(pair<__u64, ceph_filelock>(decoded_lock.start, decoded_lock));
+       insert(pair<uint64_t, ceph_filelock>(decoded_lock.start, decoded_lock));
       ++in->fcntl_locks.client_held_lock_counts[decoded_lock.client];
     }
     ::decode(num_locks, bli);
@@ -2001,7 +2001,7 @@ bool Locker::_do_cap_update(CInode *in, Capability *cap,
       ceph_filelock decoded_lock;
       ::decode(decoded_lock, bli);
       in->flock_locks.held_locks.
-       insert(pair<__u64, ceph_filelock>(decoded_lock.start, decoded_lock));
+       insert(pair<uint64_t, ceph_filelock>(decoded_lock.start, decoded_lock));
       ++in->flock_locks.client_held_lock_counts[decoded_lock.client];
     }
   }