aboutsummaryrefslogtreecommitdiffstats
path: root/net/ceph
diff options
context:
space:
mode:
Diffstat (limited to 'net/ceph')
-rw-r--r--net/ceph/osdmap.c9
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 */
1901int ceph_calc_pg_primary(struct ceph_osdmap *osdmap, struct ceph_pg pgid) 1901int 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}
1908EXPORT_SYMBOL(ceph_calc_pg_primary); 1909EXPORT_SYMBOL(ceph_pg_to_acting_primary);