diff options
| author | hannken <hannken@NetBSD.org> | 2004-01-02 11:52:15 +0000 |
|---|---|---|
| committer | hannken <hannken@NetBSD.org> | 2004-01-02 11:52:15 +0000 |
| commit | 897a1fc008ba328d51cd3253155fc9c753992476 (patch) | |
| tree | 7092a47b6033c9a9aa237e9b40802799df05db32 /sys/dev/raidframe | |
| parent | 4a9d521ae4066f301306ad6bcb95aae2afafd294 (diff) | |
Remove "row" from DEBUG statements.
Diffstat (limited to 'sys/dev/raidframe')
| -rw-r--r-- | sys/dev/raidframe/rf_reconbuffer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/raidframe/rf_reconbuffer.c b/sys/dev/raidframe/rf_reconbuffer.c index 5b947dcb269..1a84d8daa71 100644 --- a/sys/dev/raidframe/rf_reconbuffer.c +++ b/sys/dev/raidframe/rf_reconbuffer.c @@ -1,4 +1,4 @@ -/* $NetBSD: rf_reconbuffer.c,v 1.16 2004/01/01 19:32:55 oster Exp $ */ +/* $NetBSD: rf_reconbuffer.c,v 1.17 2004/01/02 11:52:15 hannken Exp $ */ /* * Copyright (c) 1995 Carnegie-Mellon University. * All rights reserved. @@ -33,7 +33,7 @@ ***************************************************/ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rf_reconbuffer.c,v 1.16 2004/01/01 19:32:55 oster Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rf_reconbuffer.c,v 1.17 2004/01/02 11:52:15 hannken Exp $"); #include "rf_raid.h" #include "rf_reconbuffer.h" @@ -214,7 +214,7 @@ rf_SubmitReconBufferBasic(RF_ReconBuffer_t *rbuf, int keep_it, * buf list in the recon ctrl struct. */ if (!t) { RF_ASSERT(!keep_it && !use_committed); - Dprintf2("RECON: row %d col %d failed to acquire floating rbuf\n", rbuf->row, rbuf->col); + Dprintf1("RECON: col %d failed to acquire floating rbuf\n", rbuf->col); raidPtr->procsInBufWait++; if ((raidPtr->procsInBufWait == raidPtr->numCol - 1) && (raidPtr->numFullReconBuffers == 0)) { @@ -239,7 +239,7 @@ rf_SubmitReconBufferBasic(RF_ReconBuffer_t *rbuf, int keep_it, retcode = 1; goto out; } - Dprintf2("RECON: row %d col %d acquired rbuf\n", rbuf->row, rbuf->col); + Dprintf1("RECON: col %d acquired rbuf\n", rbuf->col); RF_ETIMER_STOP(raidPtr->recon_tracerecs[rbuf->col].recon_timer); RF_ETIMER_EVAL(raidPtr->recon_tracerecs[rbuf->col].recon_timer); raidPtr->recon_tracerecs[rbuf->col].specific.recon.recon_return_to_submit_us += |
