Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 2 | #ifndef _FS_CEPH_OSDMAP_H |
| 3 | #define _FS_CEPH_OSDMAP_H |
| 4 | |
| 5 | #include <linux/rbtree.h> |
David Howells | a1ce392 | 2012-10-02 18:01:25 +0100 | [diff] [blame] | 6 | #include <linux/ceph/types.h> |
Alex Elder | ef4859d | 2013-04-01 18:58:26 -0500 | [diff] [blame] | 7 | #include <linux/ceph/decode.h> |
David Howells | a1ce392 | 2012-10-02 18:01:25 +0100 | [diff] [blame] | 8 | #include <linux/ceph/ceph_fs.h> |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 9 | #include <linux/crush/crush.h> |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 10 | |
| 11 | /* |
| 12 | * The osd map describes the current membership of the osd cluster and |
| 13 | * specifies the mapping of objects to placement groups and placement |
| 14 | * groups to (sets of) osds. That is, it completely specifies the |
| 15 | * (desired) distribution of all data objects in the system at some |
| 16 | * point in time. |
| 17 | * |
| 18 | * Each map version is identified by an epoch, which increases monotonically. |
| 19 | * |
| 20 | * The map can be updated either via an incremental map (diff) describing |
| 21 | * the change between two successive epochs, or as a fully encoded map. |
| 22 | */ |
Sage Weil | 5b191d9 | 2013-02-23 10:38:16 -0800 | [diff] [blame] | 23 | struct ceph_pg { |
| 24 | uint64_t pool; |
| 25 | uint32_t seed; |
| 26 | }; |
| 27 | |
Ilya Dryomov | dc98ff7 | 2017-06-15 16:30:53 +0200 | [diff] [blame] | 28 | #define CEPH_SPG_NOSHARD -1 |
| 29 | |
| 30 | struct ceph_spg { |
| 31 | struct ceph_pg pgid; |
| 32 | s8 shard; |
| 33 | }; |
| 34 | |
Ilya Dryomov | f984cb7 | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 35 | int ceph_pg_compare(const struct ceph_pg *lhs, const struct ceph_pg *rhs); |
Ilya Dryomov | a02a946 | 2017-06-19 12:18:05 +0200 | [diff] [blame] | 36 | int ceph_spg_compare(const struct ceph_spg *lhs, const struct ceph_spg *rhs); |
Ilya Dryomov | f984cb7 | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 37 | |
Ilya Dryomov | 04812ac | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 38 | #define CEPH_POOL_FLAG_HASHPSPOOL (1ULL << 0) /* hash pg seed and pool id |
| 39 | together */ |
Ilya Dryomov | 63244fa | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 40 | #define CEPH_POOL_FLAG_FULL (1ULL << 1) /* pool is full */ |
Sage Weil | 83ca14f | 2013-02-26 10:39:09 -0800 | [diff] [blame] | 41 | |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 42 | struct ceph_pg_pool_info { |
Sage Weil | 4fc51be | 2010-02-16 15:55:03 -0800 | [diff] [blame] | 43 | struct rb_node node; |
Sage Weil | 4f6a7e5 | 2013-02-23 10:41:09 -0800 | [diff] [blame] | 44 | s64 id; |
Ilya Dryomov | 04812ac | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 45 | u8 type; /* CEPH_POOL_TYPE_* */ |
Sage Weil | 4f6a7e5 | 2013-02-23 10:41:09 -0800 | [diff] [blame] | 46 | u8 size; |
Ilya Dryomov | 04812ac | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 47 | u8 min_size; |
Sage Weil | 4f6a7e5 | 2013-02-23 10:41:09 -0800 | [diff] [blame] | 48 | u8 crush_ruleset; |
| 49 | u8 object_hash; |
Ilya Dryomov | 04812ac | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 50 | u32 last_force_request_resend; |
Sage Weil | 4f6a7e5 | 2013-02-23 10:41:09 -0800 | [diff] [blame] | 51 | u32 pg_num, pgp_num; |
| 52 | int pg_num_mask, pgp_num_mask; |
Ilya Dryomov | 17a13e40 | 2014-01-27 17:40:19 +0200 | [diff] [blame] | 53 | s64 read_tier; |
| 54 | s64 write_tier; /* wins for read+write ops */ |
Ilya Dryomov | 04812ac | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 55 | u64 flags; /* CEPH_POOL_FLAG_* */ |
Sage Weil | 2844a76 | 2010-04-09 15:46:42 -0700 | [diff] [blame] | 56 | char *name; |
Ilya Dryomov | 42c1b12 | 2016-04-28 16:07:25 +0200 | [diff] [blame] | 57 | |
| 58 | bool was_full; /* for handle_one_map() */ |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 59 | }; |
| 60 | |
Ilya Dryomov | 2abebdb | 2014-03-24 17:12:47 +0200 | [diff] [blame] | 61 | static inline bool ceph_can_shift_osds(struct ceph_pg_pool_info *pool) |
| 62 | { |
| 63 | switch (pool->type) { |
| 64 | case CEPH_POOL_TYPE_REP: |
| 65 | return true; |
| 66 | case CEPH_POOL_TYPE_EC: |
| 67 | return false; |
| 68 | default: |
Arnd Bergmann | d24cdcd | 2017-01-16 12:06:09 +0100 | [diff] [blame] | 69 | BUG(); |
Ilya Dryomov | 2abebdb | 2014-03-24 17:12:47 +0200 | [diff] [blame] | 70 | } |
| 71 | } |
| 72 | |
Sage Weil | 4f6a7e5 | 2013-02-23 10:41:09 -0800 | [diff] [blame] | 73 | struct ceph_object_locator { |
Ilya Dryomov | 22116525 | 2014-01-27 17:40:18 +0200 | [diff] [blame] | 74 | s64 pool; |
Yan, Zheng | 30c156d | 2016-02-14 11:24:31 +0800 | [diff] [blame] | 75 | struct ceph_string *pool_ns; |
Sage Weil | 4f6a7e5 | 2013-02-23 10:41:09 -0800 | [diff] [blame] | 76 | }; |
| 77 | |
Ilya Dryomov | 63244fa | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 78 | static inline void ceph_oloc_init(struct ceph_object_locator *oloc) |
| 79 | { |
| 80 | oloc->pool = -1; |
Yan, Zheng | 30c156d | 2016-02-14 11:24:31 +0800 | [diff] [blame] | 81 | oloc->pool_ns = NULL; |
Ilya Dryomov | 63244fa | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | static inline bool ceph_oloc_empty(const struct ceph_object_locator *oloc) |
| 85 | { |
| 86 | return oloc->pool == -1; |
| 87 | } |
| 88 | |
Yan, Zheng | 30c156d | 2016-02-14 11:24:31 +0800 | [diff] [blame] | 89 | void ceph_oloc_copy(struct ceph_object_locator *dest, |
| 90 | const struct ceph_object_locator *src); |
| 91 | void ceph_oloc_destroy(struct ceph_object_locator *oloc); |
Ilya Dryomov | 63244fa | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 92 | |
Ilya Dryomov | 4295f22 | 2014-01-27 17:40:18 +0200 | [diff] [blame] | 93 | /* |
Ilya Dryomov | d30291b | 2016-04-29 19:54:20 +0200 | [diff] [blame] | 94 | * 51-char inline_name is long enough for all cephfs and all but one |
| 95 | * rbd requests: <imgname> in "<imgname>.rbd"/"rbd_id.<imgname>" can be |
| 96 | * arbitrarily long (~PAGE_SIZE). It's done once during rbd map; all |
| 97 | * other rbd requests fit into inline_name. |
| 98 | * |
| 99 | * Makes ceph_object_id 64 bytes on 64-bit. |
| 100 | */ |
| 101 | #define CEPH_OID_INLINE_LEN 52 |
| 102 | |
| 103 | /* |
| 104 | * Both inline and external buffers have space for a NUL-terminator, |
| 105 | * which is carried around. It's not required though - RADOS object |
| 106 | * names don't have to be NUL-terminated and may contain NULs. |
| 107 | */ |
Ilya Dryomov | 4295f22 | 2014-01-27 17:40:18 +0200 | [diff] [blame] | 108 | struct ceph_object_id { |
Ilya Dryomov | d30291b | 2016-04-29 19:54:20 +0200 | [diff] [blame] | 109 | char *name; |
| 110 | char inline_name[CEPH_OID_INLINE_LEN]; |
Ilya Dryomov | 4295f22 | 2014-01-27 17:40:18 +0200 | [diff] [blame] | 111 | int name_len; |
| 112 | }; |
| 113 | |
Ilya Dryomov | d30291b | 2016-04-29 19:54:20 +0200 | [diff] [blame] | 114 | static inline void ceph_oid_init(struct ceph_object_id *oid) |
| 115 | { |
| 116 | oid->name = oid->inline_name; |
| 117 | oid->name_len = 0; |
| 118 | } |
| 119 | |
Ilya Dryomov | 281dbe5 | 2016-07-26 15:22:35 +0200 | [diff] [blame] | 120 | #define CEPH_OID_INIT_ONSTACK(oid) \ |
| 121 | ({ ceph_oid_init(&oid); oid; }) |
| 122 | #define CEPH_DEFINE_OID_ONSTACK(oid) \ |
| 123 | struct ceph_object_id oid = CEPH_OID_INIT_ONSTACK(oid) |
| 124 | |
Ilya Dryomov | d30291b | 2016-04-29 19:54:20 +0200 | [diff] [blame] | 125 | static inline bool ceph_oid_empty(const struct ceph_object_id *oid) |
| 126 | { |
| 127 | return oid->name == oid->inline_name && !oid->name_len; |
| 128 | } |
| 129 | |
| 130 | void ceph_oid_copy(struct ceph_object_id *dest, |
| 131 | const struct ceph_object_id *src); |
| 132 | __printf(2, 3) |
| 133 | void ceph_oid_printf(struct ceph_object_id *oid, const char *fmt, ...); |
| 134 | __printf(3, 4) |
| 135 | int ceph_oid_aprintf(struct ceph_object_id *oid, gfp_t gfp, |
| 136 | const char *fmt, ...); |
| 137 | void ceph_oid_destroy(struct ceph_object_id *oid); |
| 138 | |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 139 | struct ceph_pg_mapping { |
| 140 | struct rb_node node; |
Sage Weil | 5b191d9 | 2013-02-23 10:38:16 -0800 | [diff] [blame] | 141 | struct ceph_pg pgid; |
Ilya Dryomov | 35a935d | 2014-03-21 19:05:29 +0200 | [diff] [blame] | 142 | |
| 143 | union { |
| 144 | struct { |
| 145 | int len; |
| 146 | int osds[]; |
Ilya Dryomov | 6f428df | 2017-06-21 17:27:18 +0200 | [diff] [blame] | 147 | } pg_temp, pg_upmap; |
Ilya Dryomov | 9686f94 | 2014-03-21 19:05:29 +0200 | [diff] [blame] | 148 | struct { |
| 149 | int osd; |
| 150 | } primary_temp; |
Ilya Dryomov | 6f428df | 2017-06-21 17:27:18 +0200 | [diff] [blame] | 151 | struct { |
| 152 | int len; |
| 153 | int from_to[][2]; |
| 154 | } pg_upmap_items; |
Ilya Dryomov | 35a935d | 2014-03-21 19:05:29 +0200 | [diff] [blame] | 155 | }; |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 156 | }; |
| 157 | |
| 158 | struct ceph_osdmap { |
| 159 | struct ceph_fsid fsid; |
| 160 | u32 epoch; |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 161 | struct ceph_timespec created, modified; |
| 162 | |
| 163 | u32 flags; /* CEPH_OSDMAP_* */ |
| 164 | |
| 165 | u32 max_osd; /* size of osd_state, _offload, _addr arrays */ |
Ilya Dryomov | 0bb05da | 2017-06-22 19:44:06 +0200 | [diff] [blame] | 166 | u32 *osd_state; /* CEPH_OSD_* */ |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 167 | u32 *osd_weight; /* 0 = failed, 0x10000 = 100% normal */ |
| 168 | struct ceph_entity_addr *osd_addr; |
| 169 | |
| 170 | struct rb_root pg_temp; |
Ilya Dryomov | 9686f94 | 2014-03-21 19:05:29 +0200 | [diff] [blame] | 171 | struct rb_root primary_temp; |
| 172 | |
Ilya Dryomov | 6f428df | 2017-06-21 17:27:18 +0200 | [diff] [blame] | 173 | /* remap (post-CRUSH, pre-up) */ |
| 174 | struct rb_root pg_upmap; /* PG := raw set */ |
| 175 | struct rb_root pg_upmap_items; /* from -> to within raw set */ |
| 176 | |
Ilya Dryomov | 2cfa34f | 2014-03-21 19:05:30 +0200 | [diff] [blame] | 177 | u32 *osd_primary_affinity; |
| 178 | |
Sage Weil | 4fc51be | 2010-02-16 15:55:03 -0800 | [diff] [blame] | 179 | struct rb_root pg_pools; |
| 180 | u32 pool_max; |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 181 | |
| 182 | /* the CRUSH map specifies the mapping of placement groups to |
| 183 | * the list of osds that store+replicate them. */ |
| 184 | struct crush_map *crush; |
Ilya Dryomov | 9d52147 | 2014-01-31 17:54:26 +0200 | [diff] [blame] | 185 | |
Ilya Dryomov | 743efcf | 2017-01-31 15:55:06 +0100 | [diff] [blame] | 186 | struct mutex crush_workspace_mutex; |
Ilya Dryomov | 66a0e2d | 2017-01-31 15:55:06 +0100 | [diff] [blame] | 187 | void *crush_workspace; |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 188 | }; |
| 189 | |
Zhang Zhuoyu | 3b33f69 | 2016-03-25 05:18:39 -0400 | [diff] [blame] | 190 | static inline bool ceph_osd_exists(struct ceph_osdmap *map, int osd) |
Ilya Dryomov | 246138f | 2014-03-24 17:12:46 +0200 | [diff] [blame] | 191 | { |
| 192 | return osd >= 0 && osd < map->max_osd && |
| 193 | (map->osd_state[osd] & CEPH_OSD_EXISTS); |
| 194 | } |
| 195 | |
Zhang Zhuoyu | 3b33f69 | 2016-03-25 05:18:39 -0400 | [diff] [blame] | 196 | static inline bool ceph_osd_is_up(struct ceph_osdmap *map, int osd) |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 197 | { |
Ilya Dryomov | 246138f | 2014-03-24 17:12:46 +0200 | [diff] [blame] | 198 | return ceph_osd_exists(map, osd) && |
| 199 | (map->osd_state[osd] & CEPH_OSD_UP); |
| 200 | } |
| 201 | |
Zhang Zhuoyu | 3b33f69 | 2016-03-25 05:18:39 -0400 | [diff] [blame] | 202 | static inline bool ceph_osd_is_down(struct ceph_osdmap *map, int osd) |
Ilya Dryomov | 246138f | 2014-03-24 17:12:46 +0200 | [diff] [blame] | 203 | { |
| 204 | return !ceph_osd_is_up(map, osd); |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 205 | } |
| 206 | |
Ilya Dryomov | 0bb05da | 2017-06-22 19:44:06 +0200 | [diff] [blame] | 207 | char *ceph_osdmap_state_str(char *str, int len, u32 state); |
Ilya Dryomov | 2cfa34f | 2014-03-21 19:05:30 +0200 | [diff] [blame] | 208 | extern u32 ceph_get_primary_affinity(struct ceph_osdmap *map, int osd); |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 209 | |
| 210 | static inline struct ceph_entity_addr *ceph_osd_addr(struct ceph_osdmap *map, |
| 211 | int osd) |
| 212 | { |
| 213 | if (osd >= map->max_osd) |
| 214 | return NULL; |
| 215 | return &map->osd_addr[osd]; |
| 216 | } |
| 217 | |
Ilya Dryomov | 8cb441c | 2017-06-15 16:30:54 +0200 | [diff] [blame] | 218 | #define CEPH_PGID_ENCODING_LEN (1 + 8 + 4 + 4) |
| 219 | |
Alex Elder | ef4859d | 2013-04-01 18:58:26 -0500 | [diff] [blame] | 220 | static inline int ceph_decode_pgid(void **p, void *end, struct ceph_pg *pgid) |
| 221 | { |
| 222 | __u8 version; |
| 223 | |
Ilya Dryomov | 8cb441c | 2017-06-15 16:30:54 +0200 | [diff] [blame] | 224 | if (!ceph_has_room(p, end, CEPH_PGID_ENCODING_LEN)) { |
Joe Perches | 3ef650d | 2015-03-23 13:35:03 -0700 | [diff] [blame] | 225 | pr_warn("incomplete pg encoding\n"); |
Alex Elder | ef4859d | 2013-04-01 18:58:26 -0500 | [diff] [blame] | 226 | return -EINVAL; |
| 227 | } |
| 228 | version = ceph_decode_8(p); |
| 229 | if (version > 1) { |
Joe Perches | 3ef650d | 2015-03-23 13:35:03 -0700 | [diff] [blame] | 230 | pr_warn("do not understand pg encoding %d > 1\n", |
Alex Elder | ef4859d | 2013-04-01 18:58:26 -0500 | [diff] [blame] | 231 | (int)version); |
| 232 | return -EINVAL; |
| 233 | } |
| 234 | |
| 235 | pgid->pool = ceph_decode_64(p); |
| 236 | pgid->seed = ceph_decode_32(p); |
| 237 | *p += 4; /* skip deprecated preferred value */ |
| 238 | |
| 239 | return 0; |
| 240 | } |
| 241 | |
Ilya Dryomov | e5253a7 | 2016-04-28 16:07:25 +0200 | [diff] [blame] | 242 | struct ceph_osdmap *ceph_osdmap_alloc(void); |
Ilya Dryomov | a2505d6 | 2014-03-13 16:36:13 +0200 | [diff] [blame] | 243 | extern struct ceph_osdmap *ceph_osdmap_decode(void **p, void *end); |
Ilya Dryomov | 0c0a8de | 2016-04-28 16:07:21 +0200 | [diff] [blame] | 244 | struct ceph_osdmap *osdmap_apply_incremental(void **p, void *end, |
| 245 | struct ceph_osdmap *map); |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 246 | extern void ceph_osdmap_destroy(struct ceph_osdmap *map); |
| 247 | |
Ilya Dryomov | 6f3bfd4 | 2016-04-28 16:07:22 +0200 | [diff] [blame] | 248 | struct ceph_osds { |
| 249 | int osds[CEPH_PG_MAX_SIZE]; |
| 250 | int size; |
| 251 | int primary; /* id, NOT index */ |
| 252 | }; |
| 253 | |
| 254 | static inline void ceph_osds_init(struct ceph_osds *set) |
| 255 | { |
| 256 | set->size = 0; |
| 257 | set->primary = -1; |
| 258 | } |
| 259 | |
| 260 | void ceph_osds_copy(struct ceph_osds *dest, const struct ceph_osds *src); |
| 261 | |
Ilya Dryomov | 7de030d | 2017-06-15 16:30:54 +0200 | [diff] [blame] | 262 | bool ceph_pg_is_split(const struct ceph_pg *pgid, u32 old_pg_num, |
| 263 | u32 new_pg_num); |
Ilya Dryomov | 63244fa | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 264 | bool ceph_is_new_interval(const struct ceph_osds *old_acting, |
| 265 | const struct ceph_osds *new_acting, |
| 266 | const struct ceph_osds *old_up, |
| 267 | const struct ceph_osds *new_up, |
| 268 | int old_size, |
| 269 | int new_size, |
| 270 | int old_min_size, |
| 271 | int new_min_size, |
| 272 | u32 old_pg_num, |
| 273 | u32 new_pg_num, |
| 274 | bool old_sort_bitwise, |
| 275 | bool new_sort_bitwise, |
Ilya Dryomov | ae78dd8 | 2017-07-27 17:59:14 +0200 | [diff] [blame] | 276 | bool old_recovery_deletes, |
| 277 | bool new_recovery_deletes, |
Ilya Dryomov | 63244fa | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 278 | const struct ceph_pg *pgid); |
| 279 | bool ceph_osds_changed(const struct ceph_osds *old_acting, |
| 280 | const struct ceph_osds *new_acting, |
| 281 | bool any_change); |
| 282 | |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 283 | /* calculate mapping of a file extent to an object */ |
Sage Weil | d63b77f | 2012-09-24 20:59:48 -0700 | [diff] [blame] | 284 | extern int ceph_calc_file_object_mapping(struct ceph_file_layout *layout, |
Alex Elder | e8afad6 | 2012-11-14 09:38:19 -0600 | [diff] [blame] | 285 | u64 off, u64 len, |
Sage Weil | d63b77f | 2012-09-24 20:59:48 -0700 | [diff] [blame] | 286 | u64 *bno, u64 *oxoff, u64 *oxlen); |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 287 | |
Ilya Dryomov | df28152 | 2017-06-15 16:30:56 +0200 | [diff] [blame] | 288 | int __ceph_object_locator_to_pg(struct ceph_pg_pool_info *pi, |
| 289 | const struct ceph_object_id *oid, |
| 290 | const struct ceph_object_locator *oloc, |
| 291 | struct ceph_pg *raw_pgid); |
Ilya Dryomov | d9591f5 | 2016-04-28 16:07:22 +0200 | [diff] [blame] | 292 | int ceph_object_locator_to_pg(struct ceph_osdmap *osdmap, |
Ilya Dryomov | df28152 | 2017-06-15 16:30:56 +0200 | [diff] [blame] | 293 | const struct ceph_object_id *oid, |
| 294 | const struct ceph_object_locator *oloc, |
Ilya Dryomov | d9591f5 | 2016-04-28 16:07:22 +0200 | [diff] [blame] | 295 | struct ceph_pg *raw_pgid); |
Ilya Dryomov | 7c13cb6 | 2014-01-27 17:40:19 +0200 | [diff] [blame] | 296 | |
Ilya Dryomov | 6f3bfd4 | 2016-04-28 16:07:22 +0200 | [diff] [blame] | 297 | void ceph_pg_to_up_acting_osds(struct ceph_osdmap *osdmap, |
Ilya Dryomov | df28152 | 2017-06-15 16:30:56 +0200 | [diff] [blame] | 298 | struct ceph_pg_pool_info *pi, |
Ilya Dryomov | 6f3bfd4 | 2016-04-28 16:07:22 +0200 | [diff] [blame] | 299 | const struct ceph_pg *raw_pgid, |
| 300 | struct ceph_osds *up, |
| 301 | struct ceph_osds *acting); |
Ilya Dryomov | dc98ff7 | 2017-06-15 16:30:53 +0200 | [diff] [blame] | 302 | bool ceph_pg_to_primary_shard(struct ceph_osdmap *osdmap, |
Ilya Dryomov | df28152 | 2017-06-15 16:30:56 +0200 | [diff] [blame] | 303 | struct ceph_pg_pool_info *pi, |
Ilya Dryomov | dc98ff7 | 2017-06-15 16:30:53 +0200 | [diff] [blame] | 304 | const struct ceph_pg *raw_pgid, |
| 305 | struct ceph_spg *spgid); |
Ilya Dryomov | f81f163 | 2016-04-28 16:07:23 +0200 | [diff] [blame] | 306 | int ceph_pg_to_acting_primary(struct ceph_osdmap *osdmap, |
| 307 | const struct ceph_pg *raw_pgid); |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 308 | |
Ilya Dryomov | ce7f6a2 | 2014-01-27 17:40:19 +0200 | [diff] [blame] | 309 | extern struct ceph_pg_pool_info *ceph_pg_pool_by_id(struct ceph_osdmap *map, |
| 310 | u64 id); |
| 311 | |
Alex Elder | 72afc71 | 2012-10-30 19:40:33 -0500 | [diff] [blame] | 312 | extern const char *ceph_pg_pool_name_by_id(struct ceph_osdmap *map, u64 id); |
Yehuda Sadeh | 7669a2c | 2010-05-17 12:31:35 -0700 | [diff] [blame] | 313 | extern int ceph_pg_poolid_by_name(struct ceph_osdmap *map, const char *name); |
| 314 | |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 315 | #endif |