artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb12f34
)
Print function name for context
author
kn
<kn@openbsd.org>
Mon, 25 Jul 2022 14:48:24 +0000
(14:48 +0000)
committer
kn
<kn@openbsd.org>
Mon, 25 Jul 2022 14:48:24 +0000
(14:48 +0000)
A single "out of order" line is too generic.
OK kettenis
sys/arch/sparc64/dev/vnet.c
patch
|
blob
|
history
diff --git
a/sys/arch/sparc64/dev/vnet.c
b/sys/arch/sparc64/dev/vnet.c
index
694864f
..
a147184
100644
(file)
--- a/
sys/arch/sparc64/dev/vnet.c
+++ b/
sys/arch/sparc64/dev/vnet.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: vnet.c,v 1.6
5 2022/07/20 21:03:10
kn Exp $ */
+/* $OpenBSD: vnet.c,v 1.6
6 2022/07/25 14:48:24
kn Exp $ */
/*
* Copyright (c) 2009, 2015 Mark Kettenis
*
@@
-768,7
+768,7
@@
vnet_rx_vio_desc_data(struct vnet_softc *sc, struct vio_msg_tag *tag)
DPRINTF(("DATA/ACK/DESC_DATA\n"));
if (dm->desc_handle != sc->sc_tx_cons) {
- printf("
out of order\n"
);
+ printf("
%s: out of order\n", __func__
);
return;
}