summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorgrog <grog@FreeBSD.org>2001-05-22 02:30:44 +0000
committergrog <grog@FreeBSD.org>2001-05-22 02:30:44 +0000
commit0e53f607e9ec4a2cfddabc6ebb5c3cda7338ae62 (patch)
treeaa2586526f99774fc43bd5846468fdee6f9e1095 /sys
parentd37209863e1f4aed1d08706ac94e15a4ba883e92 (diff)
downloadFreeBSD-src-0e53f607e9ec4a2cfddabc6ebb5c3cda7338ae62.zip
FreeBSD-src-0e53f607e9ec4a2cfddabc6ebb5c3cda7338ae62.tar.gz
Remove unnecessary declarations of userland functions.
Desired by: bde This commit is the first of a general cleanup of the header files.. It won't be enough to make bde happy. Move debug definitions from vinumhdr.h.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/vinum/vinumext.h38
1 files changed, 25 insertions, 13 deletions
diff --git a/sys/dev/vinum/vinumext.h b/sys/dev/vinum/vinumext.h
index 0ba7719..c33a31a 100644
--- a/sys/dev/vinum/vinumext.h
+++ b/sys/dev/vinum/vinumext.h
@@ -33,13 +33,18 @@
* otherwise) arising in any way out of the use of this software, even if
* advised of the possibility of such damage.
*
- * $Id: vinumext.h,v 1.25 2000/05/10 06:08:43 grog Exp grog $
+ * $Id: vinumext.h,v 1.26 2000/05/16 07:38:08 grog Exp grog $
* $FreeBSD$
*/
/* vinumext.h: external definitions */
+/* *sigh* We still need this at the moment. */
+#ifdef _KERNEL
extern struct _vinum_conf vinum_conf; /* configuration information */
+#else
+extern struct __vinum_conf vinum_conf; /* configuration information */
+#endif
#ifdef VINUMDEBUG
extern int debug; /* debug flags */
@@ -203,22 +208,10 @@ enum sdstates sdstatemap(struct plex *plex);
enum volplexstate vpstate(struct plex *plex);
#endif
-enum keyword get_keyword(char *, struct keywordset *);
-void listconfig(void);
-char *drive_state(enum drivestate);
-char *volume_state(enum volumestate);
-char *plex_state(enum plexstate);
-char *plex_org(enum plexorg);
-char *sd_state(enum sdstate);
-enum drivestate DriveState(char *text);
-enum sdstate SdState(char *text);
-enum plexstate PlexState(char *text);
-enum volumestate VolState(char *text);
struct drive *validdrive(int driveno, struct _ioctl_reply *);
struct sd *validsd(int sdno, struct _ioctl_reply *);
struct plex *validplex(int plexno, struct _ioctl_reply *);
struct volume *validvol(int volno, struct _ioctl_reply *);
-int tokenize(char *, char *[]);
void resetstats(struct vinum_ioctl_msg *msg);
/* Locking */
@@ -244,6 +237,25 @@ int vinum_setdaemonopts(int);
extern struct daemonq *daemonq; /* daemon's work queue */
extern struct daemonq *dqend; /* and the end of the queue */
+#undef Free /* defined in some funny net stuff */
+#ifdef _KERNEL
+#ifdef VINUMDEBUG
+#define Malloc(x) MMalloc ((x), __FILE__, __LINE__) /* show where we came from */
+#define Free(x) FFree ((x), __FILE__, __LINE__) /* show where we came from */
+caddr_t MMalloc(int size, char *, int);
+void FFree(void *mem, char *, int);
+#define LOCKDRIVE(d) lockdrive (d, __FILE__, __LINE__)
+#else
+#define Malloc(x) malloc((x), M_DEVBUF, \
+ curproc->p_intr_nesting_level == 0? M_WAITOK: M_NOWAIT)
+#define Free(x) free((x), M_DEVBUF)
+#define LOCKDRIVE(d) lockdrive (d)
+#endif
+#else
+#define Malloc(x) malloc ((x)) /* just the size */
+#define Free(x) free ((x)) /* just the address */
+#endif
+
/* Local Variables: */
/* fill-column: 50 */
/* End: */
OpenPOWER on IntegriCloud