]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
Revert "client: move the device bitshift handling macros to Client.h"
authorJeff Layton <jlayton@redhat.com>
Wed, 14 Sep 2016 14:51:07 +0000 (10:51 -0400)
committerJeff Layton <jlayton@redhat.com>
Tue, 20 Sep 2016 10:26:50 +0000 (06:26 -0400)
This reverts commit 2115de04a417e6df4272fc836829b70bd6a2b97e.

This is unnecessary now that we're using dev_t's in ceph_statx.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
src/client/Client.h
src/client/fuse_ll.cc

index 8b674464a900c6534e726c531639aff17bf0aea3..1a047bcb8ae2644e695db73cea796e4162497a40 100644 (file)
@@ -93,14 +93,6 @@ struct CommandOp
   std::string  *outs;
 };
 
-/* Device bit shift handling */
-#define MINORBITS      20
-#define MINORMASK      ((1U << MINORBITS) - 1)
-
-#define MAJOR(dev)     ((unsigned int) ((dev) >> MINORBITS))
-#define MINOR(dev)     ((unsigned int) ((dev) & MINORMASK))
-#define MKDEV(ma,mi)   (((ma) << MINORBITS) | (mi))
-
 /* error code for ceph_fuse */
 #define CEPH_FUSE_NO_MDS_UP    -(1<<2) /* no mds up deteced in ceph_fuse */
 
index 6c3bf7c0a2da7a7edef35ce9cf8a014ca8c2e408..1d4719ba30d6ed2da2879aa492a603b552e52c01 100644 (file)
 #define FINO_STAG(x) ((x) >> 48)
 #define MAKE_FINO(i,s) ((i) | ((s) << 48))
 
+#define MINORBITS      20
+#define MINORMASK      ((1U << MINORBITS) - 1)
+
+#define MAJOR(dev)     ((unsigned int) ((dev) >> MINORBITS))
+#define MINOR(dev)     ((unsigned int) ((dev) & MINORMASK))
+#define MKDEV(ma,mi)   (((ma) << MINORBITS) | (mi))
+
 static uint32_t new_encode_dev(dev_t dev)
 {
        unsigned major = MAJOR(dev);