osd/PG: base past_interval_bounds on pool creation epoch
The base case for the past_intervals bounds is the creation epoch for the
pool, not the PG. Otherwise, a pool that is created, does not go active,
and then splits will not include the pre-split history. For example,
- pg A is created in epoch X
- pg A does not go active
- pg A splits into pg B in epoch Y
but then,
- pg B has past intervals from [X,Y)
- pg B epoch_created is Y ***
- pg B required past intervals is [Y,Y)
- fails check_past_interval_bounds check
Fixes: http://tracker.ceph.com/issues/19877 Signed-off-by: Sage Weil <sage@redhat.com>