diff options
author | kmacy <kmacy@FreeBSD.org> | 2006-11-11 07:38:48 +0000 |
---|---|---|
committer | kmacy <kmacy@FreeBSD.org> | 2006-11-11 07:38:48 +0000 |
commit | ae161ce2555d8d90fd0861f6b6f0fe85cdc1315f (patch) | |
tree | c64d0f0eb3a06a2b87b1248df8a8cc75f808c4e1 /sys/kern/subr_lock.c | |
parent | 2e86adafd00892a1f0b05e62be161cd5379dbbac (diff) | |
download | FreeBSD-src-ae161ce2555d8d90fd0861f6b6f0fe85cdc1315f.zip FreeBSD-src-ae161ce2555d8d90fd0861f6b6f0fe85cdc1315f.tar.gz |
tinderbox fix
Diffstat (limited to 'sys/kern/subr_lock.c')
-rw-r--r-- | sys/kern/subr_lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_lock.c b/sys/kern/subr_lock.c index 93dc8d0..6b9fb2e 100644 --- a/sys/kern/subr_lock.c +++ b/sys/kern/subr_lock.c @@ -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) { |