Cleanup some whitespace that indent got wrong a long time ago.
This commit is contained in:
parent
9cc0f33345
commit
d11d1bd6fe
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: rf_alloclist.c,v 1.8 2001/11/13 07:11:12 lukem Exp $ */
|
/* $NetBSD: rf_alloclist.c,v 1.9 2001/11/20 02:37:29 oster Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1995 Carnegie-Mellon University.
|
* Copyright (c) 1995 Carnegie-Mellon University.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: rf_alloclist.c,v 1.8 2001/11/13 07:11:12 lukem Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: rf_alloclist.c,v 1.9 2001/11/20 02:37:29 oster Exp $");
|
||||||
|
|
||||||
#include <dev/raidframe/raidframevar.h>
|
#include <dev/raidframe/raidframevar.h>
|
||||||
|
|
||||||
|
@ -50,18 +50,18 @@ __KERNEL_RCSID(0, "$NetBSD: rf_alloclist.c,v 1.8 2001/11/13 07:11:12 lukem Exp $
|
||||||
#include "rf_shutdown.h"
|
#include "rf_shutdown.h"
|
||||||
|
|
||||||
RF_DECLARE_STATIC_MUTEX(alist_mutex)
|
RF_DECLARE_STATIC_MUTEX(alist_mutex)
|
||||||
static unsigned int fl_hit_count, fl_miss_count;
|
static unsigned int fl_hit_count, fl_miss_count;
|
||||||
|
|
||||||
static RF_AllocListElem_t *al_free_list = NULL;
|
static RF_AllocListElem_t *al_free_list = NULL;
|
||||||
static int al_free_list_count;
|
static int al_free_list_count;
|
||||||
|
|
||||||
#define RF_AL_FREELIST_MAX 256
|
#define RF_AL_FREELIST_MAX 256
|
||||||
|
|
||||||
#define DO_FREE(_p,_sz) RF_Free((_p),(_sz))
|
#define DO_FREE(_p,_sz) RF_Free((_p),(_sz))
|
||||||
|
|
||||||
static void rf_ShutdownAllocList(void *);
|
static void rf_ShutdownAllocList(void *);
|
||||||
|
|
||||||
static void rf_ShutdownAllocList(ignored)
|
static void rf_ShutdownAllocList(ignored)
|
||||||
void *ignored;
|
void *ignored;
|
||||||
{
|
{
|
||||||
RF_AllocListElem_t *p, *pt;
|
RF_AllocListElem_t *p, *pt;
|
||||||
|
|
Loading…
Reference in New Issue