diff options
Diffstat (limited to 'net/ceph')
-rw-r--r-- | net/ceph/osdmap.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net/ceph/osdmap.c b/net/ceph/osdmap.c index f5fc8fc63879..656384a8fd1e 100644 --- a/net/ceph/osdmap.c +++ b/net/ceph/osdmap.c | |||
@@ -1896,13 +1896,14 @@ out: | |||
1896 | } | 1896 | } |
1897 | 1897 | ||
1898 | /* | 1898 | /* |
1899 | * Return primary osd for given pgid, or -1 if none. | 1899 | * Return acting primary for given PG, or -1 if none. |
1900 | */ | 1900 | */ |
1901 | int ceph_calc_pg_primary(struct ceph_osdmap *osdmap, struct ceph_pg pgid) | 1901 | int ceph_pg_to_acting_primary(struct ceph_osdmap *osdmap, |
1902 | const struct ceph_pg *raw_pgid) | ||
1902 | { | 1903 | { |
1903 | struct ceph_osds up, acting; | 1904 | struct ceph_osds up, acting; |
1904 | 1905 | ||
1905 | ceph_pg_to_up_acting_osds(osdmap, &pgid, &up, &acting); | 1906 | ceph_pg_to_up_acting_osds(osdmap, raw_pgid, &up, &acting); |
1906 | return acting.primary; | 1907 | return acting.primary; |
1907 | } | 1908 | } |
1908 | EXPORT_SYMBOL(ceph_calc_pg_primary); | 1909 | EXPORT_SYMBOL(ceph_pg_to_acting_primary); |