diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2020-07-22 12:38:39 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2020-07-22 12:38:39 +0000 |
commit | 0cad2b7986f1efdf668b4d61fb12d2770a16adb3 (patch) | |
tree | ffe13e8e8482195ef6a3e1b2c292237a305a06eb /sys/arch | |
parent | a80b73f99a7290a50c68a56703501e802848d680 (diff) |
Remove debugging printf in critical section. This doesn't play well with
the hash lock on MULTIPROCESSOR kernels.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/powerpc64/powerpc64/pmap.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/powerpc64/powerpc64/pmap.c b/sys/arch/powerpc64/powerpc64/pmap.c index 54ac5fbf05d..aa2941314a9 100644 --- a/sys/arch/powerpc64/powerpc64/pmap.c +++ b/sys/arch/powerpc64/powerpc64/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.33 2020/07/21 21:01:34 kettenis Exp $ */ +/* $OpenBSD: pmap.c,v 1.34 2020/07/22 12:38:38 kettenis Exp $ */ /* * Copyright (c) 2015 Martin Pieuchot @@ -704,8 +704,6 @@ pte_insert(struct pte_desc *pted) goto out; } - printf("%s: replacing!\n", __func__); - /* need decent replacement algorithm */ off = mftb(); |