| 7658 | } |
| 7659 | |
| 7660 | void Client::renew_caps() |
| 7661 | { |
| 7662 | ldout(cct, 10) << "renew_caps()" << dendl; |
| 7663 | last_cap_renew = ceph::coarse_mono_clock::now(); |
| 7664 | |
| 7665 | for (auto &p : mds_sessions) { |
| 7666 | ldout(cct, 15) << "renew_caps requesting from mds." << p.first << dendl; |
| 7667 | if (mdsmap->get_state(p.first) >= MDSMap::STATE_REJOIN) |
| 7668 | renew_caps(p.second.get()); |
| 7669 | } |
| 7670 | } |
| 7671 | |
| 7672 | void Client::renew_caps(MetaSession *session) |
| 7673 | { |
nothing calls this directly
no test coverage detected