Convert a few "void *"'s to "struct buf *"'s. No functional changes.

This commit is contained in:
oster 2005-02-13 20:27:48 +00:00
parent 99aa67cb97
commit e800226bf6
3 changed files with 8 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rf_desc.h,v 1.16 2004/12/12 20:53:15 oster Exp $ */
/* $NetBSD: rf_desc.h,v 1.17 2005/02/13 20:27:48 oster Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
* All rights reserved.
@ -84,8 +84,7 @@ struct RF_RaidAccessDesc_s {
be cleaned up at the end of
this IO */
RF_AccessStripeMapHeader_t *asmap; /* the asm for this I/O */
void *bp; /* buf pointer for this RAID acc. ignored
* outside the kernel */
struct buf *bp; /* buf pointer for this RAID acc */
RF_AccTraceEntry_t tracerec; /* perf monitoring information for a
* user access (not for dag stats) */
void (*callbackFunc) (RF_CBParam_t); /* callback function for this

View File

@ -1,4 +1,4 @@
/* $NetBSD: rf_driver.c,v 1.105 2004/11/16 16:45:51 oster Exp $ */
/* $NetBSD: rf_driver.c,v 1.106 2005/02/13 20:27:48 oster Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
* All rights reserved.
@ -73,7 +73,7 @@
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rf_driver.c,v 1.105 2004/11/16 16:45:51 oster Exp $");
__KERNEL_RCSID(0, "$NetBSD: rf_driver.c,v 1.106 2005/02/13 20:27:48 oster Exp $");
#include "opt_raid_diagnostic.h"
@ -636,11 +636,10 @@ rf_FreeRaidAccDesc(RF_RaidAccessDesc_t *desc)
int
rf_DoAccess(RF_Raid_t * raidPtr, RF_IoType_t type, int async_flag,
RF_RaidAddr_t raidAddress, RF_SectorCount_t numBlocks,
caddr_t bufPtr, void *bp_in, RF_RaidAccessFlags_t flags)
caddr_t bufPtr, struct buf *bp, RF_RaidAccessFlags_t flags)
{
RF_RaidAccessDesc_t *desc;
caddr_t lbufPtr = bufPtr;
struct buf *bp = (struct buf *) bp_in;
raidAddress += rf_raidSectorOffset;

View File

@ -1,4 +1,4 @@
/* $NetBSD: rf_driver.h,v 1.13 2004/11/16 16:45:52 oster Exp $ */
/* $NetBSD: rf_driver.h,v 1.14 2005/02/13 20:27:48 oster Exp $ */
/*
* rf_driver.h
*/
@ -53,7 +53,8 @@ RF_RaidAccessDesc_t *rf_AllocRaidAccDesc(RF_Raid_t *, RF_IoType_t,
const RF_AccessState_t *);
void rf_FreeRaidAccDesc(RF_RaidAccessDesc_t *);
int rf_DoAccess(RF_Raid_t *, RF_IoType_t, int, RF_RaidAddr_t,
RF_SectorCount_t, caddr_t, void *, RF_RaidAccessFlags_t);
RF_SectorCount_t, caddr_t, struct buf *,
RF_RaidAccessFlags_t);
#if 0
int rf_SetReconfiguredMode(RF_Raid_t *, RF_RowCol_t, RF_RowCol_t);
#endif