diff options
Diffstat (limited to 'include/linux/ceph/rados.h')
-rw-r--r-- | include/linux/ceph/rados.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/ceph/rados.h b/include/linux/ceph/rados.h index b65182aba6f7..e7cece69b13f 100644 --- a/include/linux/ceph/rados.h +++ b/include/linux/ceph/rados.h | |||
@@ -64,7 +64,7 @@ struct ceph_timespec { | |||
64 | * placement group. | 64 | * placement group. |
65 | * we encode this into one __le64. | 65 | * we encode this into one __le64. |
66 | */ | 66 | */ |
67 | struct ceph_pg { | 67 | struct ceph_pg_v1 { |
68 | __le16 preferred; /* preferred primary osd */ | 68 | __le16 preferred; /* preferred primary osd */ |
69 | __le16 ps; /* placement seed */ | 69 | __le16 ps; /* placement seed */ |
70 | __le32 pool; /* object pool */ | 70 | __le32 pool; /* object pool */ |
@@ -128,7 +128,7 @@ static inline int ceph_stable_mod(int x, int b, int bmask) | |||
128 | * object layout - how a given object should be stored. | 128 | * object layout - how a given object should be stored. |
129 | */ | 129 | */ |
130 | struct ceph_object_layout { | 130 | struct ceph_object_layout { |
131 | struct ceph_pg ol_pgid; /* raw pg, with _full_ ps precision. */ | 131 | struct ceph_pg_v1 ol_pgid; /* raw pg, with _full_ ps precision. */ |
132 | __le32 ol_stripe_unit; /* for per-object parity, if any */ | 132 | __le32 ol_stripe_unit; /* for per-object parity, if any */ |
133 | } __attribute__ ((packed)); | 133 | } __attribute__ ((packed)); |
134 | 134 | ||