summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authoroster <oster@NetBSD.org>1999-01-26 03:07:10 +0000
committeroster <oster@NetBSD.org>1999-01-26 03:07:10 +0000
commitd94a2c5b2a3b55c51bea15df4476cd229057cd28 (patch)
tree00c28a81089b1dd2e7a9266c2f45766c7f902304 /sys/dev/raidframe
parent6360520821992352ac5f2f5df270d4fb3547cf77 (diff)
These files are not used in the kernel driver. We don't need them any more.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_owner.h50
-rw-r--r--sys/dev/raidframe/rf_rst.h51
2 files changed, 0 insertions, 101 deletions
diff --git a/sys/dev/raidframe/rf_owner.h b/sys/dev/raidframe/rf_owner.h
deleted file mode 100644
index f3c8b251de1..00000000000
--- a/sys/dev/raidframe/rf_owner.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/* $NetBSD: rf_owner.h,v 1.2 1999/01/26 02:33:59 oster Exp $ */
-/*
- * Copyright (c) 1995 Carnegie-Mellon University.
- * All rights reserved.
- *
- * Author: Mark Holland
- *
- * Permission to use, copy, modify and distribute this software and
- * its documentation is hereby granted, provided that both the copyright
- * notice and this permission notice appear in all copies of the
- * software, derivative works or modified versions, and any portions
- * thereof, and that both notices appear in supporting documentation.
- *
- * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
- * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
- * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
- *
- * Carnegie Mellon requests users of this software to return to
- *
- * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
- * School of Computer Science
- * Carnegie Mellon University
- * Pittsburgh PA 15213-3890
- *
- * any improvements or extensions that they make and grant Carnegie the
- * rights to redistribute these changes.
- */
-
-#ifndef _RF__RF_OWNER_H_
-#define _RF__RF_OWNER_H_
-
-#include "rf_types.h"
-
-struct RF_OwnerInfo_s {
- RF_RaidAccessDesc_t *desc;
- int owner;
- double last_start;
- int done;
- int notFirst;
-};
-
-struct RF_EventCreate_s {
- RF_Raid_t *raidPtr;
- RF_Script_t *script;
- RF_OwnerInfo_t *ownerInfo;
- char *bufPtr;
- int bufLen;
-};
-
-#endif /* !_RF__RF_OWNER_H_ */
diff --git a/sys/dev/raidframe/rf_rst.h b/sys/dev/raidframe/rf_rst.h
deleted file mode 100644
index 073d2dddf6d..00000000000
--- a/sys/dev/raidframe/rf_rst.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/* $NetBSD: rf_rst.h,v 1.2 1999/01/26 02:34:02 oster Exp $ */
-/*
- * Copyright (c) 1995 Carnegie-Mellon University.
- * All rights reserved.
- *
- * Author: Mark Holland
- *
- * Permission to use, copy, modify and distribute this software and
- * its documentation is hereby granted, provided that both the copyright
- * notice and this permission notice appear in all copies of the
- * software, derivative works or modified versions, and any portions
- * thereof, and that both notices appear in supporting documentation.
- *
- * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
- * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
- * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
- *
- * Carnegie Mellon requests users of this software to return to
- *
- * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
- * School of Computer Science
- * Carnegie Mellon University
- * Pittsburgh PA 15213-3890
- *
- * any improvements or extensions that they make and grant Carnegie the
- * rights to redistribute these changes.
- */
-
-/* rf_rst.h - defines raidSim trace entry */
-
-#ifndef _RF__RF_RST_H_
-#define _RF__RF_RST_H_
-
-#include "rf_types.h"
-
-typedef struct RF_ScriptTraceEntry_s {
- RF_int32 blkno;
- RF_int32 size;
- double delay;
- RF_int16 pid;
- RF_int8 op;
- RF_int8 async_flag;
-} RF_ScriptTraceEntry_t;
-
-typedef struct RF_ScriptTraceEntryList_s RF_ScriptTraceEntryList_t;
-struct RF_ScriptTraceEntryList_s {
- RF_ScriptTraceEntry_t entry;
- RF_ScriptTraceEntryList_t *next;
-};
-
-#endif /* !_RF__RF_RST_H_ */