BSD 4_4_Lite1 release
[unix-history] / usr / src / sys / sys / conf.h
index a14f166..58cb6fa 100644 (file)
@@ -1,6 +1,11 @@
 /*-
  * Copyright (c) 1990, 1993
  *     The Regents of the University of California.  All rights reserved.
 /*-
  * Copyright (c) 1990, 1993
  *     The Regents of the University of California.  All rights reserved.
+ * (c) UNIX System Laboratories, Inc.
+ * All or some portions of this file are derived from material licensed
+ * to the University of California by American Telephone and Telegraph
+ * Co. or Unix System Laboratories, Inc. and are reproduced herein with
+ * the permission of UNIX System Laboratories, Inc.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -30,7 +35,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *     @(#)conf.h      8.1 (Berkeley) 6/4/93
+ *     @(#)conf.h      8.3 (Berkeley) 1/21/94
  */
 
 /*
  */
 
 /*
@@ -105,10 +110,13 @@ extern struct linesw linesw[];
 
 struct swdevt {
        dev_t   sw_dev;
 
 struct swdevt {
        dev_t   sw_dev;
-       int     sw_freed;
+       int     sw_flags;
        int     sw_nblks;
        struct  vnode *sw_vp;
 };
        int     sw_nblks;
        struct  vnode *sw_vp;
 };
+#define        SW_FREED        0x01
+#define        SW_SEQUENTIAL   0x02
+#define sw_freed       sw_flags        /* XXX compat */
 
 #ifdef KERNEL
 extern struct swdevt swdevt[];
 
 #ifdef KERNEL
 extern struct swdevt swdevt[];