Fix off by one in calculation of the number of buckets for the pc
addresses. Reviewed by: markj Sponsored by: The FreeBSD Foundation MFC after: 1 week Differential revision: https://reviews.freebsd.org/D11864
This commit is contained in:
parent
93d910f645
commit
20bfc66ee0
@ -468,8 +468,8 @@ pmcpl_gmon_process(struct pmcstat_process *pp, struct pmcstat_pmcrecord *pmcr,
|
||||
image, pmcid);
|
||||
pgf->pgf_pmcid = pmcid;
|
||||
assert(image->pi_end > image->pi_start);
|
||||
pgf->pgf_nbuckets = (image->pi_end - image->pi_start) /
|
||||
FUNCTION_ALIGNMENT; /* see <machine/profile.h> */
|
||||
pgf->pgf_nbuckets = howmany(image->pi_end - image->pi_start,
|
||||
FUNCTION_ALIGNMENT); /* see <machine/profile.h> */
|
||||
pgf->pgf_ndatabytes = sizeof(struct gmonhdr) +
|
||||
pgf->pgf_nbuckets * hc_sz;
|
||||
pgf->pgf_nsamples = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user