tinderbox fix

This commit is contained in:
Kip Macy 2006-11-11 07:38:48 +00:00
parent ed002394a6
commit ed6a7c42f6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=164166

View file

@ -338,7 +338,7 @@ void _lock_profile_release_lock(struct lock_object *lo)
if (p == NULL || *p == '\0')
p = unknown;
hash = (l->lpo_namehash * 31 * 31 + (uintptr_t)p * 31 + l->lpo_lineno) & LPROF_HASH_MASK;
CTR5(KTR_SPARE1, "Hashing %s(%x) %s:%d to %d", l->lpo_name,
CTR5(KTR_SPARE1, "Hashing %s(%x) %s:%d to %d", l->lpo_filename,
l->lpo_namehash, p, l->lpo_lineno, hash);
mpp = &lprof_buf[hash];
while (mpp->name != NULL) {