Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/kern one more __func__
details: https://anonhg.NetBSD.org/src/rev/4aa2d25e06bb
branches: trunk
changeset: 997977:4aa2d25e06bb
user: christos <christos%NetBSD.org@localhost>
date: Thu Apr 04 11:49:06 2019 +0000
description:
one more __func__
diffstat:
sys/kern/subr_disk.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r a56340e44eeb -r 4aa2d25e06bb sys/kern/subr_disk.c
--- a/sys/kern/subr_disk.c Thu Apr 04 10:53:20 2019 +0000
+++ b/sys/kern/subr_disk.c Thu Apr 04 11:49:06 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: subr_disk.c,v 1.125 2019/04/04 07:09:55 martin Exp $ */
+/* $NetBSD: subr_disk.c,v 1.126 2019/04/04 11:49:06 christos Exp $ */
/*-
* Copyright (c) 1996, 1997, 1999, 2000, 2009 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_disk.c,v 1.125 2019/04/04 07:09:55 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_disk.c,v 1.126 2019/04/04 11:49:06 christos Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
@@ -787,7 +787,7 @@
i = ffs(openmask) - 1;
openmask &= ~(1 << i);
if (i >= nlp->d_npartitions) {
- DPRINTF("partition not found\n");
+ DPRINTF("%s: partition not found\n", __func__);
return EBUSY;
}
opp = &olp->d_partitions[i];
Home |
Main Index |
Thread Index |
Old Index