diff options
| author | mrg <mrg@NetBSD.org> | 2021-04-11 01:41:12 +0000 |
|---|---|---|
| committer | mrg <mrg@NetBSD.org> | 2021-04-11 01:41:12 +0000 |
| commit | 945a8fdc8e2ad2704b39f3a0e136a57feac25c38 (patch) | |
| tree | 7977fdecafacffdb48edbb2449bde95c650d832b /sys/dev/raidframe | |
| parent | f5aded571aae1952de751fe65b1fb46e29e52c2f (diff) | |
mark an extremely uncommon, but sometimes seen, log message
with the function name it comes with.
Diffstat (limited to 'sys/dev/raidframe')
| -rw-r--r-- | sys/dev/raidframe/rf_netbsdkintf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/raidframe/rf_netbsdkintf.c b/sys/dev/raidframe/rf_netbsdkintf.c index eb3ec90c8cb..4b9b0fd20f0 100644 --- a/sys/dev/raidframe/rf_netbsdkintf.c +++ b/sys/dev/raidframe/rf_netbsdkintf.c @@ -1,4 +1,4 @@ -/* $NetBSD: rf_netbsdkintf.c,v 1.390 2020/09/27 21:39:08 christos Exp $ */ +/* $NetBSD: rf_netbsdkintf.c,v 1.391 2021/04/11 01:41:12 mrg Exp $ */ /*- * Copyright (c) 1996, 1997, 1998, 2008-2011 The NetBSD Foundation, Inc. @@ -101,7 +101,7 @@ ***********************************************************/ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.390 2020/09/27 21:39:08 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.391 2021/04/11 01:41:12 mrg Exp $"); #ifdef _KERNEL_OPT #include "opt_raid_autoconfig.h" @@ -1986,7 +1986,7 @@ rf_DispatchKernelIO(RF_DiskQueue_t *queue, RF_DiskQueueData_t *req) /* XXX need to do something extra here.. */ /* I'm leaving this in, as I've never actually seen it used, * and I'd like folks to report it... GO */ - printf(("WAKEUP CALLED\n")); + printf("%s: WAKEUP CALLED\n", __func__); queue->numOutstanding++; bp->b_flags = 0; |
