aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph/rados.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ceph/rados.h')
-rw-r--r--fs/ceph/rados.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/fs/ceph/rados.h b/fs/ceph/rados.h
index a48cf4ae391e..85bdef78d142 100644
--- a/fs/ceph/rados.h
+++ b/fs/ceph/rados.h
@@ -55,13 +55,10 @@ struct ceph_timespec {
55 * placement group. 55 * placement group.
56 * we encode this into one __le64. 56 * we encode this into one __le64.
57 */ 57 */
58union ceph_pg { 58struct ceph_pg {
59 __u64 pg64; 59 __le16 preferred; /* preferred primary osd */
60 struct { 60 __le16 ps; /* placement seed */
61 __s16 preferred; /* preferred primary osd */ 61 __le32 pool; /* object pool */
62 __u16 ps; /* placement seed */
63 __u32 pool; /* object pool */
64 } __attribute__ ((packed)) pg;
65} __attribute__ ((packed)); 62} __attribute__ ((packed));
66 63
67/* 64/*
@@ -117,7 +114,7 @@ static inline int ceph_stable_mod(int x, int b, int bmask)
117 * object layout - how a given object should be stored. 114 * object layout - how a given object should be stored.
118 */ 115 */
119struct ceph_object_layout { 116struct ceph_object_layout {
120 __le64 ol_pgid; /* raw pg, with _full_ ps precision. */ 117 struct ceph_pg ol_pgid; /* raw pg, with _full_ ps precision. */
121 __le32 ol_stripe_unit; /* for per-object parity, if any */ 118 __le32 ol_stripe_unit; /* for per-object parity, if any */
122} __attribute__ ((packed)); 119} __attribute__ ((packed));
123 120